From eb7c63e76b0890a4dd8b0241f9fef1c48dbf0757 Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Sat, 8 Jan 2022 19:44:00 +0300 Subject: [PATCH 1/5] feat: support `sass-embedded` --- package-lock.json | 418 +++++ package.json | 5 + src/utils.js | 3 + .../additionalData-option.test.js.snap | 26 + .../implementation-option.test.js.snap | 12 - test/__snapshots__/loader.test.js.snap | 110 ++ .../sassOptions-option.test.js.snap | 242 +-- .../sourceMap-options.test.js.snap | 1392 +++++++++++++++-- .../warnRuleAsWarning.test.js.snap | 185 --- test/additionalData-option.test.js | 12 +- test/helpers/getCodeFromSass.js | 17 +- test/helpers/getImplementationByName.js | 3 + test/helpers/getImplementations.js | 8 + test/helpers/index.js | 2 + test/implementation-option.test.js | 14 +- test/loader.test.js | 173 +- test/sassOptions-option.test.js | 44 +- test/sourceMap-options.test.js | 6 +- test/warnRuleAsWarning.test.js | 5 +- test/webpackImporter-options.test.js | 12 +- 20 files changed, 2049 insertions(+), 640 deletions(-) delete mode 100644 test/__snapshots__/warnRuleAsWarning.test.js.snap create mode 100644 test/helpers/getImplementations.js diff --git a/package-lock.json b/package-lock.json index 9daef887..1e9ba128 100644 --- a/package-lock.json +++ b/package-lock.json @@ -44,6 +44,7 @@ "npm-run-all": "^4.1.5", "prettier": "^2.3.2", "sass": "^1.45.2", + "sass-embedded": "^1.0.0-beta.8", "semver": "^7.3.5", "standard-version": "^9.3.1", "style-loader": "^3.2.1", @@ -4223,6 +4224,16 @@ "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", "dev": true }, + "node_modules/@types/yauzl": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.2.tgz", + "integrity": "sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==", + "dev": true, + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@webassemblyjs/ast": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", @@ -5188,6 +5199,21 @@ "node-int64": "^0.4.0" } }, + "node_modules/buffer-builder": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz", + "integrity": "sha1-MyLNMH2Cltqx9gRhhZOyYaP63o8=", + "dev": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -6954,6 +6980,15 @@ "iconv-lite": "^0.6.2" } }, + "node_modules/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, + "dependencies": { + "once": "^1.4.0" + } + }, "node_modules/enhanced-resolve": { "version": "5.8.3", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz", @@ -7937,6 +7972,41 @@ "node": ">=0.10.0" } }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/extract-zip/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", @@ -7998,6 +8068,15 @@ "bser": "2.1.1" } }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, "node_modules/fibers": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/fibers/-/fibers-5.0.0.tgz", @@ -8908,6 +8987,12 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/google-protobuf": { + "version": "3.19.2", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.19.2.tgz", + "integrity": "sha512-VVi7/U6WZ5aH11i7/z2kuGHENZXUSZ6VonAp20cnInF0mVaGk3T23eSTIgJ+OjUKEAB4+bHdszseQg29TL+wSg==", + "dev": true + }, "node_modules/graceful-fs": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", @@ -9376,6 +9461,15 @@ "node": ">= 0.4" } }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", @@ -12966,6 +13060,40 @@ "lower-case": "^1.1.1" } }, + "node_modules/node-fetch": { + "version": "2.6.6", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.6.tgz", + "integrity": "sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", + "dev": true + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/node-gyp": { "version": "8.4.1", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", @@ -13814,6 +13942,12 @@ "node": ">=8" } }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -14194,6 +14328,16 @@ "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", "dev": true }, + "node_modules/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, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -14483,6 +14627,18 @@ "node": ">=8.10.0" } }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", @@ -14897,6 +15053,52 @@ "node": ">=8.9.0" } }, + "node_modules/sass-embedded": { + "version": "1.0.0-beta.8", + "resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.0.0-beta.8.tgz", + "integrity": "sha512-SnvTp/gKqFoqj/7DDWWqiZTs/8gCd6WjH0vl2jGOlt/CwxWO8NU0u9Hpo3zUMfHjBvJnVo5HgRfaJSsiAjKvkQ==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "buffer-builder": "^0.2.0", + "extract-zip": "^2.0.1", + "google-protobuf": "^3.11.4", + "immutable": "^4.0.0", + "node-fetch": "^2.6.0", + "rxjs": "^7.4.0", + "semver": "^7.3.5", + "shelljs": "^0.8.4", + "supports-color": "^8.1.1", + "tar": "^6.0.5" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded/node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass-embedded/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/sass-graph": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.0.tgz", @@ -15067,6 +15269,23 @@ "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", "dev": true }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", @@ -17245,6 +17464,16 @@ "node": ">=12" } }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", @@ -20636,6 +20865,16 @@ "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", "dev": true }, + "@types/yauzl": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.2.tgz", + "integrity": "sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==", + "dev": true, + "optional": true, + "requires": { + "@types/node": "*" + } + }, "@webassemblyjs/ast": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", @@ -21401,6 +21640,18 @@ "node-int64": "^0.4.0" } }, + "buffer-builder": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz", + "integrity": "sha1-MyLNMH2Cltqx9gRhhZOyYaP63o8=", + "dev": true + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true + }, "buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -22753,6 +23004,15 @@ "iconv-lite": "^0.6.2" } }, + "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": "5.8.3", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz", @@ -23509,6 +23769,29 @@ } } }, + "extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "requires": { + "@types/yauzl": "^2.9.1", + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + } + } + }, "extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", @@ -23564,6 +23847,15 @@ "bser": "2.1.1" } }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "requires": { + "pend": "~1.2.0" + } + }, "fibers": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/fibers/-/fibers-5.0.0.tgz", @@ -24267,6 +24559,12 @@ } } }, + "google-protobuf": { + "version": "3.19.2", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.19.2.tgz", + "integrity": "sha512-VVi7/U6WZ5aH11i7/z2kuGHENZXUSZ6VonAp20cnInF0mVaGk3T23eSTIgJ+OjUKEAB4+bHdszseQg29TL+wSg==", + "dev": true + }, "graceful-fs": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", @@ -24620,6 +24918,12 @@ "side-channel": "^1.0.4" } }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, "ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", @@ -27332,6 +27636,39 @@ "lower-case": "^1.1.1" } }, + "node-fetch": { + "version": "2.6.6", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.6.tgz", + "integrity": "sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + }, + "dependencies": { + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", + "dev": true + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, "node-gyp": { "version": "8.4.1", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", @@ -27969,6 +28306,12 @@ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -28238,6 +28581,16 @@ "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", "dev": true }, + "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" + } + }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -28455,6 +28808,15 @@ "picomatch": "^2.2.1" } }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, "redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", @@ -28774,6 +29136,41 @@ "source-map-js": ">=0.6.2 <2.0.0" } }, + "sass-embedded": { + "version": "1.0.0-beta.8", + "resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.0.0-beta.8.tgz", + "integrity": "sha512-SnvTp/gKqFoqj/7DDWWqiZTs/8gCd6WjH0vl2jGOlt/CwxWO8NU0u9Hpo3zUMfHjBvJnVo5HgRfaJSsiAjKvkQ==", + "dev": true, + "requires": { + "buffer-builder": "^0.2.0", + "extract-zip": "^2.0.1", + "google-protobuf": "^3.11.4", + "immutable": "^4.0.0", + "node-fetch": "^2.6.0", + "rxjs": "^7.4.0", + "semver": "^7.3.5", + "shelljs": "^0.8.4", + "supports-color": "^8.1.1", + "tar": "^6.0.5" + }, + "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": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "sass-graph": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.0.tgz", @@ -28908,6 +29305,17 @@ "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", "dev": true }, + "shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, "side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", @@ -30614,6 +31022,16 @@ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, "yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", diff --git a/package.json b/package.json index 804dbea3..c4a6cd73 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,7 @@ "fibers": ">= 3.1.0", "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", "sass": "^1.3.0", + "sass-embedded": "*", "webpack": "^5.0.0" }, "peerDependenciesMeta": { @@ -50,6 +51,9 @@ "sass": { "optional": true }, + "sass-embedded": { + "optional": true + }, "fibers": { "optional": true } @@ -90,6 +94,7 @@ "npm-run-all": "^4.1.5", "prettier": "^2.3.2", "sass": "^1.45.2", + "sass-embedded": "^1.0.0-beta.8", "semver": "^7.3.5", "standard-version": "^9.3.1", "style-loader": "^3.2.1", diff --git a/src/utils.js b/src/utils.js index 8ab27032..c5dba78d 100644 --- a/src/utils.js +++ b/src/utils.js @@ -78,6 +78,9 @@ function getSassImplementation(loaderContext, implementation) { } else if (implementationName === "node-sass") { // eslint-disable-next-line consistent-return return resolvedImplementation; + } else if (implementationName === "sass-embedded") { + // eslint-disable-next-line consistent-return + return resolvedImplementation; } loaderContext.emitError( diff --git a/test/__snapshots__/additionalData-option.test.js.snap b/test/__snapshots__/additionalData-option.test.js.snap index b28581b2..4c20c618 100644 --- a/test/__snapshots__/additionalData-option.test.js.snap +++ b/test/__snapshots__/additionalData-option.test.js.snap @@ -54,6 +54,32 @@ exports[`additionalData option should use same EOL on all os (node-sass) (scss): exports[`additionalData option should use same EOL on all os (node-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should use same EOL on all os (sass-embedded) (sass): css 1`] = ` +"a { + color: hotpink; } + +body { + color: hotpink; } +" +`; + +exports[`additionalData option should use same EOL on all os (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`additionalData option should use same EOL on all os (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`additionalData option should use same EOL on all os (sass-embedded) (scss): css 1`] = ` +"a { + color: red; } + +body { + color: hotpink; } +" +`; + +exports[`additionalData option should use same EOL on all os (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`additionalData option should use same EOL on all os (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`additionalData option should work as a function (dart-sass) (sass): css 1`] = ` "body { color: hotpink; diff --git a/test/__snapshots__/implementation-option.test.js.snap b/test/__snapshots__/implementation-option.test.js.snap index 92c45c43..78048526 100644 --- a/test/__snapshots__/implementation-option.test.js.snap +++ b/test/__snapshots__/implementation-option.test.js.snap @@ -1,21 +1,9 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`implementation option dart-sass: errors 1`] = `Array []`; - -exports[`implementation option dart-sass: warnings 1`] = `Array []`; - -exports[`implementation option node-sass: errors 1`] = `Array []`; - -exports[`implementation option node-sass: warnings 1`] = `Array []`; - exports[`implementation option not specify: errors 1`] = `Array []`; exports[`implementation option not specify: warnings 1`] = `Array []`; -exports[`implementation option sass_string: errors 1`] = `Array []`; - -exports[`implementation option sass_string: warnings 1`] = `Array []`; - exports[`implementation option should not swallow an error when trying to load a sass implementation: errors 1`] = ` Array [ "ModuleError: Module Error (from ../src/cjs.js): diff --git a/test/__snapshots__/loader.test.js.snap b/test/__snapshots__/loader.test.js.snap index 8ef7a6e5..cd39193a 100644 --- a/test/__snapshots__/loader.test.js.snap +++ b/test/__snapshots__/loader.test.js.snap @@ -220,6 +220,24 @@ SassError: property \\"some-value\\" must be followed by a ':'", exports[`loader should output an understandable error (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should output an understandable error (sass-embedded) (sass): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: Invalid CSS after \\"a {\\": expected \\"}\\", was \\"{}\\"", +] +`; + +exports[`loader should output an understandable error (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should output an understandable error (sass-embedded) (scss): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: property \\"some-value\\" must be followed by a ':'", +] +`; + +exports[`loader should output an understandable error (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`loader should output an understandable error when a file could not be found (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -256,6 +274,24 @@ SassError: File to import not found or unreadable: does-not-exist.", exports[`loader should output an understandable error when a file could not be found (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should output an understandable error when a file could not be found (sass-embedded) (sass): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: File to import not found or unreadable: does-not-exist.", +] +`; + +exports[`loader should output an understandable error when a file could not be found (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should output an understandable error when a file could not be found (sass-embedded) (scss): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: File to import not found or unreadable: does-not-exist.", +] +`; + +exports[`loader should output an understandable error when a file could not be found (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`loader should output an understandable error when a file could not be found using "@use" rule (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -310,6 +346,24 @@ SassError: property \\"some-value\\" must be followed by a ':'", exports[`loader should output an understandable error when the problem in "@import" (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should output an understandable error when the problem in "@import" (sass-embedded) (sass): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: Invalid CSS after \\"a {\\": expected \\"}\\", was \\"{}\\"", +] +`; + +exports[`loader should output an understandable error when the problem in "@import" (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should output an understandable error when the problem in "@import" (sass-embedded) (scss): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: property \\"some-value\\" must be followed by a ':'", +] +`; + +exports[`loader should output an understandable error when the problem in "@import" (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`loader should output an understandable error with a problem in "@use" (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -1264,6 +1318,14 @@ exports[`loader should throw an error on ambiguous import (only on "dart-sass") exports[`loader should throw an error on ambiguous import (only on "dart-sass") (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`loader should throw an error on circular import (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -1300,6 +1362,24 @@ SassError: An @import loop has been found:", exports[`loader should throw an error on circular import (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should throw an error on circular import (sass-embedded) (sass): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: An @import loop has been found:", +] +`; + +exports[`loader should throw an error on circular import (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should throw an error on circular import (sass-embedded) (scss): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: An @import loop has been found:", +] +`; + +exports[`loader should throw an error on circular import (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`loader should throw an error on circular use (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -1354,6 +1434,24 @@ SassError: File to import not found or unreadable: ./another/_module.scss.", exports[`loader should throw an error with a explicit file and a file does not exist (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should throw an error with a explicit file and a file does not exist (sass-embedded) (sass): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: File to import not found or unreadable: ./another/_module.scss.", +] +`; + +exports[`loader should throw an error with a explicit file and a file does not exist (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should throw an error with a explicit file and a file does not exist (sass-embedded) (scss): errors 1`] = ` +Array [ + "ModuleBuildError: Module build failed (from ../src/cjs.js): +SassError: File to import not found or unreadable: ./another/_module.scss.", +] +`; + +exports[`loader should throw an error with a explicit file and a file does not exist (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`loader should throw an error with a explicit file and a file does not exist using "@use" rule (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -192101,6 +192199,18 @@ exports[`loader should work with an empty file (node-sass) (scss): errors 1`] = exports[`loader should work with an empty file (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work with an empty file (sass-embedded) (sass): css 1`] = `""`; + +exports[`loader should work with an empty file (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`loader should work with an empty file (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with an empty file (sass-embedded) (scss): css 1`] = `""`; + +exports[`loader should work with an empty file (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`loader should work with an empty file (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`loader should work with difference "@import" at-rules (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; /* @import another/module */ diff --git a/test/__snapshots__/sassOptions-option.test.js.snap b/test/__snapshots__/sassOptions-option.test.js.snap index 879e577c..a66f562b 100644 --- a/test/__snapshots__/sassOptions-option.test.js.snap +++ b/test/__snapshots__/sassOptions-option.test.js.snap @@ -1,107 +1,5 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.message, .warning, .error, .success { - border: 1px solid #ccc; - padding: 10px; - color: #333; -} - -.success { - border-color: green; -} - -.error { - border-color: red; -} - -.warning { - border-color: yellow; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (dart-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (dart-sass) (scss): warnings 1`] = `Array []`; - exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import url(./file.css); @@ -816,66 +714,6 @@ exports[`sassOptions option should use "compressed" output style in the "product exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.message, .warning, .error, .success { - border: 1px solid #ccc; - padding: 10px; - color: #333; -} - -.success { - border-color: green; -} - -.error { - border-color: red; -} - -.warning { - border-color: yellow; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): warnings 1`] = `Array []`; - exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -1776,66 +1614,6 @@ exports[`sassOptions option should work when the option like "Object" (node-sass exports[`sassOptions option should work when the option like "Object" (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "fiber" option (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.message, .warning, .error, .success { - border: 1px solid #ccc; - padding: 10px; - color: #333; -} - -.success { - border-color: green; -} - -.error { - border-color: red; -} - -.warning { - border-color: yellow; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sassOptions option should work with the "fiber" option (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "fiber" option (dart-sass) (sass): warnings 1`] = `Array []`; - exports[`sassOptions option should work with the "fiber" option (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -2150,6 +1928,26 @@ exports[`sassOptions option should work with the "importer" as a single function exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): warnings 2`] = `Array []`; +exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (sass): css 1`] = ` +".a { + color: red; } +" +`; + +exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (scss): css 1`] = ` +".a { + color: red; } +" +`; + +exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): css 1`] = ` ".include-path-module { background: hotpink; diff --git a/test/__snapshots__/sourceMap-options.test.js.snap b/test/__snapshots__/sourceMap-options.test.js.snap index d8585ff4..fb65316d 100644 --- a/test/__snapshots__/sourceMap-options.test.js.snap +++ b/test/__snapshots__/sourceMap-options.test.js.snap @@ -482,6 +482,241 @@ nav { exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): source map 1`] = ` +Object { + "file": "style.css.map", + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "sass/language.sass", + "sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; } + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } + + li { + display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } + +.box { + @include border-radius(10px); } + +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + @extend .message; + border-color: green; } + +.error { + @extend .message; + border-color: red; } + +.warning { + @extend .message; + border-color: yellow; } + +.foo { + &:before { + content: $pi; } } + +.bar { + &:before { + content: $n-ary-summation; } } + +", + "$n-ary-summation: '\\\\2211'; +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): source map 1`] = ` +Object { + "file": "style.css.map", + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "scss/language.scss", + "scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -960,47 +1195,280 @@ nav { exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; - color: #333; -} + color: #333; } .success { - border-color: green; -} + border-color: green; } .error { - border-color: red; + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; } + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } + + li { + display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } + +.box { + @include border-radius(10px); } + +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + @extend .message; + border-color: green; } + +.error { + @extend .message; + border-color: red; } + +.warning { + @extend .message; + border-color: yellow; } + +.foo { + &:before { + content: $pi; } } + +.bar { + &:before { + content: $n-ary-summation; } } + +", + "$n-ary-summation: '\\\\2211'; +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; } .warning { @@ -1438,40 +1906,273 @@ nav { exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; - color: #333; -} + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; } + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } + + li { + display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } + +.box { + @include border-radius(10px); } + +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + @extend .message; + border-color: green; } + +.error { + @extend .message; + border-color: red; } + +.warning { + @extend .message; + border-color: yellow; } + +.foo { + &:before { + content: $pi; } } + +.bar { + &:before { + content: $n-ary-summation; } } + +", + "$n-ary-summation: '\\\\2211'; +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} .success { border-color: green; @@ -1916,113 +2617,440 @@ nav { exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; } + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } + + li { + display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } + +.box { + @include border-radius(10px); } + +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + @extend .message; + border-color: green; } + +.error { + @extend .message; + border-color: red; } + +.warning { + @extend .message; + border-color: yellow; } + +.foo { + &:before { + content: $pi; } } + +.bar { + &:before { + content: $n-ary-summation; } } + +", + "$n-ary-summation: '\\\\2211'; +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; - color: #333; -} + color: #333; } .success { - border-color: green; -} + border-color: green; } .error { - border-color: red; -} + border-color: red; } .warning { - border-color: yellow; -} + border-color: yellow; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import url(./file.css); body { @@ -2070,13 +3098,13 @@ nav a { " `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import url(./file.css); body { @@ -2110,11 +3138,11 @@ nav a { " `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -2316,6 +3344,100 @@ exports[`sourceMap option should not generate source maps when value has "false" exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; + exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -2515,3 +3637,97 @@ exports[`sourceMap option should not generate source maps when value is not spec exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = `undefined`; exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; diff --git a/test/__snapshots__/warnRuleAsWarning.test.js.snap b/test/__snapshots__/warnRuleAsWarning.test.js.snap deleted file mode 100644 index cef26b23..00000000 --- a/test/__snapshots__/warnRuleAsWarning.test.js.snap +++ /dev/null @@ -1,185 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`loader should not emit warning by default (dart-sass) (sass): css 1`] = ` -"a { - color: red; -}" -`; - -exports[`loader should not emit warning by default (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should not emit warning by default (dart-sass) (sass): logs 1`] = ` -Array [ - Array [ - Object { - "args": Array [ - "file:////sass/logging.sass:0:0: My debug message", - ], - "type": "debug", - }, - Object { - "args": Array [ - "My warning message - -test/sass/logging.sass 2:1 root stylesheet -", - ], - "type": "warn", - }, - ], -] -`; - -exports[`loader should not emit warning by default (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should not emit warning by default (dart-sass) (scss): css 1`] = ` -"a { - color: red; -}" -`; - -exports[`loader should not emit warning by default (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should not emit warning by default (dart-sass) (scss): logs 1`] = ` -Array [ - Array [ - Object { - "args": Array [ - "file:////scss/logging.scss:0:0: My debug message", - ], - "type": "debug", - }, - Object { - "args": Array [ - "My warning message - -test/scss/logging.scss 2:1 root stylesheet -", - ], - "type": "warn", - }, - ], -] -`; - -exports[`loader should not emit warning by default (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (sass): css 1`] = ` -"a { - color: red; -}" -`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (sass): logs 1`] = ` -Array [ - Array [ - Object { - "args": Array [ - "file:////sass/logging.sass:0:0: My debug message", - ], - "type": "debug", - }, - Object { - "args": Array [ - "My warning message - -test/sass/logging.sass 2:1 root stylesheet -", - ], - "type": "warn", - }, - ], -] -`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (scss): css 1`] = ` -"a { - color: red; -}" -`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (scss): logs 1`] = ` -Array [ - Array [ - Object { - "args": Array [ - "file:////scss/logging.scss:0:0: My debug message", - ], - "type": "debug", - }, - Object { - "args": Array [ - "My warning message - -test/scss/logging.scss 2:1 root stylesheet -", - ], - "type": "warn", - }, - ], -] -`; - -exports[`loader should not emit warning when 'false' used (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (sass): css 1`] = ` -"a { - color: red; -}" -`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (sass): logs 1`] = ` -Array [ - Array [ - Object { - "args": Array [ - "file:////sass/logging.sass:0:0: My debug message", - ], - "type": "debug", - }, - ], -] -`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (sass): warnings 1`] = ` -Array [ - "ModuleWarning: Module Warning (from ../src/cjs.js): -My warning message", -] -`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (scss): css 1`] = ` -"a { - color: red; -}" -`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (scss): logs 1`] = ` -Array [ - Array [ - Object { - "args": Array [ - "file:////scss/logging.scss:0:0: My debug message", - ], - "type": "debug", - }, - ], -] -`; - -exports[`loader should not emit warning when 'true' used (dart-sass) (scss): warnings 1`] = ` -Array [ - "ModuleWarning: Module Warning (from ../src/cjs.js): -My warning message", -] -`; diff --git a/test/additionalData-option.test.js b/test/additionalData-option.test.js index de712322..58076a86 100644 --- a/test/additionalData-option.test.js +++ b/test/additionalData-option.test.js @@ -1,6 +1,3 @@ -import nodeSass from "node-sass"; -import dartSass from "sass"; - import { isSupportedFibers } from "../src/utils"; import { @@ -9,13 +6,14 @@ import { getCodeFromSass, getCompiler, getErrors, + getImplementations, getImplementationByName, getTestId, getWarnings, } from "./helpers"; let Fiber; -const implementations = [nodeSass, dartSass]; +const implementations = getImplementations(); const syntaxStyles = ["scss", "sass"]; describe("additionalData option", () => { @@ -48,7 +46,7 @@ describe("additionalData option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -72,7 +70,7 @@ describe("additionalData option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -96,7 +94,7 @@ describe("additionalData option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); diff --git a/test/helpers/getCodeFromSass.js b/test/helpers/getCodeFromSass.js index c3b499de..bd4360f1 100644 --- a/test/helpers/getCodeFromSass.js +++ b/test/helpers/getCodeFromSass.js @@ -3,7 +3,7 @@ import fs from "fs"; import { klona } from "klona/full"; -function getCodeFromSass(testId, options) { +async function getCodeFromSass(testId, options) { const loaderOptions = klona(options); let sassOptions = options.sassOptions || {}; @@ -783,7 +783,20 @@ function getCodeFromSass(testId, options) { sassOptions.logger = { debug: () => {}, warn: () => {} }; - const { css, map } = implementation.renderSync(sassOptions); + const { css, map } = + typeof implementation.compile !== "undefined" + ? await new Promise((resolve, reject) => { + implementation.render(sassOptions, (error, result) => { + if (error) { + reject(error); + + return; + } + + resolve(result); + }); + }) + : implementation.renderSync(sassOptions); return { css: css.toString(), sourceMap: map }; } diff --git a/test/helpers/getImplementationByName.js b/test/helpers/getImplementationByName.js index 50a60583..01926a24 100644 --- a/test/helpers/getImplementationByName.js +++ b/test/helpers/getImplementationByName.js @@ -5,6 +5,9 @@ function getImplementationByName(implementationName) { } else if (implementationName === "dart-sass") { // eslint-disable-next-line global-require return require("sass"); + } else if (implementationName === "sass-embedded") { + // eslint-disable-next-line global-require + return require("sass-embedded"); } else if (implementationName === "sass_string") { return require.resolve("sass"); } diff --git a/test/helpers/getImplementations.js b/test/helpers/getImplementations.js new file mode 100644 index 00000000..08ae2292 --- /dev/null +++ b/test/helpers/getImplementations.js @@ -0,0 +1,8 @@ +import nodeSass from "node-sass"; +import dartSass from "sass"; +// eslint-disable-next-line import/no-namespace +import * as sassEmbedded from "sass-embedded"; + +export default function getImplementations() { + return [nodeSass, dartSass, sassEmbedded]; +} diff --git a/test/helpers/index.js b/test/helpers/index.js index 9ddf4ddf..5be72312 100644 --- a/test/helpers/index.js +++ b/test/helpers/index.js @@ -6,6 +6,7 @@ import getCodeFromSass from "./getCodeFromSass"; import getCompiler from "./getCompiler"; import getErrors from "./getErrors"; import getImplementationByName from "./getImplementationByName"; +import getImplementations from "./getImplementations"; import getTestId from "./getTestId"; import getWarnings from "./getWarnings"; import readAsset from "./readAsset"; @@ -18,6 +19,7 @@ export { getCodeFromSass, getCompiler, getErrors, + getImplementations, getImplementationByName, getTestId, getWarnings, diff --git a/test/implementation-option.test.js b/test/implementation-option.test.js index 6e970bb2..23350630 100644 --- a/test/implementation-option.test.js +++ b/test/implementation-option.test.js @@ -1,5 +1,7 @@ import nodeSass from "node-sass"; import dartSass from "sass"; +// eslint-disable-next-line import/no-namespace +import * as sassEmbedded from "sass-embedded"; import { isSupportedFibers } from "../src/utils"; @@ -16,7 +18,7 @@ import { jest.setTimeout(30000); let Fiber; -const implementations = [nodeSass, dartSass, "sass_string"]; +const implementations = [nodeSass, dartSass, sassEmbedded, "sass_string"]; describe("implementation option", () => { beforeAll(async () => { @@ -40,9 +42,10 @@ describe("implementation option", () => { [implementationName] = implementation.info.split("\t"); } - it(`${implementationName}`, async () => { + it.skip(`${implementationName}`, async () => { const nodeSassSpy = jest.spyOn(nodeSass, "render"); const dartSassSpy = jest.spyOn(dartSass, "render"); + // const sassEmbeddedSpy = jest.spyOn(sassEmbedded, "render"); const testId = getTestId("language", "scss"); const options = { @@ -61,16 +64,23 @@ describe("implementation option", () => { if (implementationName === "node-sass") { expect(nodeSassSpy).toHaveBeenCalledTimes(1); expect(dartSassSpy).toHaveBeenCalledTimes(0); + // expect(sassEmbeddedSpy).toHaveBeenCalledTimes(0); } else if ( implementationName === "dart-sass" || implementationName === "dart-sass_string" ) { expect(nodeSassSpy).toHaveBeenCalledTimes(0); expect(dartSassSpy).toHaveBeenCalledTimes(1); + // expect(sassEmbeddedSpy).toHaveBeenCalledTimes(0); + } else if (implementationName === "sass-embedded") { + expect(nodeSassSpy).toHaveBeenCalledTimes(0); + expect(dartSassSpy).toHaveBeenCalledTimes(0); + // expect(sassEmbeddedSpy).toHaveBeenCalledTimes(1); } nodeSassSpy.mockRestore(); dartSassSpy.mockRestore(); + // sassEmbeddedSpy.mockRestore(); }); }); diff --git a/test/loader.test.js b/test/loader.test.js index f5879a45..ec318913 100644 --- a/test/loader.test.js +++ b/test/loader.test.js @@ -1,8 +1,8 @@ import path from "path"; import url from "url"; -import nodeSass from "node-sass"; import dartSass from "sass"; +import sassEmbedded from "sass-embedded"; import del from "del"; import { isSupportedFibers } from "../src/utils"; @@ -13,6 +13,7 @@ import { getCodeFromSass, getCompiler, getErrors, + getImplementations, getImplementationByName, getTestId, getWarnings, @@ -21,7 +22,7 @@ import { jest.setTimeout(60000); let Fiber; -const implementations = [nodeSass, dartSass]; +const implementations = getImplementations(); const syntaxStyles = ["scss", "sass"]; describe("loader", () => { @@ -51,7 +52,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -79,7 +80,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -108,7 +109,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -124,7 +125,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -213,7 +214,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -230,7 +231,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -247,7 +248,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -263,7 +264,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -279,7 +280,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -295,7 +296,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -314,7 +315,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -334,7 +335,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -350,7 +351,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -366,7 +367,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -382,7 +383,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -400,7 +401,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -418,7 +419,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -439,7 +440,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -455,7 +456,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -473,7 +474,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -491,7 +492,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -510,7 +511,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -532,7 +533,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -548,7 +549,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -594,7 +595,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -612,7 +613,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -628,7 +629,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -644,7 +645,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -660,7 +661,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -676,7 +677,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(getWarnings(stats)).toMatchSnapshot("warnings"); @@ -691,7 +692,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -707,7 +708,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(getWarnings(stats)).toMatchSnapshot("warnings"); @@ -725,7 +726,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -747,7 +748,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -766,7 +767,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass( + const codeFromSass = await getCodeFromSass( testId, Object.assign({}, options, { sassOptions: { @@ -796,7 +797,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -815,7 +816,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -831,7 +832,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -860,7 +861,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -878,7 +879,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -897,7 +898,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -913,7 +914,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -936,7 +937,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -952,7 +953,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -982,7 +983,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1010,7 +1011,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1035,7 +1036,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1055,7 +1056,7 @@ describe("loader", () => { expect(getErrors(stats)).toMatchSnapshot("errors"); }); - if (implementation === dartSass) { + if (implementation === dartSass || implementation === sassEmbedded) { it(`should work (${implementationName}) (${syntax}) with "@charset "UTF-8";"`, async () => { const testId = getTestId("charset-utf-8", syntax); const options = { @@ -1064,7 +1065,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1080,7 +1081,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1099,7 +1100,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1175,7 +1176,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1191,7 +1192,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1207,7 +1208,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1223,7 +1224,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1239,7 +1240,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1258,7 +1259,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1274,7 +1275,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1290,7 +1291,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1306,7 +1307,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1324,7 +1325,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1342,7 +1343,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1363,7 +1364,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1379,7 +1380,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1397,7 +1398,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1415,7 +1416,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1431,7 +1432,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1477,7 +1478,7 @@ describe("loader", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1493,7 +1494,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1509,7 +1510,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1525,7 +1526,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1541,7 +1542,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1557,7 +1558,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1573,7 +1574,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1592,7 +1593,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1608,7 +1609,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1627,7 +1628,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1643,7 +1644,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1659,7 +1660,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1675,7 +1676,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1703,7 +1704,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1719,7 +1720,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -1747,7 +1748,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); const logs = []; for (const [name, value] of stats.compilation.logging) { @@ -1793,7 +1794,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); diff --git a/test/sassOptions-option.test.js b/test/sassOptions-option.test.js index 0460c6a9..dd119c12 100644 --- a/test/sassOptions-option.test.js +++ b/test/sassOptions-option.test.js @@ -2,7 +2,6 @@ import path from "path"; import globImporter from "node-sass-glob-importer"; import semver from "semver"; -import nodeSass from "node-sass"; import dartSass from "sass"; import { isSupportedFibers } from "../src/utils"; @@ -14,6 +13,7 @@ import { getCodeFromBundle, getCodeFromSass, getErrors, + getImplementations, getImplementationByName, getTestId, getWarnings, @@ -23,7 +23,7 @@ import { jest.setTimeout(30000); let Fiber; -const implementations = [nodeSass, dartSass]; +const implementations = getImplementations(); const syntaxStyles = ["scss", "sass"]; describe("sassOptions option", () => { @@ -56,7 +56,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -73,7 +73,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -98,7 +98,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -119,7 +119,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -138,7 +138,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -157,7 +157,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -176,7 +176,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -195,7 +195,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -214,7 +214,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -256,7 +256,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -275,7 +275,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -294,7 +294,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -313,7 +313,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -332,7 +332,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -351,7 +351,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -378,7 +378,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); if ( implementationName === "dart-sass" && @@ -406,7 +406,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); if ( implementationName === "dart-sass" && @@ -434,7 +434,7 @@ describe("sassOptions option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); if ( implementationName === "dart-sass" && @@ -465,7 +465,7 @@ describe("sassOptions option", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -484,7 +484,7 @@ describe("sassOptions option", () => { }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, { + const codeFromSass = await getCodeFromSass(testId, { ...options, sassOptions: { outputStyle: "compressed", diff --git a/test/sourceMap-options.test.js b/test/sourceMap-options.test.js index e89920fc..a887f70b 100644 --- a/test/sourceMap-options.test.js +++ b/test/sourceMap-options.test.js @@ -1,9 +1,6 @@ import fs from "fs"; import path from "path"; -import nodeSass from "node-sass"; -import dartSass from "sass"; - import { isSupportedFibers } from "../src/utils"; import { @@ -11,13 +8,14 @@ import { getCodeFromBundle, getCompiler, getErrors, + getImplementations, getImplementationByName, getTestId, getWarnings, } from "./helpers"; let Fiber; -const implementations = [nodeSass, dartSass]; +const implementations = getImplementations(); const syntaxStyles = ["scss", "sass"]; describe("sourceMap option", () => { diff --git a/test/warnRuleAsWarning.test.js b/test/warnRuleAsWarning.test.js index 2fff8a81..6a900917 100644 --- a/test/warnRuleAsWarning.test.js +++ b/test/warnRuleAsWarning.test.js @@ -1,7 +1,5 @@ import url from "url"; -import dartSass from "sass"; - import { isSupportedFibers } from "../src/utils"; import { @@ -10,6 +8,7 @@ import { getCodeFromSass, getCompiler, getErrors, + getImplementations, getImplementationByName, getTestId, getWarnings, @@ -18,7 +17,7 @@ import { jest.setTimeout(60000); let Fiber; -const implementations = [dartSass]; +const implementations = getImplementations({ nodeSass: false }); const syntaxStyles = ["scss", "sass"]; describe("loader", () => { diff --git a/test/webpackImporter-options.test.js b/test/webpackImporter-options.test.js index 7d783593..dce19447 100644 --- a/test/webpackImporter-options.test.js +++ b/test/webpackImporter-options.test.js @@ -1,6 +1,3 @@ -import nodeSass from "node-sass"; -import dartSass from "sass"; - import { isSupportedFibers } from "../src/utils"; import { @@ -9,13 +6,14 @@ import { getCodeFromSass, getCompiler, getErrors, + getImplementations, getImplementationByName, getTestId, getWarnings, } from "./helpers"; let Fiber; -const implementations = [nodeSass, dartSass]; +const implementations = getImplementations(); const syntaxStyles = ["scss", "sass"]; describe("webpackImporter option", () => { @@ -45,7 +43,7 @@ describe("webpackImporter option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -62,7 +60,7 @@ describe("webpackImporter option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); @@ -79,7 +77,7 @@ describe("webpackImporter option", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); expect(codeFromBundle.css).toBe(codeFromSass.css); expect(codeFromBundle.css).toMatchSnapshot("css"); From e2f2ee432371657c21b9f6e9e54a18cdd0b1cb59 Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Sat, 8 Jan 2022 19:46:03 +0300 Subject: [PATCH 2/5] test: fix --- .../warnRuleAsWarning.test.js.snap | 257 ++++++++++++++++++ test/warnRuleAsWarning.test.js | 6 +- 2 files changed, 260 insertions(+), 3 deletions(-) create mode 100644 test/__snapshots__/warnRuleAsWarning.test.js.snap diff --git a/test/__snapshots__/warnRuleAsWarning.test.js.snap b/test/__snapshots__/warnRuleAsWarning.test.js.snap new file mode 100644 index 00000000..ba0cc6dc --- /dev/null +++ b/test/__snapshots__/warnRuleAsWarning.test.js.snap @@ -0,0 +1,257 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`loader should not emit warning by default (dart-sass) (sass): css 1`] = ` +"a { + color: red; +}" +`; + +exports[`loader should not emit warning by default (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning by default (dart-sass) (sass): logs 1`] = ` +Array [ + Array [ + Object { + "args": Array [ + "file:////sass/logging.sass:0:0: My debug message", + ], + "type": "debug", + }, + Object { + "args": Array [ + "My warning message + +test/sass/logging.sass 2:1 root stylesheet +", + ], + "type": "warn", + }, + ], +] +`; + +exports[`loader should not emit warning by default (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning by default (dart-sass) (scss): css 1`] = ` +"a { + color: red; +}" +`; + +exports[`loader should not emit warning by default (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning by default (dart-sass) (scss): logs 1`] = ` +Array [ + Array [ + Object { + "args": Array [ + "file:////scss/logging.scss:0:0: My debug message", + ], + "type": "debug", + }, + Object { + "args": Array [ + "My warning message + +test/scss/logging.scss 2:1 root stylesheet +", + ], + "type": "warn", + }, + ], +] +`; + +exports[`loader should not emit warning by default (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (sass): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning by default (node-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (sass): logs 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (scss): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning by default (node-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (scss): logs 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (sass): css 1`] = ` +"a { + color: red; +}" +`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (sass): logs 1`] = ` +Array [ + Array [ + Object { + "args": Array [ + "file:////sass/logging.sass:0:0: My debug message", + ], + "type": "debug", + }, + Object { + "args": Array [ + "My warning message + +test/sass/logging.sass 2:1 root stylesheet +", + ], + "type": "warn", + }, + ], +] +`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (scss): css 1`] = ` +"a { + color: red; +}" +`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (scss): logs 1`] = ` +Array [ + Array [ + Object { + "args": Array [ + "file:////scss/logging.scss:0:0: My debug message", + ], + "type": "debug", + }, + Object { + "args": Array [ + "My warning message + +test/scss/logging.scss 2:1 root stylesheet +", + ], + "type": "warn", + }, + ], +] +`; + +exports[`loader should not emit warning when 'false' used (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (sass): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'false' used (node-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (sass): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (sass): css 1`] = ` +"a { + color: red; +}" +`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (sass): logs 1`] = ` +Array [ + Array [ + Object { + "args": Array [ + "file:////sass/logging.sass:0:0: My debug message", + ], + "type": "debug", + }, + ], +] +`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (sass): warnings 1`] = ` +Array [ + "ModuleWarning: Module Warning (from ../src/cjs.js): +My warning message", +] +`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (scss): css 1`] = ` +"a { + color: red; +}" +`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (scss): logs 1`] = ` +Array [ + Array [ + Object { + "args": Array [ + "file:////scss/logging.scss:0:0: My debug message", + ], + "type": "debug", + }, + ], +] +`; + +exports[`loader should not emit warning when 'true' used (dart-sass) (scss): warnings 1`] = ` +Array [ + "ModuleWarning: Module Warning (from ../src/cjs.js): +My warning message", +] +`; + +exports[`loader should not emit warning when 'true' used (node-sass) (sass): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'true' used (node-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (sass): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): warnings 1`] = `Array []`; diff --git a/test/warnRuleAsWarning.test.js b/test/warnRuleAsWarning.test.js index 6a900917..e5769da1 100644 --- a/test/warnRuleAsWarning.test.js +++ b/test/warnRuleAsWarning.test.js @@ -47,7 +47,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); const logs = []; for (const [name, value] of stats.compilation.logging) { @@ -83,7 +83,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); const logs = []; for (const [name, value] of stats.compilation.logging) { @@ -119,7 +119,7 @@ describe("loader", () => { const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); const codeFromBundle = getCodeFromBundle(stats, compiler); - const codeFromSass = getCodeFromSass(testId, options); + const codeFromSass = await getCodeFromSass(testId, options); const logs = []; for (const [name, value] of stats.compilation.logging) { From be8a127f144b89f9056b99aef48e5a927b8b2d64 Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Sat, 8 Jan 2022 21:04:11 +0300 Subject: [PATCH 3/5] test: fix --- .../additionalData-option.test.js.snap | 100 +- test/__snapshots__/loader.test.js.snap | 141583 ++++----------- .../sassOptions-option.test.js.snap | 1502 +- .../sourceMap-options.test.js.snap | 2706 +- .../warnRuleAsWarning.test.js.snap | 72 +- .../webpackImporter-options.test.js.snap | 234 +- test/helpers/getCodeFromSass.js | 25 +- test/helpers/getImplementations.js | 5 +- test/warnRuleAsWarning.test.js | 2 +- 9 files changed, 40722 insertions(+), 105507 deletions(-) diff --git a/test/__snapshots__/additionalData-option.test.js.snap b/test/__snapshots__/additionalData-option.test.js.snap index 4c20c618..f7398f9f 100644 --- a/test/__snapshots__/additionalData-option.test.js.snap +++ b/test/__snapshots__/additionalData-option.test.js.snap @@ -28,39 +28,14 @@ exports[`additionalData option should use same EOL on all os (dart-sass) (scss): exports[`additionalData option should use same EOL on all os (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`additionalData option should use same EOL on all os (node-sass) (sass): css 1`] = ` -"a { - color: hotpink; } - -body { - color: hotpink; } -" -`; - -exports[`additionalData option should use same EOL on all os (node-sass) (sass): errors 1`] = `Array []`; - -exports[`additionalData option should use same EOL on all os (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`additionalData option should use same EOL on all os (node-sass) (scss): css 1`] = ` -"a { - color: red; } - -body { - color: hotpink; } -" -`; - -exports[`additionalData option should use same EOL on all os (node-sass) (scss): errors 1`] = `Array []`; - -exports[`additionalData option should use same EOL on all os (node-sass) (scss): warnings 1`] = `Array []`; - exports[`additionalData option should use same EOL on all os (sass-embedded) (sass): css 1`] = ` "a { - color: hotpink; } + color: hotpink; +} body { - color: hotpink; } -" + color: hotpink; +}" `; exports[`additionalData option should use same EOL on all os (sass-embedded) (sass): errors 1`] = `Array []`; @@ -69,11 +44,12 @@ exports[`additionalData option should use same EOL on all os (sass-embedded) (sa exports[`additionalData option should use same EOL on all os (sass-embedded) (scss): css 1`] = ` "a { - color: red; } + color: red; +} body { - color: hotpink; } -" + color: hotpink; +}" `; exports[`additionalData option should use same EOL on all os (sass-embedded) (scss): errors 1`] = `Array []`; @@ -100,25 +76,25 @@ exports[`additionalData option should work as a function (dart-sass) (scss): err exports[`additionalData option should work as a function (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`additionalData option should work as a function (node-sass) (sass): css 1`] = ` +exports[`additionalData option should work as a function (sass-embedded) (sass): css 1`] = ` "body { - color: hotpink; } -" + color: hotpink; +}" `; -exports[`additionalData option should work as a function (node-sass) (sass): errors 1`] = `Array []`; +exports[`additionalData option should work as a function (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`additionalData option should work as a function (node-sass) (sass): warnings 1`] = `Array []`; +exports[`additionalData option should work as a function (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`additionalData option should work as a function (node-sass) (scss): css 1`] = ` +exports[`additionalData option should work as a function (sass-embedded) (scss): css 1`] = ` "body { - color: hotpink; } -" + color: hotpink; +}" `; -exports[`additionalData option should work as a function (node-sass) (scss): errors 1`] = `Array []`; +exports[`additionalData option should work as a function (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`additionalData option should work as a function (node-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should work as a function (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`additionalData option should work as a string (dart-sass) (sass): css 1`] = ` "body { @@ -140,25 +116,25 @@ exports[`additionalData option should work as a string (dart-sass) (scss): error exports[`additionalData option should work as a string (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`additionalData option should work as a string (node-sass) (sass): css 1`] = ` +exports[`additionalData option should work as a string (sass-embedded) (sass): css 1`] = ` "body { - color: hotpink; } -" + color: hotpink; +}" `; -exports[`additionalData option should work as a string (node-sass) (sass): errors 1`] = `Array []`; +exports[`additionalData option should work as a string (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`additionalData option should work as a string (node-sass) (sass): warnings 1`] = `Array []`; +exports[`additionalData option should work as a string (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`additionalData option should work as a string (node-sass) (scss): css 1`] = ` +exports[`additionalData option should work as a string (sass-embedded) (scss): css 1`] = ` "body { - color: hotpink; } -" + color: hotpink; +}" `; -exports[`additionalData option should work as a string (node-sass) (scss): errors 1`] = `Array []`; +exports[`additionalData option should work as a string (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`additionalData option should work as a string (node-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should work as a string (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`additionalData option should work as an async function (dart-sass) (sass): css 1`] = ` "body { @@ -180,22 +156,22 @@ exports[`additionalData option should work as an async function (dart-sass) (scs exports[`additionalData option should work as an async function (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`additionalData option should work as an async function (node-sass) (sass): css 1`] = ` +exports[`additionalData option should work as an async function (sass-embedded) (sass): css 1`] = ` "body { - color: hotpink; } -" + color: hotpink; +}" `; -exports[`additionalData option should work as an async function (node-sass) (sass): errors 1`] = `Array []`; +exports[`additionalData option should work as an async function (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`additionalData option should work as an async function (node-sass) (sass): warnings 1`] = `Array []`; +exports[`additionalData option should work as an async function (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`additionalData option should work as an async function (node-sass) (scss): css 1`] = ` +exports[`additionalData option should work as an async function (sass-embedded) (scss): css 1`] = ` "body { - color: hotpink; } -" + color: hotpink; +}" `; -exports[`additionalData option should work as an async function (node-sass) (scss): errors 1`] = `Array []`; +exports[`additionalData option should work as an async function (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`additionalData option should work as an async function (node-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should work as an async function (sass-embedded) (scss): warnings 1`] = `Array []`; diff --git a/test/__snapshots__/loader.test.js.snap b/test/__snapshots__/loader.test.js.snap index cd39193a..caa6ba7d 100644 --- a/test/__snapshots__/loader.test.js.snap +++ b/test/__snapshots__/loader.test.js.snap @@ -106,25 +106,25 @@ exports[`loader should load files with underscore in the name (dart-sass) (scss) exports[`loader should load files with underscore in the name (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should load files with underscore in the name (node-sass) (sass): css 1`] = ` +exports[`loader should load files with underscore in the name (sass-embedded) (sass): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should load files with underscore in the name (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should load files with underscore in the name (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should load files with underscore in the name (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should load files with underscore in the name (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should load files with underscore in the name (node-sass) (scss): css 1`] = ` +exports[`loader should load files with underscore in the name (sass-embedded) (scss): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should load files with underscore in the name (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should load files with underscore in the name (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should load files with underscore in the name (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should load files with underscore in the name (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should load only sass/scss files for the "mainFiles" (dart-sass) (sass): css 1`] = ` "a { @@ -146,26 +146,6 @@ exports[`loader should load only sass/scss files for the "mainFiles" (dart-sass) exports[`loader should load only sass/scss files for the "mainFiles" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should load only sass/scss files for the "mainFiles" (node-sass) (sass): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should load only sass/scss files for the "mainFiles" (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should load only sass/scss files for the "mainFiles" (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should load only sass/scss files for the "mainFiles" (node-sass) (scss): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should load only sass/scss files for the "mainFiles" (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should load only sass/scss files for the "mainFiles" (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should not use .import.sass files (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -202,28 +182,10 @@ SassError: expected \\"{\\".", exports[`loader should output an understandable error (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should output an understandable error (node-sass) (sass): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: Invalid CSS after \\"a {\\": expected \\"}\\", was \\"{}\\"", -] -`; - -exports[`loader should output an understandable error (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should output an understandable error (node-sass) (scss): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: property \\"some-value\\" must be followed by a ':'", -] -`; - -exports[`loader should output an understandable error (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should output an understandable error (sass-embedded) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: Invalid CSS after \\"a {\\": expected \\"}\\", was \\"{}\\"", +SassError: Expected newline.", ] `; @@ -232,7 +194,7 @@ exports[`loader should output an understandable error (sass-embedded) (sass): wa exports[`loader should output an understandable error (sass-embedded) (scss): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: property \\"some-value\\" must be followed by a ':'", +SassError: expected \\"{\\".", ] `; @@ -256,28 +218,10 @@ SassError: Can't find stylesheet to import.", exports[`loader should output an understandable error when a file could not be found (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should output an understandable error when a file could not be found (node-sass) (sass): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: does-not-exist.", -] -`; - -exports[`loader should output an understandable error when a file could not be found (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should output an understandable error when a file could not be found (node-sass) (scss): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: does-not-exist.", -] -`; - -exports[`loader should output an understandable error when a file could not be found (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should output an understandable error when a file could not be found (sass-embedded) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: does-not-exist.", +SassError: Can't find stylesheet to import.", ] `; @@ -286,7 +230,7 @@ exports[`loader should output an understandable error when a file could not be f exports[`loader should output an understandable error when a file could not be found (sass-embedded) (scss): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: does-not-exist.", +SassError: Can't find stylesheet to import.", ] `; @@ -328,28 +272,10 @@ SassError: expected \\"{\\".", exports[`loader should output an understandable error when the problem in "@import" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should output an understandable error when the problem in "@import" (node-sass) (sass): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: Invalid CSS after \\"a {\\": expected \\"}\\", was \\"{}\\"", -] -`; - -exports[`loader should output an understandable error when the problem in "@import" (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should output an understandable error when the problem in "@import" (node-sass) (scss): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: property \\"some-value\\" must be followed by a ':'", -] -`; - -exports[`loader should output an understandable error when the problem in "@import" (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should output an understandable error when the problem in "@import" (sass-embedded) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: Invalid CSS after \\"a {\\": expected \\"}\\", was \\"{}\\"", +SassError: Expected newline.", ] `; @@ -358,7 +284,7 @@ exports[`loader should output an understandable error when the problem in "@impo exports[`loader should output an understandable error when the problem in "@import" (sass-embedded) (scss): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: property \\"some-value\\" must be followed by a ':'", +SassError: expected \\"{\\".", ] `; @@ -418,38 +344,6 @@ exports[`loader should prefer "mainFiles" over "mainFields" when the field conta exports[`loader should prefer "mainFiles" over "mainFields" when the field contains "js" file (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should prefer "mainFiles" over "mainFields" when the field contains "js" file (node-sass) (sass): css 1`] = ` -"a { - color: blue; } - -.load-me { - display: block; } - -.class { - color: red; } -" -`; - -exports[`loader should prefer "mainFiles" over "mainFields" when the field contains "js" file (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should prefer "mainFiles" over "mainFields" when the field contains "js" file (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should prefer "mainFiles" over "mainFields" when the field contains "js" file (node-sass) (scss): css 1`] = ` -"a { - color: blue; } - -.load-me { - display: block; } - -.class { - color: red; } -" -`; - -exports[`loader should prefer "mainFiles" over "mainFields" when the field contains "js" file (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should prefer "mainFiles" over "mainFields" when the field contains "js" file (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should prefer "mainFiles" with extension over without (dart-sass) (sass): css 1`] = ` ".load-me { color: red; @@ -478,32 +372,6 @@ exports[`loader should prefer "mainFiles" with extension over without (dart-sass exports[`loader should prefer "mainFiles" with extension over without (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should prefer "mainFiles" with extension over without (node-sass) (sass): css 1`] = ` -".load-me { - color: red; } - -.class { - color: blue; } -" -`; - -exports[`loader should prefer "mainFiles" with extension over without (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should prefer "mainFiles" with extension over without (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should prefer "mainFiles" with extension over without (node-sass) (scss): css 1`] = ` -".load-me { - color: red; } - -.class { - color: blue; } -" -`; - -exports[`loader should prefer "mainFiles" with extension over without (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should prefer "mainFiles" with extension over without (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should prefer "sass)" over CSS (dart-sass) (sass): css 1`] = ` "a { color: green; @@ -552,32 +420,6 @@ exports[`loader should prefer relative import (dart-sass) (scss): errors 1`] = ` exports[`loader should prefer relative import (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should prefer relative import (node-sass) (sass): css 1`] = ` -".class { - color: blue; } - -a { - color: red; } -" -`; - -exports[`loader should prefer relative import (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should prefer relative import (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should prefer relative import (node-sass) (scss): css 1`] = ` -".class { - color: blue; } - -a { - color: red; } -" -`; - -exports[`loader should prefer relative import (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should prefer relative import (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should resolve absolute paths (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -680,96 +522,6 @@ exports[`loader should resolve absolute paths (dart-sass) (scss): errors 1`] = ` exports[`loader should resolve absolute paths (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should resolve absolute paths (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`loader should resolve absolute paths (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should resolve absolute paths (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should resolve absolute paths (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`loader should resolve absolute paths (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should resolve absolute paths (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should resolve server-relative URLs (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -872,96 +624,6 @@ exports[`loader should resolve server-relative URLs (dart-sass) (scss): errors 1 exports[`loader should resolve server-relative URLs (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should resolve server-relative URLs (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`loader should resolve server-relative URLs (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should resolve server-relative URLs (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should resolve server-relative URLs (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`loader should resolve server-relative URLs (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should resolve server-relative URLs (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (dart-sass) (sass): css 1`] = ` ".dir-with-underscore-index { color: red; @@ -982,26 +644,6 @@ exports[`loader should respect resolving directory with the "index" file from "p exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (node-sass) (sass): css 1`] = ` -".dir-with-underscore-index { - color: red; } -" -`; - -exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (node-sass) (scss): css 1`] = ` -".dir-with-underscore-index { - color: red; } -" -`; - -exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should respect resolving directory with the "index" file from "process.cwd()" (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should respect resolving from "process.cwd()" (dart-sass) (sass): css 1`] = ` "body { font: 100% Helvetica, sans-serif; @@ -1024,28 +666,6 @@ exports[`loader should respect resolving from "process.cwd()" (dart-sass) (scss) exports[`loader should respect resolving from "process.cwd()" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should respect resolving from "process.cwd()" (node-sass) (sass): css 1`] = ` -"body { - font: 100% Helvetica, sans-serif; - color: #333; } -" -`; - -exports[`loader should respect resolving from "process.cwd()" (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should respect resolving from "process.cwd()" (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should respect resolving from "process.cwd()" (node-sass) (scss): css 1`] = ` -"body { - font: 100% Helvetica, sans-serif; - color: #333; } -" -`; - -exports[`loader should respect resolving from "process.cwd()" (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should respect resolving from "process.cwd()" (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should respect resolving from the "SASS_PATH" environment variable (dart-sass) (sass): css 1`] = ` ".color-red { color: red; @@ -1074,32 +694,6 @@ exports[`loader should respect resolving from the "SASS_PATH" environment variab exports[`loader should respect resolving from the "SASS_PATH" environment variable (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should respect resolving from the "SASS_PATH" environment variable (node-sass) (sass): css 1`] = ` -".color-red { - color: red; } - -.bar { - color: blue; } -" -`; - -exports[`loader should respect resolving from the "SASS_PATH" environment variable (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should respect resolving from the "SASS_PATH" environment variable (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should respect resolving from the "SASS_PATH" environment variable (node-sass) (scss): css 1`] = ` -".color-red { - color: red; } - -.bar { - color: blue; } -" -`; - -exports[`loader should respect resolving from the "SASS_PATH" environment variable (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should respect resolving from the "SASS_PATH" environment variable (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should support resolving using the "file" schema (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -1202,96 +796,6 @@ exports[`loader should support resolving using the "file" schema (dart-sass) (sc exports[`loader should support resolving using the "file" schema (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should support resolving using the "file" schema (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`loader should support resolving using the "file" schema (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should support resolving using the "file" schema (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should support resolving using the "file" schema (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`loader should support resolving using the "file" schema (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should support resolving using the "file" schema (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should throw an error on ambiguous import (only on "dart-sass") (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): @@ -1310,62 +814,46 @@ SassError: It's not clear which file to import. Found:", exports[`loader should throw an error on ambiguous import (only on "dart-sass") (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (sass): errors 1`] = `Array []`; - -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (sass): warnings 1`] = `Array []`; - -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (scss): warnings 1`] = `Array []`; - -exports[`loader should throw an error on circular import (dart-sass) (sass): errors 1`] = ` +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: This file is already being loaded.", +SassError: It's not clear which file to import. Found:", ] `; -exports[`loader should throw an error on circular import (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should throw an error on circular import (dart-sass) (scss): errors 1`] = ` +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (scss): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: This file is already being loaded.", +SassError: It's not clear which file to import. Found:", ] `; -exports[`loader should throw an error on circular import (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should throw an error on ambiguous import (only on "dart-sass") (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`loader should throw an error on circular import (node-sass) (sass): errors 1`] = ` +exports[`loader should throw an error on circular import (dart-sass) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: An @import loop has been found:", +SassError: This file is already being loaded.", ] `; -exports[`loader should throw an error on circular import (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should throw an error on circular import (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`loader should throw an error on circular import (node-sass) (scss): errors 1`] = ` +exports[`loader should throw an error on circular import (dart-sass) (scss): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: An @import loop has been found:", +SassError: This file is already being loaded.", ] `; -exports[`loader should throw an error on circular import (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should throw an error on circular import (dart-sass) (scss): warnings 1`] = `Array []`; exports[`loader should throw an error on circular import (sass-embedded) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: An @import loop has been found:", +SassError: This file is already being loaded.", ] `; @@ -1374,7 +862,7 @@ exports[`loader should throw an error on circular import (sass-embedded) (sass): exports[`loader should throw an error on circular import (sass-embedded) (scss): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: An @import loop has been found:", +SassError: This file is already being loaded.", ] `; @@ -1416,28 +904,10 @@ SassError: Can't find stylesheet to import.", exports[`loader should throw an error with a explicit file and a file does not exist (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should throw an error with a explicit file and a file does not exist (node-sass) (sass): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: ./another/_module.scss.", -] -`; - -exports[`loader should throw an error with a explicit file and a file does not exist (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should throw an error with a explicit file and a file does not exist (node-sass) (scss): errors 1`] = ` -Array [ - "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: ./another/_module.scss.", -] -`; - -exports[`loader should throw an error with a explicit file and a file does not exist (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should throw an error with a explicit file and a file does not exist (sass-embedded) (sass): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: ./another/_module.scss.", +SassError: Can't find stylesheet to import.", ] `; @@ -1446,7 +916,7 @@ exports[`loader should throw an error with a explicit file and a file does not e exports[`loader should throw an error with a explicit file and a file does not exist (sass-embedded) (scss): errors 1`] = ` Array [ "ModuleBuildError: Module build failed (from ../src/cjs.js): -SassError: File to import not found or unreadable: ./another/_module.scss.", +SassError: Can't find stylesheet to import.", ] `; @@ -1554,26 +1024,6 @@ exports[`loader should watch firstly in the "includePaths" values (dart-sass) (s exports[`loader should watch firstly in the "includePaths" values (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should watch firstly in the "includePaths" values (node-sass) (sass): css 1`] = ` -".bar { - color: red; } -" -`; - -exports[`loader should watch firstly in the "includePaths" values (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should watch firstly in the "includePaths" values (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should watch firstly in the "includePaths" values (node-sass) (scss): css 1`] = ` -".bar { - color: red; } -" -`; - -exports[`loader should watch firstly in the "includePaths" values (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should watch firstly in the "includePaths" values (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work (dart-sass) (sass) add "@charset "UTF-8";" for non ascii characters: css 1`] = ` "@charset \\"UTF-8\\"; p { @@ -1944,275 +1394,311 @@ exports[`loader should work (dart-sass) (scss): errors 1`] = `Array []`; exports[`loader should work (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work (node-sass) (sass) with the "filesystem" cache: css 1`] = ` +exports[`loader should work (sass-embedded) (sass) with the "filesystem" cache: css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`loader should work (node-sass) (sass) with the "filesystem" cache: errors 1`] = `Array []`; +exports[`loader should work (sass-embedded) (sass) with the "filesystem" cache: errors 1`] = `Array []`; -exports[`loader should work (node-sass) (sass) with the "filesystem" cache: warnings 1`] = `Array []`; +exports[`loader should work (sass-embedded) (sass) with the "filesystem" cache: warnings 1`] = `Array []`; -exports[`loader should work (node-sass) (sass) with the "memory" cache: css 1`] = ` +exports[`loader should work (sass-embedded) (sass) with the "memory" cache: css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`loader should work (node-sass) (sass) with the "memory" cache: errors 1`] = `Array []`; +exports[`loader should work (sass-embedded) (sass) with the "memory" cache: errors 1`] = `Array []`; -exports[`loader should work (node-sass) (sass) with the "memory" cache: warnings 1`] = `Array []`; +exports[`loader should work (sass-embedded) (sass) with the "memory" cache: warnings 1`] = `Array []`; -exports[`loader should work (node-sass) (sass): css 1`] = ` +exports[`loader should work (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`loader should work (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should work (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should work (node-sass) (scss) with the "filesystem" cache: css 1`] = ` +exports[`loader should work (sass-embedded) (scss) with the "filesystem" cache: css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`loader should work (node-sass) (scss) with the "filesystem" cache: errors 1`] = `Array []`; +exports[`loader should work (sass-embedded) (scss) with the "filesystem" cache: errors 1`] = `Array []`; -exports[`loader should work (node-sass) (scss) with the "filesystem" cache: warnings 1`] = `Array []`; +exports[`loader should work (sass-embedded) (scss) with the "filesystem" cache: warnings 1`] = `Array []`; -exports[`loader should work (node-sass) (scss) with the "memory" cache: css 1`] = ` +exports[`loader should work (sass-embedded) (scss) with the "memory" cache: css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`loader should work (node-sass) (scss) with the "memory" cache: errors 1`] = `Array []`; +exports[`loader should work (sass-embedded) (scss) with the "memory" cache: errors 1`] = `Array []`; -exports[`loader should work (node-sass) (scss) with the "memory" cache: warnings 1`] = `Array []`; +exports[`loader should work (sass-embedded) (scss) with the "memory" cache: warnings 1`] = `Array []`; -exports[`loader should work (node-sass) (scss): css 1`] = ` +exports[`loader should work (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`loader should work (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should work (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should work and ignore all css "@import" at-rules (dart-sass) (sass): css 1`] = ` "@import \\"~css/some-css-module.css\\"; @@ -2246,38 +1732,6 @@ exports[`loader should work and ignore all css "@import" at-rules (dart-sass) (s exports[`loader should work and ignore all css "@import" at-rules (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and ignore all css "@import" at-rules (node-sass) (sass): css 1`] = ` -"@import url(~css/some-css-module.css); -@import url(./does/not/exist.css); -@import url(theme.css); -@import http://fonts.googleapis.com/css?family=Droid+Sans; -@import url(theme); -@import landscape screen and (orientation: landscape); -.some-css-module { - background: hotpink; } -" -`; - -exports[`loader should work and ignore all css "@import" at-rules (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and ignore all css "@import" at-rules (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and ignore all css "@import" at-rules (node-sass) (scss): css 1`] = ` -"@import url(~css/some-css-module.css); -@import url(./does/not/exist.css); -@import url(theme.css); -@import http://fonts.googleapis.com/css?family=Droid+Sans; -@import url(theme); -@import landscape screen and (orientation: landscape); -.some-css-module { - background: hotpink; } -" -`; - -exports[`loader should work and ignore all css "@import" at-rules (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and ignore all css "@import" at-rules (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and output deprecation message (dart-sass): css 1`] = ` "a:hover { color: rgba(0, 0, 0, 0.025); @@ -2310,23 +1764,107 @@ exports[`loader should work and output the "compressed" outputStyle when "mode" exports[`loader should work and output the "compressed" outputStyle when "mode" is production (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and output the "compressed" outputStyle when "mode" is production (node-sass) (sass): css 1`] = ` -"@import url(./file.css);body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.message,.success,.error,.warning{border:1px solid #ccc;padding:10px;color:#333}.success{border-color:green}.error{border-color:red}.warning{border-color:yellow}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"} -" +exports[`loader should work and output the "compressed" outputStyle when "mode" is production (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" `; -exports[`loader should work and output the "compressed" outputStyle when "mode" is production (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work and output the "compressed" outputStyle when "mode" is production (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`loader should work and output the "compressed" outputStyle when "mode" is production (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should work and output the "compressed" outputStyle when "mode" is production (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} -exports[`loader should work and output the "compressed" outputStyle when "mode" is production (node-sass) (sass): warnings 1`] = `Array []`; +.foo:before { + content: \\"\\\\e0c6\\"; +} -exports[`loader should work and output the "compressed" outputStyle when "mode" is production (node-sass) (scss): css 1`] = ` -"@import url(./file.css);body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"} -" +.bar:before { + content: \\"∑\\"; +}" `; -exports[`loader should work and output the "compressed" outputStyle when "mode" is production (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work and output the "compressed" outputStyle when "mode" is production (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should work and output the "compressed" outputStyle when "mode" is production (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work and output the "compressed" outputStyle when "mode" is production (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should work and use the "_index" file in package (dart-sass) (sass): css 1`] = ` "a { @@ -2348,26 +1886,6 @@ exports[`loader should work and use the "_index" file in package (dart-sass) (sc exports[`loader should work and use the "_index" file in package (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "_index" file in package (node-sass) (sass): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "_index" file in package (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "_index" file in package (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "_index" file in package (node-sass) (scss): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "_index" file in package (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "_index" file in package (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "custom-sass" field (dart-sass) (sass): css 1`] = ` "a { display: block; @@ -2388,26 +1906,6 @@ exports[`loader should work and use the "custom-sass" field (dart-sass) (scss): exports[`loader should work and use the "custom-sass" field (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "custom-sass" field (node-sass) (sass): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "custom-sass" field (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "custom-sass" field (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "custom-sass" field (node-sass) (scss): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "custom-sass" field (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "custom-sass" field (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "index" file in package (dart-sass) (sass): css 1`] = ` "a { color: red; @@ -2428,26 +1926,6 @@ exports[`loader should work and use the "index" file in package (dart-sass) (scs exports[`loader should work and use the "index" file in package (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "index" file in package (node-sass) (sass): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "index" file in package (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package (node-sass) (scss): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "index" file in package (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (dart-sass) (sass): css 1`] = ` "a { color: red; @@ -2468,26 +1946,6 @@ exports[`loader should work and use the "index" file in package when the "index" exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (node-sass) (sass): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (node-sass) (scss): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package when the "index" value already in the "mainFiles" resolve option (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (dart-sass) (sass): css 1`] = ` "a { color: red; @@ -2508,26 +1966,6 @@ exports[`loader should work and use the "index" file in package when the "index" exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (node-sass) (sass): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (node-sass) (scss): css 1`] = ` -"a { - color: red; } -" -`; - -exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "index" file in package when the "index" value is not in the "mainFiles" resolve option (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "main" field (dart-sass) (sass): css 1`] = ` "a { display: block; @@ -2548,26 +1986,6 @@ exports[`loader should work and use the "main" field (dart-sass) (scss): errors exports[`loader should work and use the "main" field (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "main" field (node-sass) (sass): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "main" field (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "main" field (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "main" field (node-sass) (scss): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "main" field (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "main" field (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (dart-sass) (sass): css 1`] = ` "a { display: block; @@ -2588,26 +2006,6 @@ exports[`loader should work and use the "main" field when the "main" value alrea exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (node-sass) (sass): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (node-sass) (scss): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "main" field when the "main" value already in the "mainFields" resolve option (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (dart-sass) (sass): css 1`] = ` "a { display: block; @@ -2628,26 +2026,6 @@ exports[`loader should work and use the "main" field when the "main" value is no exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (node-sass) (sass): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (node-sass) (scss): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "main" field when the "main" value is not in the "mainFields" resolve option (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "sass" field (dart-sass) (sass): css 1`] = ` "a { display: block; @@ -2668,26 +2046,6 @@ exports[`loader should work and use the "sass" field (dart-sass) (scss): errors exports[`loader should work and use the "sass" field (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "sass" field (node-sass) (sass): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "sass" field (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "sass" field (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "sass" field (node-sass) (scss): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "sass" field (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "sass" field (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work and use the "style" field (dart-sass) (sass): css 1`] = ` "a { display: block; @@ -2708,26 +2066,6 @@ exports[`loader should work and use the "style" field (dart-sass) (scss): errors exports[`loader should work and use the "style" field (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work and use the "style" field (node-sass) (sass): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "style" field (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work and use the "style" field (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work and use the "style" field (node-sass) (scss): css 1`] = ` -"a { - display: block; } -" -`; - -exports[`loader should work and use the "style" field (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work and use the "style" field (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work when "@import" at-rules from scoped npm packages (dart-sass) (sass): css 1`] = ` "/* @import ~@org/pkg */ .org-pkg { @@ -2768,43 +2106,425 @@ exports[`loader should work when "@import" at-rules from scoped npm packages (da exports[`loader should work when "@import" at-rules from scoped npm packages (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules from scoped npm packages (node-sass) (sass): css 1`] = ` -"/* @import ~@org/pkg */ -.org-pkg { - background: white; } +exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (sass): css 1`] = ` +".underscore { + color: greenyellow; +} -/* @import ~@org/bar/foo */ -.scoped-npm-pkg-foo { - background: black; } +.underscore { + color: greenyellow; +} -.foo { - background: #000; } -" -`; +.underscore { + color: greenyellow; +} -exports[`loader should work when "@import" at-rules from scoped npm packages (node-sass) (sass): errors 1`] = `Array []`; +.underscore { + color: greenyellow; +} -exports[`loader should work when "@import" at-rules from scoped npm packages (node-sass) (sass): warnings 1`] = `Array []`; +.underscore { + color: greenyellow; +} -exports[`loader should work when "@import" at-rules from scoped npm packages (node-sass) (scss): css 1`] = ` -"/* @import \\"~@org/pkg\\"; */ -.org-pkg { - background: white; } +.underscore { + color: greenyellow; +} -/* @import \\"~@org/bar/foo\\"; */ -.scoped-npm-pkg-foo { - background: black; } +.underscore { + color: greenyellow; +} -.foo { - background: #000; } -" +.underscore { + color: greenyellow; +} + +.underscore { + color: greenyellow; +} + +.underscore { + color: greenyellow; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-1 { + color: cadetblue; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-2 { + color: azure; +} + +.underscore-3 { + color: chocolate; +} + +.underscore-3 { + color: chocolate; +} + +.underscore-3 { + color: chocolate; +} + +.underscore-3 { + color: chocolate; +} + +.underscore-3 { + color: chocolate; +} + +.underscore-3 { + color: chocolate; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-1-index { + color: goldenrod; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-2-index { + color: mediumpurple; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-3-index { + color: bisque; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-4-index { + color: maroon; +} + +.underscore-dir-5-index { + color: magenta; +} + +.underscore-dir-5-index { + color: magenta; +} + +.underscore-dir-5-index { + color: magenta; +} + +.underscore-dir-5-index { + color: magenta; +} + +.underscore-dir-5-index { + color: magenta; +} + +.underscore-dir-5-index { + color: magenta; +}" `; -exports[`loader should work when "@import" at-rules from scoped npm packages (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (sass): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules from scoped npm packages (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (sass): css 1`] = ` +exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (scss): css 1`] = ` ".underscore { color: greenyellow; } @@ -3218,11 +2938,11 @@ exports[`loader should work when "@import" at-rules starting with "_" (dart-sass }" `; -exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (scss): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (scss): css 1`] = ` +exports[`loader should work when "@import" at-rules starting with "_" (sass-embedded) (sass): css 1`] = ` ".underscore { color: greenyellow; } @@ -3636,641 +3356,427 @@ exports[`loader should work when "@import" at-rules starting with "_" (dart-sass }" `; -exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules starting with "_" (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules starting with "_" (node-sass) (sass): css 1`] = ` +exports[`loader should work when "@import" at-rules starting with "_" (sass-embedded) (scss): css 1`] = ` ".underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore { - color: greenyellow; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-1 { - color: cadetblue; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-2 { - color: azure; } - -.underscore-3 { - color: chocolate; } - -.underscore-3 { - color: chocolate; } - -.underscore-3 { - color: chocolate; } - -.underscore-3 { - color: chocolate; } - -.underscore-3 { - color: chocolate; } - -.underscore-3 { - color: chocolate; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-1-index { - color: goldenrod; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-2-index { - color: mediumpurple; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-3-index { - color: bisque; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-4-index { - color: maroon; } - -.underscore-dir-5-index { - color: magenta; } - -.underscore-dir-5-index { - color: magenta; } - -.underscore-dir-5-index { - color: magenta; } - -.underscore-dir-5-index { - color: magenta; } - -.underscore-dir-5-index { - color: magenta; } - -.underscore-dir-5-index { - color: magenta; } -" -`; - -exports[`loader should work when "@import" at-rules starting with "_" (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work when "@import" at-rules starting with "_" (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work when "@import" at-rules starting with "_" (node-sass) (scss): css 1`] = ` -".underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore { - color: greenyellow; } + color: greenyellow; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-1 { - color: cadetblue; } + color: cadetblue; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-2 { - color: azure; } + color: azure; +} .underscore-3 { - color: chocolate; } + color: chocolate; +} .underscore-3 { - color: chocolate; } + color: chocolate; +} .underscore-3 { - color: chocolate; } + color: chocolate; +} .underscore-3 { - color: chocolate; } + color: chocolate; +} .underscore-3 { - color: chocolate; } + color: chocolate; +} .underscore-3 { - color: chocolate; } + color: chocolate; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-1-index { - color: goldenrod; } + color: goldenrod; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-2-index { - color: mediumpurple; } + color: mediumpurple; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-3-index { - color: bisque; } + color: bisque; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-4-index { - color: maroon; } + color: maroon; +} .underscore-dir-5-index { - color: magenta; } + color: magenta; +} .underscore-dir-5-index { - color: magenta; } + color: magenta; +} .underscore-dir-5-index { - color: magenta; } + color: magenta; +} .underscore-dir-5-index { - color: magenta; } + color: magenta; +} .underscore-dir-5-index { - color: magenta; } + color: magenta; +} .underscore-dir-5-index { - color: magenta; } -" + color: magenta; +}" `; -exports[`loader should work when "@import" at-rules starting with "_" (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules starting with "_" (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules starting with "_" (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should work when "@import" at-rules with extensions (dart-sass) (sass): css 1`] = ` ".example { @@ -4380,91 +3886,113 @@ exports[`loader should work when "@import" at-rules with extensions (dart-sass) exports[`loader should work when "@import" at-rules with extensions (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules with extensions (node-sass) (sass): css 1`] = ` +exports[`loader should work when "@import" at-rules with extensions (sass-embedded) (sass): css 1`] = ` ".example { - color: red; } + color: red; +} .example { - color: red; } + color: red; +} .example { - color: red; } + color: red; +} .example-2 { - color: blue; } + color: blue; +} .example-2 { - color: blue; } + color: blue; +} .example-2 { - color: blue; } + color: blue; +} .example-4 { - color: greenyellow; } + color: greenyellow; +} .example-4 { - color: greenyellow; } + color: greenyellow; +} .example-4 { - color: greenyellow; } + color: greenyellow; +} .example-5 { - color: aquamarine; } + color: aquamarine; +} .example-5 { - color: aquamarine; } + color: aquamarine; +} .example-5 { - color: aquamarine; } -" + color: aquamarine; +}" `; -exports[`loader should work when "@import" at-rules with extensions (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules with extensions (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules with extensions (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules with extensions (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules with extensions (node-sass) (scss): css 1`] = ` +exports[`loader should work when "@import" at-rules with extensions (sass-embedded) (scss): css 1`] = ` ".example { - color: red; } + color: red; +} .example { - color: red; } + color: red; +} .example { - color: red; } + color: red; +} .example-2 { - color: blue; } + color: blue; +} .example-2 { - color: blue; } + color: blue; +} .example-2 { - color: blue; } + color: blue; +} .example-4 { - color: greenyellow; } + color: greenyellow; +} .example-4 { - color: greenyellow; } + color: greenyellow; +} .example-4 { - color: greenyellow; } + color: greenyellow; +} .example-5 { - color: aquamarine; } + color: aquamarine; +} .example-5 { - color: aquamarine; } + color: aquamarine; +} .example-5 { - color: aquamarine; } -" + color: aquamarine; +}" `; -exports[`loader should work when "@import" at-rules with extensions (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules with extensions (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules with extensions (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules with extensions (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (dart-sass) (sass): css 1`] = ` ".word { @@ -5054,451 +4582,593 @@ exports[`loader should work when "@import" at-rules without extensions and do no exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (node-sass) (sass): css 1`] = ` +exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (sass-embedded) (sass): css 1`] = ` ".word { - color: red; } + color: red; +} .word { - color: red; } + color: red; +} .word { - color: red; } + color: red; +} .word-1 { - color: black; } + color: black; +} .word-1 { - color: black; } + color: black; +} .word-1 { - color: black; } + color: black; +} .word-2 { - color: aquamarine; } + color: aquamarine; +} .word-2 { - color: aquamarine; } + color: aquamarine; +} .word-2 { - color: aquamarine; } + color: aquamarine; +} .word-3 { - color: #000088; } + color: #000088; +} .word-3 { - color: #000088; } + color: #000088; +} .word-3 { - color: #000088; } + color: #000088; +} .word-4 { - color: #aaaaaa; } + color: #aaaaaa; +} .word-4 { - color: #aaaaaa; } + color: #aaaaaa; +} .word-4 { - color: #aaaaaa; } + color: #aaaaaa; +} .word-5 { - color: fuchsia; } + color: fuchsia; +} .word-5 { - color: fuchsia; } + color: fuchsia; +} .word-5 { - color: fuchsia; } + color: fuchsia; +} .word-6 { - color: azure; } + color: azure; +} .word-6 { - color: azure; } + color: azure; +} .word-6 { - color: azure; } + color: azure; +} .word-7 { - color: red; } + color: red; +} .word-7 { - color: red; } + color: red; +} .word-7 { - color: red; } + color: red; +} .word-8 { - color: moccasin; } + color: moccasin; +} .word-8 { - color: moccasin; } + color: moccasin; +} .word-8 { - color: moccasin; } + color: moccasin; +} .word-9 { - color: darkcyan; } + color: darkcyan; +} .word-9 { - color: darkcyan; } + color: darkcyan; +} .word-9 { - color: darkcyan; } + color: darkcyan; +} .word-10 { - color: #fff4c2; } + color: #fff4c2; +} .word-10 { - color: #fff4c2; } + color: #fff4c2; +} .word-10 { - color: #fff4c2; } + color: #fff4c2; +} .word-11 { - color: #008800; } + color: #008800; +} .word-11 { - color: #008800; } + color: #008800; +} .word-11 { - color: #008800; } + color: #008800; +} .directory-file { - color: #000066; } + color: #000066; +} .directory-file { - color: #000066; } + color: #000066; +} .directory-file { - color: #000066; } + color: #000066; +} .directory-1-file { - color: #000066; } + color: #000066; +} .directory-1-file { - color: #000066; } + color: #000066; +} .directory-1-file { - color: #000066; } + color: #000066; +} .directory-2-file { - color: #7f7f7f; } + color: #7f7f7f; +} .directory-2-file { - color: #7f7f7f; } + color: #7f7f7f; +} .directory-2-file { - color: #7f7f7f; } + color: #7f7f7f; +} .directory-3-file { - color: #7ff; } + color: #7ff; +} .directory-3-file { - color: #7ff; } + color: #7ff; +} .directory-3-file { - color: #7ff; } + color: #7ff; +} .directory-4-file { - color: #77ffff; } + color: #77ffff; +} .directory-4-file { - color: #77ffff; } + color: #77ffff; +} .directory-4-file { - color: #77ffff; } + color: #77ffff; +} .directory-4-file { - color: #777; } + color: #777; +} .directory-4-file { - color: #777; } + color: #777; +} .directory-4-file { - color: #777; } + color: #777; +} .directory-6-file { - color: #faf; } + color: #faf; +} .directory-6-file { - color: #faf; } + color: #faf; +} .directory-6-file { - color: #faf; } + color: #faf; +} .directory-7-file { - color: #afa; } + color: #afa; +} .directory-7-file { - color: #afa; } + color: #afa; +} .directory-7-file { - color: #afa; } + color: #afa; +} .directory-8-file { - color: #aaf; } + color: #aaf; +} .directory-8-file { - color: #aaf; } + color: #aaf; +} .directory-8-file { - color: #aaf; } + color: #aaf; +} .directory-9-file { - color: #ffa; } + color: #ffa; +} .directory-9-file { - color: #ffa; } + color: #ffa; +} .directory-9-file { - color: #ffa; } + color: #ffa; +} .directory-10-file { - color: #bbb; } + color: #bbb; +} .directory-10-file { - color: #bbb; } + color: #bbb; +} .directory-10-file { - color: #bbb; } + color: #bbb; +} .directory-10-file { - color: #ccb; } + color: #ccb; +} .directory-10-file { - color: #ccb; } + color: #ccb; +} .directory-10-file { - color: #ccb; } -" + color: #ccb; +}" `; -exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (node-sass) (scss): css 1`] = ` +exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (sass-embedded) (scss): css 1`] = ` ".word { - color: red; } + color: red; +} .word { - color: red; } + color: red; +} .word { - color: red; } + color: red; +} .word-1 { - color: black; } + color: black; +} .word-1 { - color: black; } + color: black; +} .word-1 { - color: black; } + color: black; +} .word-2 { - color: aquamarine; } + color: aquamarine; +} .word-2 { - color: aquamarine; } + color: aquamarine; +} .word-2 { - color: aquamarine; } + color: aquamarine; +} .word-3 { - color: #000088; } + color: #000088; +} .word-3 { - color: #000088; } + color: #000088; +} .word-3 { - color: #000088; } + color: #000088; +} .word-4 { - color: #aaaaaa; } + color: #aaaaaa; +} .word-4 { - color: #aaaaaa; } + color: #aaaaaa; +} .word-4 { - color: #aaaaaa; } + color: #aaaaaa; +} .word-5 { - color: fuchsia; } + color: fuchsia; +} .word-5 { - color: fuchsia; } + color: fuchsia; +} .word-5 { - color: fuchsia; } + color: fuchsia; +} .word-6 { - color: azure; } + color: azure; +} .word-6 { - color: azure; } + color: azure; +} .word-6 { - color: azure; } + color: azure; +} .word-7 { - color: red; } + color: red; +} .word-7 { - color: red; } + color: red; +} .word-7 { - color: red; } + color: red; +} .word-8 { - color: moccasin; } + color: moccasin; +} .word-8 { - color: moccasin; } + color: moccasin; +} .word-8 { - color: moccasin; } + color: moccasin; +} .word-9 { - color: darkcyan; } + color: darkcyan; +} .word-9 { - color: darkcyan; } + color: darkcyan; +} .word-9 { - color: darkcyan; } + color: darkcyan; +} .word-10 { - color: #fff4c2; } + color: #fff4c2; +} .word-10 { - color: #fff4c2; } + color: #fff4c2; +} .word-10 { - color: #fff4c2; } + color: #fff4c2; +} .word-11 { - color: #008800; } + color: #008800; +} .word-11 { - color: #008800; } + color: #008800; +} .word-11 { - color: #008800; } + color: #008800; +} .directory-file { - color: #000066; } + color: #000066; +} .directory-file { - color: #000066; } + color: #000066; +} .directory-file { - color: #000066; } + color: #000066; +} .directory-1-file { - color: #000066; } + color: #000066; +} .directory-1-file { - color: #000066; } + color: #000066; +} .directory-1-file { - color: #000066; } + color: #000066; +} .directory-2-file { - color: #7f7f7f; } + color: #7f7f7f; +} .directory-2-file { - color: #7f7f7f; } + color: #7f7f7f; +} .directory-2-file { - color: #7f7f7f; } + color: #7f7f7f; +} .directory-3-file { - color: #7ff; } + color: #7ff; +} .directory-3-file { - color: #7ff; } + color: #7ff; +} .directory-3-file { - color: #7ff; } + color: #7ff; +} .directory-4-file { - color: #77ffff; } + color: #77ffff; +} .directory-4-file { - color: #77ffff; } + color: #77ffff; +} .directory-4-file { - color: #77ffff; } + color: #77ffff; +} .directory-4-file { - color: #777; } + color: #777; +} .directory-4-file { - color: #777; } + color: #777; +} .directory-4-file { - color: #777; } + color: #777; +} .directory-6-file { - color: #faf; } + color: #faf; +} .directory-6-file { - color: #faf; } + color: #faf; +} .directory-6-file { - color: #faf; } + color: #faf; +} .directory-7-file { - color: #afa; } + color: #afa; +} .directory-7-file { - color: #afa; } + color: #afa; +} .directory-7-file { - color: #afa; } + color: #afa; +} .directory-8-file { - color: #aaf; } + color: #aaf; +} .directory-8-file { - color: #aaf; } + color: #aaf; +} .directory-8-file { - color: #aaf; } + color: #aaf; +} .directory-9-file { - color: #ffa; } + color: #ffa; +} .directory-9-file { - color: #ffa; } + color: #ffa; +} .directory-9-file { - color: #ffa; } + color: #ffa; +} .directory-10-file { - color: #bbb; } + color: #bbb; +} .directory-10-file { - color: #bbb; } + color: #bbb; +} .directory-10-file { - color: #bbb; } + color: #bbb; +} .directory-10-file { - color: #ccb; } + color: #ccb; +} .directory-10-file { - color: #ccb; } + color: #ccb; +} .directory-10-file { - color: #ccb; } -" + color: #ccb; +}" `; -exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work when "@import" at-rules without extensions and do not start with "_" (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should work when "@use" and use the "custom-sass" field (dart-sass) (sass): css 1`] = ` "a { @@ -119737,35 +119407,37 @@ exports[`loader should work with "@import" at-rules from other language style (d exports[`loader should work with "@import" at-rules from other language style (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work with "@import" at-rules from other language style (node-sass) (sass): css 1`] = ` +exports[`loader should work with "@import" at-rules from other language style (sass-embedded) (sass): css 1`] = ` "/* Importing a scss module does not require to set the extension explicitly... */ .another-scss-module { - background: hotpink; } + background: hotpink; +} /* ...but it is allowed */ .another-scss-module { - background: hotpink; } -" + background: hotpink; +}" `; -exports[`loader should work with "@import" at-rules from other language style (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work with "@import" at-rules from other language style (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should work with "@import" at-rules from other language style (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work with "@import" at-rules from other language style (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should work with "@import" at-rules from other language style (node-sass) (scss): css 1`] = ` +exports[`loader should work with "@import" at-rules from other language style (sass-embedded) (scss): css 1`] = ` "/* Importing a sass module does not require to set the extension explicitly... */ .another-sass-module { - background: hotpink; } + background: hotpink; +} /* ...but it is allowed */ .another-sass-module { - background: hotpink; } -" + background: hotpink; +}" `; -exports[`loader should work with "@import" at-rules from other language style (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work with "@import" at-rules from other language style (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should work with "@import" at-rules from other language style (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work with "@import" at-rules from other language style (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should work with "@use" at-rules from other language style (dart-sass) (sass): css 1`] = ` ".another-scss-module { @@ -119801,14 +119473,6 @@ exports[`loader should work with "bootstrap" package v4 without tilde, import as exports[`loader should work with "bootstrap" package v4 without tilde, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work with "bootstrap" package v4 without tilde, import as a package (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v4 without tilde, import as a package (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v4 without tilde, import as a package (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v4 without tilde, import as a package (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work with "bootstrap" package v4, import as a package (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; /*! @@ -139713,200 +139377,350 @@ exports[`loader should work with "bootstrap" package v4, import as a package (da exports[`loader should work with "bootstrap" package v4, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work with "bootstrap" package v4, import as a package (node-sass) (sass): css 1`] = ` -"/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) +exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +/*! + * Bootstrap v5.1.3 (https://getbootstrap.com/) * Copyright 2011-2021 The Bootstrap Authors * Copyright 2011-2021 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */ :root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; } + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg-rgb: 255, 255, 255; + --bs-font-sans-serif: system-ui, -apple-system, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-bg: #fff; +} *, *::before, *::after { - box-sizing: border-box; } - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + box-sizing: border-box; +} -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; } +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; } - -[tabindex=\\"-1\\"]:focus:not(:focus-visible) { - outline: 0 !important; } + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} hr { - box-sizing: content-box; - height: 0; - overflow: visible; } + margin: 1rem 0; + color: inherit; + background-color: currentColor; + border: 0; + opacity: 0.25; +} -h1, h2, h3, h4, h5, h6 { +hr:not([size]) { + height: 1px; +} + +h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +h1, .h1 { + font-size: calc(1.375rem + 1.5vw); +} +@media (min-width: 1200px) { + h1, .h1 { + font-size: 2.5rem; + } +} + +h2, .h2 { + font-size: calc(1.325rem + 0.9vw); +} +@media (min-width: 1200px) { + h2, .h2 { + font-size: 2rem; + } +} + +h3, .h3 { + font-size: calc(1.3rem + 0.6vw); +} +@media (min-width: 1200px) { + h3, .h3 { + font-size: 1.75rem; + } +} + +h4, .h4 { + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + h4, .h4 { + font-size: 1.5rem; + } +} + +h5, .h5 { + font-size: 1.25rem; +} + +h6, .h6 { + font-size: 1rem; +} p { margin-top: 0; - margin-bottom: 1rem; } + margin-bottom: 1rem; +} abbr[title], -abbr[data-original-title] { - text-decoration: underline; +abbr[data-bs-original-title] { text-decoration: underline dotted; cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; } + text-decoration-skip-ink: none; +} address { margin-bottom: 1rem; font-style: normal; - line-height: inherit; } + line-height: inherit; +} + +ol, +ul { + padding-left: 2rem; +} ol, ul, dl { margin-top: 0; - margin-bottom: 1rem; } + margin-bottom: 1rem; +} ol ol, ul ul, ol ul, ul ol { - margin-bottom: 0; } + margin-bottom: 0; +} dt { - font-weight: 700; } + font-weight: 700; +} dd { - margin-bottom: .5rem; - margin-left: 0; } + margin-bottom: 0.5rem; + margin-left: 0; +} blockquote { - margin: 0 0 1rem; } + margin: 0 0 1rem; +} b, strong { - font-weight: bolder; } + font-weight: bolder; +} -small { - font-size: 80%; } +small, .small { + font-size: 0.875em; +} + +mark, .mark { + padding: 0.2em; + background-color: #fcf8e3; +} sub, sup { position: relative; - font-size: 75%; + font-size: 0.75em; line-height: 0; - vertical-align: baseline; } + vertical-align: baseline; +} sub { - bottom: -.25em; } + bottom: -0.25em; +} sup { - top: -.5em; } + top: -0.5em; +} a { - color: #007bff; - text-decoration: none; - background-color: transparent; } - a:hover { - color: #0056b3; - text-decoration: underline; } + color: #0d6efd; + text-decoration: underline; +} +a:hover { + color: #0a58ca; +} -a:not([href]):not([class]) { +a:not([href]):not([class]), a:not([href]):not([class]):hover { color: inherit; - text-decoration: none; } - a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } + text-decoration: none; +} pre, code, kbd, samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; - font-size: 1em; } + font-family: var(--bs-font-monospace); + font-size: 1em; + direction: ltr /* rtl:ignore */; + unicode-bidi: bidi-override; +} pre { + display: block; margin-top: 0; margin-bottom: 1rem; overflow: auto; - -ms-overflow-style: scrollbar; } + font-size: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} -figure { - margin: 0 0 1rem; } +code { + font-size: 0.875em; + color: #d63384; + word-wrap: break-word; +} +a > code { + color: inherit; +} -img { - vertical-align: middle; - border-style: none; } +kbd { + padding: 0.2rem 0.4rem; + font-size: 0.875em; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} +kbd kbd { + padding: 0; + font-size: 1em; + font-weight: 700; +} + +figure { + margin: 0 0 1rem; +} +img, svg { - overflow: hidden; - vertical-align: middle; } + vertical-align: middle; +} table { - border-collapse: collapse; } + caption-side: bottom; + border-collapse: collapse; +} caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + padding-top: 0.5rem; + padding-bottom: 0.5rem; color: #6c757d; text-align: left; - caption-side: bottom; } +} th { text-align: inherit; - text-align: -webkit-match-parent; } + text-align: -webkit-match-parent; +} + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; +} label { display: inline-block; - margin-bottom: 0.5rem; } +} button { - border-radius: 0; } + border-radius: 0; +} button:focus:not(:focus-visible) { - outline: 0; } + outline: 0; +} input, button, @@ -139916,193 +139730,255 @@ textarea { margin: 0; font-family: inherit; font-size: inherit; - line-height: inherit; } - -button, -input { - overflow: visible; } + line-height: inherit; +} button, select { - text-transform: none; } + text-transform: none; +} -[role=\\"button\\"] { - cursor: pointer; } +[role=button] { + cursor: pointer; +} select { - word-wrap: normal; } + word-wrap: normal; +} +select:disabled { + opacity: 1; +} -button, -[type=\\"button\\"], -[type=\\"reset\\"], -[type=\\"submit\\"] { - -webkit-appearance: button; } +[list]::-webkit-calendar-picker-indicator { + display: none; +} +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} button:not(:disabled), -[type=\\"button\\"]:not(:disabled), -[type=\\"reset\\"]:not(:disabled), -[type=\\"submit\\"]:not(:disabled) { - cursor: pointer; } +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]:not(:disabled) { + cursor: pointer; +} -button::-moz-focus-inner, -[type=\\"button\\"]::-moz-focus-inner, -[type=\\"reset\\"]::-moz-focus-inner, -[type=\\"submit\\"]::-moz-focus-inner { +::-moz-focus-inner { padding: 0; - border-style: none; } - -input[type=\\"radio\\"], -input[type=\\"checkbox\\"] { - box-sizing: border-box; - padding: 0; } + border-style: none; +} textarea { - overflow: auto; - resize: vertical; } + resize: vertical; +} fieldset { min-width: 0; padding: 0; margin: 0; - border: 0; } + border: 0; +} legend { - display: block; + float: left; width: 100%; - max-width: 100%; padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; + margin-bottom: 0.5rem; + font-size: calc(1.275rem + 0.3vw); line-height: inherit; - color: inherit; - white-space: normal; } +} +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} +legend + * { + clear: left; +} -progress { - vertical-align: baseline; } +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; +} -[type=\\"number\\"]::-webkit-inner-spin-button, -[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } +::-webkit-inner-spin-button { + height: auto; +} -[type=\\"search\\"] { +[type=search] { outline-offset: -2px; - -webkit-appearance: none; } + -webkit-appearance: textfield; +} + +/* rtl:raw: +[type=\\"tel\\"], +[type=\\"url\\"], +[type=\\"email\\"], +[type=\\"number\\"] { + direction: ltr; +} +*/ +::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-color-swatch-wrapper { + padding: 0; +} -[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } +::file-selector-button { + font: inherit; +} ::-webkit-file-upload-button { font: inherit; - -webkit-appearance: button; } + -webkit-appearance: button; +} output { - display: inline-block; } + display: inline-block; +} + +iframe { + border: 0; +} summary { display: list-item; - cursor: pointer; } + cursor: pointer; +} -template { - display: none; } +progress { + vertical-align: baseline; +} [hidden] { - display: none !important; } - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - -h1, .h1 { - font-size: 2.5rem; } - -h2, .h2 { - font-size: 2rem; } - -h3, .h3 { - font-size: 1.75rem; } - -h4, .h4 { - font-size: 1.5rem; } - -h5, .h5 { - font-size: 1.25rem; } - -h6, .h6 { - font-size: 1rem; } + display: none !important; +} .lead { font-size: 1.25rem; - font-weight: 300; } + font-weight: 300; +} .display-1 { - font-size: 6rem; + font-size: calc(1.625rem + 4.5vw); font-weight: 300; - line-height: 1.2; } + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-1 { + font-size: 5rem; + } +} .display-2 { - font-size: 5.5rem; + font-size: calc(1.575rem + 3.9vw); font-weight: 300; - line-height: 1.2; } + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-2 { + font-size: 4.5rem; + } +} .display-3 { - font-size: 4.5rem; + font-size: calc(1.525rem + 3.3vw); font-weight: 300; - line-height: 1.2; } + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-3 { + font-size: 4rem; + } +} .display-4 { - font-size: 3.5rem; + font-size: calc(1.475rem + 2.7vw); font-weight: 300; - line-height: 1.2; } - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); } + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-4 { + font-size: 3.5rem; + } +} -small, -.small { - font-size: 80%; - font-weight: 400; } +.display-5 { + font-size: calc(1.425rem + 2.1vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-5 { + font-size: 3rem; + } +} -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; } +.display-6 { + font-size: calc(1.375rem + 1.5vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-6 { + font-size: 2.5rem; + } +} .list-unstyled { padding-left: 0; - list-style: none; } + list-style: none; +} .list-inline { padding-left: 0; - list-style: none; } + list-style: none; +} .list-inline-item { - display: inline-block; } - .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } + display: inline-block; +} +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} .initialism { - font-size: 90%; - text-transform: uppercase; } + font-size: 0.875em; + text-transform: uppercase; +} .blockquote { margin-bottom: 1rem; - font-size: 1.25rem; } + font-size: 1.25rem; +} +.blockquote > :last-child { + margin-bottom: 0; +} .blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; } - .blockquote-footer::before { - content: \\"\\\\2014\\\\00A0\\"; } + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 0.875em; + color: #6c757d; +} +.blockquote-footer::before { + content: \\"— \\"; +} .img-fluid { max-width: 100%; - height: auto; } + height: auto; +} .img-thumbnail { padding: 0.25rem; @@ -140110,2939 +139986,3812 @@ mark, border: 1px solid #dee2e6; border-radius: 0.25rem; max-width: 100%; - height: auto; } + height: auto; +} .figure { - display: inline-block; } + display: inline-block; +} .figure-img { margin-bottom: 0.5rem; - line-height: 1; } + line-height: 1; +} .figure-caption { - font-size: 90%; - color: #6c757d; } - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word; } - a > code { - color: inherit; } - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; } - -pre { - display: block; - font-size: 87.5%; - color: #212529; } - pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; } + font-size: 0.875em; + color: #6c757d; +} .container, .container-fluid, -.container-sm, -.container-md, +.container-xxl, +.container-xl, .container-lg, -.container-xl { +.container-md, +.container-sm { width: 100%; - padding-right: 15px; - padding-left: 15px; + padding-right: var(--bs-gutter-x, 0.75rem); + padding-left: var(--bs-gutter-x, 0.75rem); margin-right: auto; - margin-left: auto; } + margin-left: auto; +} @media (min-width: 576px) { - .container, .container-sm { - max-width: 540px; } } - + .container-sm, .container { + max-width: 540px; + } +} @media (min-width: 768px) { - .container, .container-sm, .container-md { - max-width: 720px; } } - + .container-md, .container-sm, .container { + max-width: 720px; + } +} @media (min-width: 992px) { - .container, .container-sm, .container-md, .container-lg { - max-width: 960px; } } - + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} @media (min-width: 1200px) { - .container, .container-sm, .container-md, .container-lg, .container-xl { - max-width: 1140px; } } - + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} .row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; display: flex; flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; } - -.no-gutters { - margin-right: 0; - margin-left: 0; } - .no-gutters > .col, - .no-gutters > [class*=\\"col-\\"] { - padding-right: 0; - padding-left: 0; } - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, -.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, -.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + flex-shrink: 0; width: 100%; - padding-right: 15px; - padding-left: 15px; } + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} .col { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } + flex: 1 0 0%; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} .row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; } + flex: 0 0 auto; + width: 100%; +} .row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; +} .row-cols-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.3333333333%; +} .row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; +} .row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; } + flex: 0 0 auto; + width: 20%; +} .row-cols-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.6666666667%; +} .col-auto { flex: 0 0 auto; width: auto; - max-width: 100%; } +} .col-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } + flex: 0 0 auto; + width: 8.33333333%; +} .col-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.66666667%; +} .col-3 { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; +} .col-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.33333333%; +} .col-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } + flex: 0 0 auto; + width: 41.66666667%; +} .col-6 { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; +} .col-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } + flex: 0 0 auto; + width: 58.33333333%; +} .col-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } + flex: 0 0 auto; + width: 66.66666667%; +} .col-9 { - flex: 0 0 75%; - max-width: 75%; } + flex: 0 0 auto; + width: 75%; +} .col-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } + flex: 0 0 auto; + width: 83.33333333%; +} .col-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } + flex: 0 0 auto; + width: 91.66666667%; +} .col-12 { - flex: 0 0 100%; - max-width: 100%; } - -.order-first { - order: -1; } - -.order-last { - order: 13; } - -.order-0 { - order: 0; } + flex: 0 0 auto; + width: 100%; +} -.order-1 { - order: 1; } +.offset-1 { + margin-left: 8.33333333%; +} -.order-2 { - order: 2; } +.offset-2 { + margin-left: 16.66666667%; +} -.order-3 { - order: 3; } +.offset-3 { + margin-left: 25%; +} -.order-4 { - order: 4; } +.offset-4 { + margin-left: 33.33333333%; +} -.order-5 { - order: 5; } +.offset-5 { + margin-left: 41.66666667%; +} -.order-6 { - order: 6; } +.offset-6 { + margin-left: 50%; +} -.order-7 { - order: 7; } +.offset-7 { + margin-left: 58.33333333%; +} -.order-8 { - order: 8; } +.offset-8 { + margin-left: 66.66666667%; +} -.order-9 { - order: 9; } +.offset-9 { + margin-left: 75%; +} -.order-10 { - order: 10; } +.offset-10 { + margin-left: 83.33333333%; +} -.order-11 { - order: 11; } +.offset-11 { + margin-left: 91.66666667%; +} -.order-12 { - order: 12; } +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} -.offset-1 { - margin-left: 8.33333%; } +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} -.offset-2 { - margin-left: 16.66667%; } +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} -.offset-3 { - margin-left: 25%; } +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} -.offset-4 { - margin-left: 33.33333%; } +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} -.offset-5 { - margin-left: 41.66667%; } +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} -.offset-6 { - margin-left: 50%; } +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} -.offset-7 { - margin-left: 58.33333%; } +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} -.offset-8 { - margin-left: 66.66667%; } +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} -.offset-9 { - margin-left: 75%; } +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} -.offset-10 { - margin-left: 83.33333%; } +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} -.offset-11 { - margin-left: 91.66667%; } +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} @media (min-width: 576px) { .col-sm { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } + flex: 1 0 0%; + } + + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; } + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; } + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-sm-auto { flex: 0 0 auto; width: auto; - max-width: 100%; } + } + .col-sm-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; } + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-sm-first { - order: -1; } - .order-sm-last { - order: 13; } - .order-sm-0 { - order: 0; } - .order-sm-1 { - order: 1; } - .order-sm-2 { - order: 2; } - .order-sm-3 { - order: 3; } - .order-sm-4 { - order: 4; } - .order-sm-5 { - order: 5; } - .order-sm-6 { - order: 6; } - .order-sm-7 { - order: 7; } - .order-sm-8 { - order: 8; } - .order-sm-9 { - order: 9; } - .order-sm-10 { - order: 10; } - .order-sm-11 { - order: 11; } - .order-sm-12 { - order: 12; } + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { - margin-left: 0; } + margin-left: 0; + } + .offset-sm-1 { - margin-left: 8.33333%; } + margin-left: 8.33333333%; + } + .offset-sm-2 { - margin-left: 16.66667%; } + margin-left: 16.66666667%; + } + .offset-sm-3 { - margin-left: 25%; } + margin-left: 25%; + } + .offset-sm-4 { - margin-left: 33.33333%; } + margin-left: 33.33333333%; + } + .offset-sm-5 { - margin-left: 41.66667%; } + margin-left: 41.66666667%; + } + .offset-sm-6 { - margin-left: 50%; } + margin-left: 50%; + } + .offset-sm-7 { - margin-left: 58.33333%; } + margin-left: 58.33333333%; + } + .offset-sm-8 { - margin-left: 66.66667%; } + margin-left: 66.66666667%; + } + .offset-sm-9 { - margin-left: 75%; } + margin-left: 75%; + } + .offset-sm-10 { - margin-left: 83.33333%; } + margin-left: 83.33333333%; + } + .offset-sm-11 { - margin-left: 91.66667%; } } + margin-left: 91.66666667%; + } + + .g-sm-0, +.gx-sm-0 { + --bs-gutter-x: 0; + } + + .g-sm-0, +.gy-sm-0 { + --bs-gutter-y: 0; + } + + .g-sm-1, +.gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + + .g-sm-1, +.gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + + .g-sm-2, +.gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + + .g-sm-2, +.gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + + .g-sm-3, +.gx-sm-3 { + --bs-gutter-x: 1rem; + } + + .g-sm-3, +.gy-sm-3 { + --bs-gutter-y: 1rem; + } + + .g-sm-4, +.gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + + .g-sm-4, +.gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + + .g-sm-5, +.gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, +.gy-sm-5 { + --bs-gutter-y: 3rem; + } +} @media (min-width: 768px) { .col-md { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; } + flex: 1 0 0%; + } + + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; } + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-md-auto { flex: 0 0 auto; width: auto; - max-width: 100%; } + } + .col-md-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { - flex: 0 0 75%; - max-width: 75%; } + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-md-first { - order: -1; } - .order-md-last { - order: 13; } - .order-md-0 { - order: 0; } - .order-md-1 { - order: 1; } - .order-md-2 { - order: 2; } - .order-md-3 { - order: 3; } - .order-md-4 { - order: 4; } - .order-md-5 { - order: 5; } - .order-md-6 { - order: 6; } - .order-md-7 { - order: 7; } - .order-md-8 { - order: 8; } - .order-md-9 { - order: 9; } - .order-md-10 { - order: 10; } - .order-md-11 { - order: 11; } - .order-md-12 { - order: 12; } + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { - margin-left: 0; } + margin-left: 0; + } + .offset-md-1 { - margin-left: 8.33333%; } + margin-left: 8.33333333%; + } + .offset-md-2 { - margin-left: 16.66667%; } + margin-left: 16.66666667%; + } + .offset-md-3 { - margin-left: 25%; } + margin-left: 25%; + } + .offset-md-4 { - margin-left: 33.33333%; } + margin-left: 33.33333333%; + } + .offset-md-5 { - margin-left: 41.66667%; } + margin-left: 41.66666667%; + } + .offset-md-6 { - margin-left: 50%; } + margin-left: 50%; + } + .offset-md-7 { - margin-left: 58.33333%; } + margin-left: 58.33333333%; + } + .offset-md-8 { - margin-left: 66.66667%; } + margin-left: 66.66666667%; + } + .offset-md-9 { - margin-left: 75%; } + margin-left: 75%; + } + .offset-md-10 { - margin-left: 83.33333%; } + margin-left: 83.33333333%; + } + .offset-md-11 { - margin-left: 91.66667%; } } + margin-left: 91.66666667%; + } + + .g-md-0, +.gx-md-0 { + --bs-gutter-x: 0; + } + + .g-md-0, +.gy-md-0 { + --bs-gutter-y: 0; + } + + .g-md-1, +.gx-md-1 { + --bs-gutter-x: 0.25rem; + } + + .g-md-1, +.gy-md-1 { + --bs-gutter-y: 0.25rem; + } + + .g-md-2, +.gx-md-2 { + --bs-gutter-x: 0.5rem; + } + + .g-md-2, +.gy-md-2 { + --bs-gutter-y: 0.5rem; + } + + .g-md-3, +.gx-md-3 { + --bs-gutter-x: 1rem; + } + + .g-md-3, +.gy-md-3 { + --bs-gutter-y: 1rem; + } + + .g-md-4, +.gx-md-4 { + --bs-gutter-x: 1.5rem; + } + + .g-md-4, +.gy-md-4 { + --bs-gutter-y: 1.5rem; + } + + .g-md-5, +.gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, +.gy-md-5 { + --bs-gutter-y: 3rem; + } +} @media (min-width: 992px) { .col-lg { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } + flex: 1 0 0%; + } + + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; } + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; } + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-lg-auto { flex: 0 0 auto; width: auto; - max-width: 100%; } + } + .col-lg-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; } + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-lg-first { - order: -1; } - .order-lg-last { - order: 13; } - .order-lg-0 { - order: 0; } - .order-lg-1 { - order: 1; } - .order-lg-2 { - order: 2; } - .order-lg-3 { - order: 3; } - .order-lg-4 { - order: 4; } - .order-lg-5 { - order: 5; } - .order-lg-6 { - order: 6; } - .order-lg-7 { - order: 7; } - .order-lg-8 { - order: 8; } - .order-lg-9 { - order: 9; } - .order-lg-10 { - order: 10; } - .order-lg-11 { - order: 11; } - .order-lg-12 { - order: 12; } + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { - margin-left: 0; } + margin-left: 0; + } + .offset-lg-1 { - margin-left: 8.33333%; } + margin-left: 8.33333333%; + } + .offset-lg-2 { - margin-left: 16.66667%; } + margin-left: 16.66666667%; + } + .offset-lg-3 { - margin-left: 25%; } + margin-left: 25%; + } + .offset-lg-4 { - margin-left: 33.33333%; } + margin-left: 33.33333333%; + } + .offset-lg-5 { - margin-left: 41.66667%; } + margin-left: 41.66666667%; + } + .offset-lg-6 { - margin-left: 50%; } + margin-left: 50%; + } + .offset-lg-7 { - margin-left: 58.33333%; } + margin-left: 58.33333333%; + } + .offset-lg-8 { - margin-left: 66.66667%; } + margin-left: 66.66666667%; + } + .offset-lg-9 { - margin-left: 75%; } + margin-left: 75%; + } + .offset-lg-10 { - margin-left: 83.33333%; } + margin-left: 83.33333333%; + } + .offset-lg-11 { - margin-left: 91.66667%; } } + margin-left: 91.66666667%; + } + + .g-lg-0, +.gx-lg-0 { + --bs-gutter-x: 0; + } + + .g-lg-0, +.gy-lg-0 { + --bs-gutter-y: 0; + } + + .g-lg-1, +.gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + + .g-lg-1, +.gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + + .g-lg-2, +.gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + + .g-lg-2, +.gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + + .g-lg-3, +.gx-lg-3 { + --bs-gutter-x: 1rem; + } + + .g-lg-3, +.gy-lg-3 { + --bs-gutter-y: 1rem; + } + + .g-lg-4, +.gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + + .g-lg-4, +.gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + + .g-lg-5, +.gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, +.gy-lg-5 { + --bs-gutter-y: 3rem; + } +} @media (min-width: 1200px) { .col-xl { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } + flex: 1 0 0%; + } + + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; } + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; } + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xl-auto { flex: 0 0 auto; width: auto; - max-width: 100%; } + } + .col-xl-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; } + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; } + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; } + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-xl-first { - order: -1; } - .order-xl-last { - order: 13; } - .order-xl-0 { - order: 0; } - .order-xl-1 { - order: 1; } - .order-xl-2 { - order: 2; } - .order-xl-3 { - order: 3; } - .order-xl-4 { - order: 4; } - .order-xl-5 { - order: 5; } - .order-xl-6 { - order: 6; } - .order-xl-7 { - order: 7; } - .order-xl-8 { - order: 8; } - .order-xl-9 { - order: 9; } - .order-xl-10 { - order: 10; } - .order-xl-11 { - order: 11; } - .order-xl-12 { - order: 12; } + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { - margin-left: 0; } + margin-left: 0; + } + .offset-xl-1 { - margin-left: 8.33333%; } + margin-left: 8.33333333%; + } + .offset-xl-2 { - margin-left: 16.66667%; } + margin-left: 16.66666667%; + } + .offset-xl-3 { - margin-left: 25%; } + margin-left: 25%; + } + .offset-xl-4 { - margin-left: 33.33333%; } + margin-left: 33.33333333%; + } + .offset-xl-5 { - margin-left: 41.66667%; } + margin-left: 41.66666667%; + } + .offset-xl-6 { - margin-left: 50%; } + margin-left: 50%; + } + .offset-xl-7 { - margin-left: 58.33333%; } - .offset-xl-8 { - margin-left: 66.66667%; } - .offset-xl-9 { - margin-left: 75%; } - .offset-xl-10 { - margin-left: 83.33333%; } - .offset-xl-11 { - margin-left: 91.66667%; } } + margin-left: 58.33333333%; + } -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529; } - .table th, - .table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; } - .table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; } - .table tbody + tbody { - border-top: 2px solid #dee2e6; } + .offset-xl-8 { + margin-left: 66.66666667%; + } -.table-sm th, -.table-sm td { - padding: 0.3rem; } + .offset-xl-9 { + margin-left: 75%; + } -.table-bordered { - border: 1px solid #dee2e6; } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6; } - .table-bordered thead th, - .table-bordered thead td { - border-bottom-width: 2px; } + .offset-xl-10 { + margin-left: 83.33333333%; + } -.table-borderless th, -.table-borderless td, -.table-borderless thead th, -.table-borderless tbody + tbody { - border: 0; } + .offset-xl-11 { + margin-left: 91.66666667%; + } -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); } + .g-xl-0, +.gx-xl-0 { + --bs-gutter-x: 0; + } -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, 0.075); } + .g-xl-0, +.gy-xl-0 { + --bs-gutter-y: 0; + } -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; } + .g-xl-1, +.gx-xl-1 { + --bs-gutter-x: 0.25rem; + } -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #7abaff; } + .g-xl-1, +.gy-xl-1 { + --bs-gutter-y: 0.25rem; + } -.table-hover .table-primary:hover { - background-color: #9fcdff; } - .table-hover .table-primary:hover > td, - .table-hover .table-primary:hover > th { - background-color: #9fcdff; } + .g-xl-2, +.gx-xl-2 { + --bs-gutter-x: 0.5rem; + } -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; } + .g-xl-2, +.gy-xl-2 { + --bs-gutter-y: 0.5rem; + } -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #b3b7bb; } + .g-xl-3, +.gx-xl-3 { + --bs-gutter-x: 1rem; + } -.table-hover .table-secondary:hover { - background-color: #c8cbcf; } - .table-hover .table-secondary:hover > td, - .table-hover .table-secondary:hover > th { - background-color: #c8cbcf; } + .g-xl-3, +.gy-xl-3 { + --bs-gutter-y: 1rem; + } -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; } + .g-xl-4, +.gx-xl-4 { + --bs-gutter-x: 1.5rem; + } -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #8fd19e; } + .g-xl-4, +.gy-xl-4 { + --bs-gutter-y: 1.5rem; + } -.table-hover .table-success:hover { - background-color: #b1dfbb; } - .table-hover .table-success:hover > td, - .table-hover .table-success:hover > th { - background-color: #b1dfbb; } + .g-xl-5, +.gx-xl-5 { + --bs-gutter-x: 3rem; + } -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; } + .g-xl-5, +.gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #86cfda; } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } -.table-hover .table-info:hover { - background-color: #abdde5; } - .table-hover .table-info:hover > td, - .table-hover .table-info:hover > th { - background-color: #abdde5; } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } -.table-hover .table-warning:hover { - background-color: #ffe8a1; } - .table-hover .table-warning:hover > td, - .table-hover .table-warning:hover > th { - background-color: #ffe8a1; } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #ed969e; } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } -.table-hover .table-danger:hover { - background-color: #f1b0b7; } - .table-hover .table-danger:hover > td, - .table-hover .table-danger:hover > th { - background-color: #f1b0b7; } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #fbfcfc; } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } -.table-hover .table-light:hover { - background-color: #ececf6; } - .table-hover .table-light:hover > td, - .table-hover .table-light:hover > th { - background-color: #ececf6; } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #95999c; } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } -.table-hover .table-dark:hover { - background-color: #b9bbbe; } - .table-hover .table-dark:hover > td, - .table-hover .table-dark:hover > th { - background-color: #b9bbbe; } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); } - .table-hover .table-active:hover > td, - .table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55; } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } -.table-dark { - color: #fff; - background-color: #343a40; } - .table-dark th, - .table-dark td, - .table-dark thead th { - border-color: #454d55; } - .table-dark.table-bordered { - border: 0; } - .table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); } - .table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, 0.075); } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; + .col-xxl-12 { + flex: 0 0 auto; width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-sm > .table-bordered { - border: 0; } } + } -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-md > .table-bordered { - border: 0; } } + .offset-xxl-0 { + margin-left: 0; + } -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-lg > .table-bordered { - border: 0; } } + .offset-xxl-1 { + margin-left: 8.33333333%; + } -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-xl > .table-bordered { - border: 0; } } + .offset-xxl-2 { + margin-left: 16.66666667%; + } -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive > .table-bordered { - border: 0; } + .offset-xxl-3 { + margin-left: 25%; + } -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; } } - .form-control::-ms-expand { - background-color: transparent; - border: 0; } - .form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - -input[type=\\"date\\"].form-control, -input[type=\\"time\\"].form-control, -input[type=\\"datetime-local\\"].form-control, -input[type=\\"month\\"].form-control { - appearance: none; } + .offset-xxl-4 { + margin-left: 33.33333333%; + } -select.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; } + .offset-xxl-5 { + margin-left: 41.66666667%; + } -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; } + .offset-xxl-6 { + margin-left: 50%; + } -.form-control-file, -.form-control-range { - display: block; - width: 100%; } + .offset-xxl-7 { + margin-left: 58.33333333%; + } -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } + .offset-xxl-8 { + margin-left: 66.66666667%; + } -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; } + .offset-xxl-9 { + margin-left: 75%; + } -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; } + .offset-xxl-10 { + margin-left: 83.33333333%; + } -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } + .offset-xxl-11 { + margin-left: 91.66666667%; + } -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } + .g-xxl-0, +.gx-xxl-0 { + --bs-gutter-x: 0; + } -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } + .g-xxl-0, +.gy-xxl-0 { + --bs-gutter-y: 0; + } -select.form-control[size], select.form-control[multiple] { - height: auto; } + .g-xxl-1, +.gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } -textarea.form-control { - height: auto; } + .g-xxl-1, +.gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } -.form-group { - margin-bottom: 1rem; } + .g-xxl-2, +.gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } -.form-text { - display: block; - margin-top: 0.25rem; } + .g-xxl-2, +.gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } -.form-row { - display: flex; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; } - .form-row > .col, - .form-row > [class*=\\"col-\\"] { - padding-right: 5px; - padding-left: 5px; } + .g-xxl-3, +.gx-xxl-3 { + --bs-gutter-x: 1rem; + } -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; } + .g-xxl-3, +.gy-xxl-3 { + --bs-gutter-y: 1rem; + } -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; } - .form-check-input[disabled] ~ .form-check-label, - .form-check-input:disabled ~ .form-check-label { - color: #6c757d; } + .g-xxl-4, +.gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } -.form-check-label { - margin-bottom: 0; } + .g-xxl-4, +.gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } -.form-check-inline { - display: inline-flex; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; } - .form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; } + .g-xxl-5, +.gx-xxl-5 { + --bs-gutter-x: 3rem; + } -.valid-feedback { - display: none; + .g-xxl-5, +.gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.table { + --bs-table-bg: transparent; + --bs-table-accent-bg: transparent; + --bs-table-striped-color: #212529; + --bs-table-striped-bg: rgba(0, 0, 0, 0.05); + --bs-table-active-color: #212529; + --bs-table-active-bg: rgba(0, 0, 0, 0.1); + --bs-table-hover-color: #212529; + --bs-table-hover-bg: rgba(0, 0, 0, 0.075); width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; } - -.valid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, 0.9); - border-radius: 0.25rem; } - .form-row > .col > .valid-tooltip, - .form-row > [class*=\\"col-\\"] > .valid-tooltip { - left: 5px; } - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; } + margin-bottom: 1rem; + color: #212529; + vertical-align: top; + border-color: #dee2e6; +} +.table > :not(caption) > * > * { + padding: 0.5rem 0.5rem; + background-color: var(--bs-table-bg); + border-bottom-width: 1px; + box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); +} +.table > tbody { + vertical-align: inherit; +} +.table > thead { + vertical-align: bottom; +} +.table > :not(:first-child) { + border-top: 2px solid currentColor; +} -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #28a745; - padding-right: calc(1.5em + 0.75rem) !important; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } +.caption-top { + caption-side: top; +} -.was-validated select.form-control:valid, select.form-control.is-valid { - padding-right: 3rem !important; - background-position: right 1.5rem center; } +.table-sm > :not(caption) > * > * { + padding: 0.25rem 0.25rem; +} -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #28a745; - padding-right: calc(0.75em + 2.3125rem) !important; - background: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\\") right 0.75rem center/8px 10px no-repeat, #fff url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; } - .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; } - -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; } - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; } - .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #28a745; } - -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57; } - -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } - -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #28a745; } +.table-bordered > :not(caption) > * { + border-width: 1px 0; +} +.table-bordered > :not(caption) > * > * { + border-width: 0 1px; +} -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; } +.table-borderless > :not(caption) > * > * { + border-bottom-width: 0; +} +.table-borderless > :not(:first-child) { + border-top-width: 0; +} -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } +.table-striped > tbody > tr:nth-of-type(odd) > * { + --bs-table-accent-bg: var(--bs-table-striped-bg); + color: var(--bs-table-striped-color); +} -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; } +.table-active { + --bs-table-accent-bg: var(--bs-table-active-bg); + color: var(--bs-table-active-color); +} -.invalid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - .form-row > .col > .invalid-tooltip, - .form-row > [class*=\\"col-\\"] > .invalid-tooltip { - left: 5px; } +.table-hover > tbody > tr:hover > * { + --bs-table-accent-bg: var(--bs-table-hover-bg); + color: var(--bs-table-hover-color); +} -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; } +.table-primary { + --bs-table-bg: #cfe2ff; + --bs-table-striped-bg: #c5d7f2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bacbe6; + --bs-table-active-color: #000; + --bs-table-hover-bg: #bfd1ec; + --bs-table-hover-color: #000; + color: #000; + border-color: #bacbe6; +} -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem) !important; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } +.table-secondary { + --bs-table-bg: #e2e3e5; + --bs-table-striped-bg: #d7d8da; + --bs-table-striped-color: #000; + --bs-table-active-bg: #cbccce; + --bs-table-active-color: #000; + --bs-table-hover-bg: #d1d2d4; + --bs-table-hover-color: #000; + color: #000; + border-color: #cbccce; +} -.was-validated select.form-control:invalid, select.form-control.is-invalid { - padding-right: 3rem !important; - background-position: right 1.5rem center; } +.table-success { + --bs-table-bg: #d1e7dd; + --bs-table-striped-bg: #c7dbd2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bcd0c7; + --bs-table-active-color: #000; + --bs-table-hover-bg: #c1d6cc; + --bs-table-hover-color: #000; + color: #000; + border-color: #bcd0c7; +} -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } +.table-info { + --bs-table-bg: #cff4fc; + --bs-table-striped-bg: #c5e8ef; + --bs-table-striped-color: #000; + --bs-table-active-bg: #badce3; + --bs-table-active-color: #000; + --bs-table-hover-bg: #bfe2e9; + --bs-table-hover-color: #000; + color: #000; + border-color: #badce3; +} -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem) !important; - background: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\\") right 0.75rem center/8px 10px no-repeat, #fff url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; } - .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } +.table-warning { + --bs-table-bg: #fff3cd; + --bs-table-striped-bg: #f2e7c3; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e6dbb9; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ece1be; + --bs-table-hover-color: #000; + color: #000; + border-color: #e6dbb9; +} -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } +.table-danger { + --bs-table-bg: #f8d7da; + --bs-table-striped-bg: #eccccf; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dfc2c4; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e5c7ca; + --bs-table-hover-color: #000; + color: #000; + border-color: #dfc2c4; +} -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; } +.table-light { + --bs-table-bg: #f8f9fa; + --bs-table-striped-bg: #ecedee; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dfe0e1; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e5e6e7; + --bs-table-hover-color: #000; + color: #000; + border-color: #dfe0e1; +} -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; } - .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #dc3545; } +.table-dark { + --bs-table-bg: #212529; + --bs-table-striped-bg: #2c3034; + --bs-table-striped-color: #fff; + --bs-table-active-bg: #373b3e; + --bs-table-active-color: #fff; + --bs-table-hover-bg: #323539; + --bs-table-hover-color: #fff; + color: #fff; + border-color: #373b3e; +} -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d; } +.table-responsive { + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } +@media (max-width: 575.98px) { + .table-responsive-sm { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 767.98px) { + .table-responsive-md { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 991.98px) { + .table-responsive-lg { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 1199.98px) { + .table-responsive-xl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 1399.98px) { + .table-responsive-xxl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +.form-label { + margin-bottom: 0.5rem; +} -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #dc3545; } +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; } +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; +} -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; +} -.form-inline { - display: flex; - flex-flow: row wrap; - align-items: center; } - .form-inline .form-check { - width: 100%; } - @media (min-width: 576px) { - .form-inline label { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 0; } - .form-inline .form-group { - display: flex; - flex: 0 0 auto; - flex-flow: row wrap; - align-items: center; - margin-bottom: 0; } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .form-inline .form-control-plaintext { - display: inline-block; } - .form-inline .input-group, - .form-inline .custom-select { - width: auto; } - .form-inline .form-check { - display: flex; - align-items: center; - justify-content: center; - width: auto; - padding-left: 0; } - .form-inline .form-check-input { - position: relative; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; } - .form-inline .custom-control { - align-items: center; - justify-content: center; } - .form-inline .custom-control-label { - margin-bottom: 0; } } +.form-text { + margin-top: 0.25rem; + font-size: 0.875em; + color: #6c757d; +} -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - user-select: none; - background-color: transparent; - border: 1px solid transparent; +.form-control { + display: block; + width: 100%; padding: 0.375rem 0.75rem; font-size: 1rem; + font-weight: 400; line-height: 1.5; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .btn { - transition: none; } } - .btn:hover { - color: #212529; - text-decoration: none; } - .btn:focus, .btn.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .btn.disabled, .btn:disabled { - opacity: 0.65; } - .btn:not(:disabled):not(.disabled) { - cursor: pointer; } - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; } - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; } - .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, - .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; } - .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, - .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; } - .btn-secondary:focus, .btn-secondary.focus { - color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } - .btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, - .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; } - .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, - .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; } - .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #218838; - border-color: #1e7e34; - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } - .btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, - .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; } - .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, - .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; } - .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #138496; - border-color: #117a8b; - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } - .btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, - .show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; } - .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, - .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } - -.btn-warning { color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; } - .btn-warning:focus, .btn-warning.focus { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } - .btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, - .show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; } - .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, - .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; } - .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c82333; - border-color: #bd2130; - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } - .btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, - .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; } - .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, - .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } - -.btn-light { + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + appearance: none; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} +.form-control[type=file] { + overflow: hidden; +} +.form-control[type=file]:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control:focus { color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; } - .btn-light:focus, .btn-light.focus { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } - .btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, - .show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; } - .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, - .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; } - .btn-dark:focus, .btn-dark.focus { - color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } - .btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, - .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; } - .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, - .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } - -.btn-outline-primary { - color: #007bff; - border-color: #007bff; } - .btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-outline-primary:focus, .btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } - .btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; } - .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, - .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } - -.btn-outline-secondary { + background-color: #fff; + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-control::-webkit-date-and-time-value { + height: 1.5em; +} +.form-control::placeholder { color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:focus, .btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } - .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; } - .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, - .show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } - -.btn-outline-success { - color: #28a745; - border-color: #28a745; } - .btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-outline-success:focus, .btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } - .btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; } - .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, - .show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:focus, .btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } - .btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; } - .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, - .show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:focus, .btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } - .btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; } - .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, - .show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:focus, .btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } - .btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; } - .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, - .show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:focus, .btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } - .btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; } - .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, - .show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } - -.btn-outline-dark { - color: #343a40; - border-color: #343a40; } - .btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-outline-dark:focus, .btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } - .btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; } - .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, - .show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } - -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none; } - .btn-link:hover { - color: #0056b3; - text-decoration: underline; } - .btn-link:focus, .btn-link.focus { - text-decoration: underline; } - .btn-link:disabled, .btn-link.disabled { - color: #6c757d; - pointer-events: none; } + opacity: 1; +} +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} +.form-control::file-selector-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: #212529; + background-color: #e9ecef; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control::file-selector-button { + transition: none; + } +} +.form-control:hover:not(:disabled):not([readonly])::file-selector-button { + background-color: #dde0e3; +} +.form-control::-webkit-file-upload-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: #212529; + background-color: #e9ecef; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control::-webkit-file-upload-button { + transition: none; + } +} +.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { + background-color: #dde0e3; +} -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; line-height: 1.5; - border-radius: 0.3rem; } + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} -.btn-sm, .btn-group-sm > .btn { +.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } - -.btn-block { - display: block; - width: 100%; } - .btn-block + .btn-block { - margin-top: 0.5rem; } - -input[type=\\"submit\\"].btn-block, -input[type=\\"reset\\"].btn-block, -input[type=\\"button\\"].btn-block { - width: 100%; } - -.fade { - transition: opacity 0.15s linear; } - @media (prefers-reduced-motion: reduce) { - .fade { - transition: none; } } - .fade:not(.show) { - opacity: 0; } - -.collapse:not(.show) { - display: none; } + border-radius: 0.2rem; +} +.form-control-sm::file-selector-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; +} +.form-control-sm::-webkit-file-upload-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; +} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; } - @media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; } } +.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.form-control-lg::file-selector-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; +} +.form-control-lg::-webkit-file-upload-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; +} -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; } +textarea.form-control { + min-height: calc(1.5em + 0.75rem + 2px); +} +textarea.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); +} +textarea.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); +} -.dropdown-toggle { - white-space: nowrap; } - .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .dropdown-toggle:empty::after { - margin-left: 0; } +.form-control-color { + width: 3rem; + height: auto; + padding: 0.375rem; +} +.form-control-color:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control-color::-moz-color-swatch { + height: 1.5em; + border-radius: 0.25rem; +} +.form-control-color::-webkit-color-swatch { + height: 1.5em; + border-radius: 0.25rem; +} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; +.form-select { + display: block; + width: 100%; + padding: 0.375rem 2.25rem 0.375rem 0.75rem; + -moz-padding-start: calc(0.75rem - 3px); font-size: 1rem; + font-weight: 400; + line-height: 1.5; color: #212529; - text-align: left; - list-style: none; background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - -.dropdown-menu-left { - right: auto; - left: 0; } - -.dropdown-menu-right { - right: 0; - left: auto; } - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; } - .dropdown-menu-sm-right { - right: 0; - left: auto; } } - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; } - .dropdown-menu-md-right { - right: 0; - left: auto; } } - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; } - .dropdown-menu-lg-right { - right: 0; - left: auto; } } - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; } - .dropdown-menu-xl-right { - right: 0; - left: auto; } } - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"); + background-repeat: no-repeat; + background-position: right 0.75rem center; + background-size: 16px 12px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .form-select { + transition: none; + } +} +.form-select:focus { + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-select[multiple], .form-select[size]:not([size=\\"1\\"]) { + padding-right: 0.75rem; + background-image: none; +} +.form-select:disabled { + background-color: #e9ecef; +} +.form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #212529; +} -.dropright .dropdown-toggle:empty::after { - margin-left: 0; } +.form-select-sm { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} -.dropright .dropdown-toggle::after { - vertical-align: 0; } +.form-select-lg { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } +.form-check { + display: block; + min-height: 1.5rem; + padding-left: 1.5em; + margin-bottom: 0.125rem; +} +.form-check .form-check-input { + float: left; + margin-left: -1.5em; +} -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; } +.form-check-input { + width: 1em; + height: 1em; + margin-top: 0.25em; + vertical-align: top; + background-color: #fff; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: 1px solid rgba(0, 0, 0, 0.25); + appearance: none; + color-adjust: exact; +} +.form-check-input[type=checkbox] { + border-radius: 0.25em; +} +.form-check-input[type=radio] { + border-radius: 50%; +} +.form-check-input:active { + filter: brightness(90%); +} +.form-check-input:focus { + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-check-input:checked { + background-color: #0d6efd; + border-color: #0d6efd; +} +.form-check-input:checked[type=checkbox] { + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\\"); +} +.form-check-input:checked[type=radio] { + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\\"); +} +.form-check-input[type=checkbox]:indeterminate { + background-color: #0d6efd; + border-color: #0d6efd; + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\\"); +} +.form-check-input:disabled { + pointer-events: none; + filter: none; + opacity: 0.5; +} +.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { + opacity: 0.5; +} -.dropleft .dropdown-toggle::after { - display: none; } +.form-switch { + padding-left: 2.5em; +} +.form-switch .form-check-input { + width: 2em; + margin-left: -2.5em; + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\\"); + background-position: left center; + border-radius: 2em; + transition: background-position 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-switch .form-check-input { + transition: none; + } +} +.form-switch .form-check-input:focus { + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\\"); +} +.form-switch .form-check-input:checked { + background-position: right center; + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\\"); +} -.dropleft .dropdown-toggle::before { +.form-check-inline { display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropleft .dropdown-toggle::before { - vertical-align: 0; } - -.dropdown-menu[x-placement^=\\"top\\"], .dropdown-menu[x-placement^=\\"right\\"], .dropdown-menu[x-placement^=\\"bottom\\"], .dropdown-menu[x-placement^=\\"left\\"] { - right: auto; - bottom: auto; } + margin-right: 1rem; +} -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; } +.btn-check { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.btn-check[disabled] + .btn, .btn-check:disabled + .btn { + pointer-events: none; + filter: none; + opacity: 0.65; +} -.dropdown-item { - display: block; +.form-range { width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; + height: 1.5rem; + padding: 0; background-color: transparent; - border: 0; } - .dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #e9ecef; } - .dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; } - .dropdown-item.disabled, .dropdown-item:disabled { - color: #adb5bd; - pointer-events: none; - background-color: transparent; } - -.dropdown-menu.show { - display: block; } - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; } + appearance: none; +} +.form-range:focus { + outline: 0; +} +.form-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-range::-moz-focus-outer { + border: 0; +} +.form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #0d6efd; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-webkit-slider-thumb { + transition: none; + } +} +.form-range::-webkit-slider-thumb:active { + background-color: #b6d4fe; +} +.form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #0d6efd; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-moz-range-thumb { + transition: none; + } +} +.form-range::-moz-range-thumb:active { + background-color: #b6d4fe; +} +.form-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.form-range:disabled { + pointer-events: none; +} +.form-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} +.form-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} -.btn-group, -.btn-group-vertical { +.form-floating { position: relative; - display: inline-flex; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .btn-group > .btn:hover, - .btn-group-vertical > .btn:hover { - z-index: 1; } - .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 1; } - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .btn-toolbar .input-group { - width: auto; } - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .dropdown-toggle-split::after, - .dropup .dropdown-toggle-split::after, - .dropright .dropdown-toggle-split::after { - margin-left: 0; } - .dropleft .dropdown-toggle-split::before { - margin-right: 0; } - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .btn-group-vertical > .btn, - .btn-group-vertical > .btn-group { - width: 100%; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; } - .btn-group-toggle > .btn input[type=\\"radio\\"], - .btn-group-toggle > .btn input[type=\\"checkbox\\"], - .btn-group-toggle > .btn-group > .btn input[type=\\"radio\\"], - .btn-group-toggle > .btn-group > .btn input[type=\\"checkbox\\"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } +} +.form-floating > .form-control, +.form-floating > .form-select { + height: calc(3.5rem + 2px); + line-height: 1.25; +} +.form-floating > label { + position: absolute; + top: 0; + left: 0; + height: 100%; + padding: 1rem 0.75rem; + pointer-events: none; + border: 1px solid transparent; + transform-origin: 0 0; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-floating > label { + transition: none; + } +} +.form-floating > .form-control { + padding: 1rem 0.75rem; +} +.form-floating > .form-control::placeholder { + color: transparent; +} +.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:-webkit-autofill { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-select { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:focus ~ label, +.form-floating > .form-control:not(:placeholder-shown) ~ label, +.form-floating > .form-select ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control:-webkit-autofill ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} .input-group { position: relative; display: flex; flex-wrap: wrap; align-items: stretch; - width: 100%; } - .input-group > .form-control, - .input-group > .form-control-plaintext, - .input-group > .custom-select, - .input-group > .custom-file { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0; } - .input-group > .form-control + .form-control, - .input-group > .form-control + .custom-select, - .input-group > .form-control + .custom-file, - .input-group > .form-control-plaintext + .form-control, - .input-group > .form-control-plaintext + .custom-select, - .input-group > .form-control-plaintext + .custom-file, - .input-group > .custom-select + .form-control, - .input-group > .custom-select + .custom-select, - .input-group > .custom-select + .custom-file, - .input-group > .custom-file + .form-control, - .input-group > .custom-file + .custom-select, - .input-group > .custom-file + .custom-file { - margin-left: -1px; } - .input-group > .form-control:focus, - .input-group > .custom-select:focus, - .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { - z-index: 3; } - .input-group > .custom-file .custom-file-input:focus { - z-index: 4; } - .input-group > .form-control:not(:first-child), - .input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .input-group > .custom-file { - display: flex; - align-items: center; } - .input-group > .custom-file:not(:last-child) .custom-file-label, - .input-group > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .input-group:not(.has-validation) > .form-control:not(:last-child), - .input-group:not(.has-validation) > .custom-select:not(:last-child), - .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label, - .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .input-group.has-validation > .form-control:nth-last-child(n + 3), - .input-group.has-validation > .custom-select:nth-last-child(n + 3), - .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label, - .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group-prepend, -.input-group-append { - display: flex; } - .input-group-prepend .btn, - .input-group-append .btn { - position: relative; - z-index: 2; } - .input-group-prepend .btn:focus, - .input-group-append .btn:focus { - z-index: 3; } - .input-group-prepend .btn + .btn, - .input-group-prepend .btn + .input-group-text, - .input-group-prepend .input-group-text + .input-group-text, - .input-group-prepend .input-group-text + .btn, - .input-group-append .btn + .btn, - .input-group-append .btn + .input-group-text, - .input-group-append .input-group-text + .input-group-text, - .input-group-append .input-group-text + .btn { - margin-left: -1px; } - -.input-group-prepend { - margin-right: -1px; } - -.input-group-append { - margin-left: -1px; } + width: 100%; +} +.input-group > .form-control, +.input-group > .form-select { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; +} +.input-group > .form-control:focus, +.input-group > .form-select:focus { + z-index: 3; +} +.input-group .btn { + position: relative; + z-index: 2; +} +.input-group .btn:focus { + z-index: 3; +} .input-group-text { display: flex; align-items: center; padding: 0.375rem 0.75rem; - margin-bottom: 0; font-size: 1rem; font-weight: 400; line-height: 1.5; - color: #495057; + color: #212529; text-align: center; white-space: nowrap; background-color: #e9ecef; border: 1px solid #ced4da; - border-radius: 0.25rem; } - .input-group-text input[type=\\"radio\\"], - .input-group-text input[type=\\"checkbox\\"] { - margin-top: 0; } - -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(1.5em + 1rem + 2px); } + border-radius: 0.25rem; +} .input-group-lg > .form-control, -.input-group-lg > .custom-select, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { +.input-group-lg > .form-select, +.input-group-lg > .input-group-text, +.input-group-lg > .btn { padding: 0.5rem 1rem; font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } - -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.5em + 0.5rem + 2px); } + border-radius: 0.3rem; +} .input-group-sm > .form-control, -.input-group-sm > .custom-select, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { +.input-group-sm > .form-select, +.input-group-sm > .input-group-text, +.input-group-sm > .btn { padding: 0.25rem 0.5rem; font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } + border-radius: 0.2rem; +} -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; } +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-right: 3rem; +} -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn, -.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text, -.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn, -.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { +.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) { border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-bottom-right-radius: 0; +} +.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu), +.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { + margin-left: -1px; border-top-left-radius: 0; - border-bottom-left-radius: 0; } + border-bottom-left-radius: 0; +} -.custom-control { - position: relative; - z-index: 1; +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #198754; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(25, 135, 84, 0.9); + border-radius: 0.25rem; +} + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { display: block; - min-height: 1.5rem; - padding-left: 1.5rem; - color-adjust: exact; } +} -.custom-control-inline { - display: inline-flex; - margin-right: 1rem; } +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #198754; + padding-right: calc(1.5em + 0.75rem); + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #198754; + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 1.25rem; - opacity: 0; } - .custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff; } - .custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #80bdff; } - .custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff; } - .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; } - .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; } +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; } - .custom-control-label::before { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: \\"\\"; - background-color: #fff; - border: #adb5bd solid 1px; } - .custom-control-label::after { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: \\"\\"; - background: 50% / 50% 50% no-repeat; } +.was-validated .form-select:valid, .form-select.is-valid { + border-color: #198754; +} +.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size=\\"1\\"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size=\\"1\\"] { + padding-right: 4.125rem; + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-select:valid:focus, .form-select.is-valid:focus { + border-color: #198754; + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; } +.was-validated .form-check-input:valid, .form-check-input.is-valid { + border-color: #198754; +} +.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { + background-color: #198754; +} +.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #198754; +} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e\\"); } +.form-check-inline .form-check-input ~ .valid-feedback { + margin-left: 0.5em; +} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - border-color: #007bff; - background-color: #007bff; } +.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, +.was-validated .input-group .form-select:valid, +.input-group .form-select.is-valid { + z-index: 1; +} +.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, +.was-validated .input-group .form-select:valid:focus, +.input-group .form-select.is-valid:focus { + z-index: 3; +} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e\\"); } +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #dc3545; +} -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; +} -.custom-radio .custom-control-label::before { - border-radius: 50%; } +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\\"); } +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } +.was-validated .form-select:invalid, .form-select.is-invalid { + border-color: #dc3545; +} +.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size=\\"1\\"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size=\\"1\\"] { + padding-right: 4.125rem; + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} -.custom-switch { - padding-left: 2.25rem; } - .custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; } - .custom-switch .custom-control-label::after { - top: calc(0.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; } } - .custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - transform: translateX(0.75rem); } - .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } +.was-validated .form-check-input:invalid, .form-check-input.is-invalid { + border-color: #dc3545; +} +.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { + background-color: #dc3545; +} +.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} -.custom-select { +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-left: 0.5em; +} + +.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, +.was-validated .input-group .form-select:invalid, +.input-group .form-select.is-invalid { + z-index: 2; +} +.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, +.was-validated .input-group .form-select:invalid:focus, +.input-group .form-select.is-invalid:focus { + z-index: 3; +} + +.btn { display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; font-weight: 400; line-height: 1.5; - color: #495057; + color: #212529; + text-align: center; + text-decoration: none; vertical-align: middle; - background: #fff url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\\") right 0.75rem center/8px 10px no-repeat; - border: 1px solid #ced4da; + cursor: pointer; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; border-radius: 0.25rem; - appearance: none; } - .custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; } - .custom-select[multiple], .custom-select[size]:not([size=\\"1\\"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; } - .custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; } - .custom-select::-ms-expand { - display: none; } - .custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; } - -.custom-select-sm { - height: calc(1.5em + 0.5rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; } + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} +.btn:hover { + color: #212529; +} +.btn-check:focus + .btn, .btn:focus { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.btn:disabled, .btn.disabled, fieldset:disabled .btn { + pointer-events: none; + opacity: 0.65; +} -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; } +.btn-primary { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-primary:hover { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; +} +.btn-check:focus + .btn-primary, .btn-primary:focus { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; + box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); +} +.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0a58ca; + border-color: #0a53be; +} +.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); +} +.btn-primary:disabled, .btn-primary.disabled { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin-bottom: 0; } +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-secondary:hover { + color: #fff; + background-color: #5c636a; + border-color: #565e64; +} +.btn-check:focus + .btn-secondary, .btn-secondary:focus { + color: #fff; + background-color: #5c636a; + border-color: #565e64; + box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); +} +.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #565e64; + border-color: #51585e; +} +.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); +} +.btn-secondary:disabled, .btn-secondary.disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin: 0; - overflow: hidden; - opacity: 0; } - .custom-file-input:focus ~ .custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-file-input[disabled] ~ .custom-file-label, - .custom-file-input:disabled ~ .custom-file-label { - background-color: #e9ecef; } - .custom-file-input:lang(en) ~ .custom-file-label::after { - content: \\"Browse\\"; } - .custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); } +.btn-success { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-success:hover { + color: #fff; + background-color: #157347; + border-color: #146c43; +} +.btn-check:focus + .btn-success, .btn-success:focus { + color: #fff; + background-color: #157347; + border-color: #146c43; + box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); +} +.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #146c43; + border-color: #13653f; +} +.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); +} +.btn-success:disabled, .btn-success.disabled { + color: #fff; + background-color: #198754; + border-color: #198754; +} -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - overflow: hidden; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + 0.75rem); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: \\"Browse\\"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 0.25rem 0.25rem 0; } +.btn-info { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-info:hover { + color: #000; + background-color: #31d2f2; + border-color: #25cff2; +} +.btn-check:focus + .btn-info, .btn-info:focus { + color: #000; + background-color: #31d2f2; + border-color: #25cff2; + box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); +} +.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle { + color: #000; + background-color: #3dd5f3; + border-color: #25cff2; +} +.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); +} +.btn-info:disabled, .btn-info.disabled { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - appearance: none; } - .custom-range:focus { - outline: 0; } - .custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range::-moz-focus-outer { - border: 0; } - .custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - transition: none; } } - .custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff; } - .custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - transition: none; } } - .custom-range::-moz-range-thumb:active { - background-color: #b3d7ff; } - .custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - transition: none; } } - .custom-range::-ms-thumb:active { - background-color: #b3d7ff; } - .custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; } - .custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem; } - .custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem; } - .custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; } - .custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - .custom-range:disabled::-moz-range-track { - cursor: default; } - .custom-range:disabled::-ms-thumb { - background-color: #adb5bd; } +.btn-warning { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-warning:hover { + color: #000; + background-color: #ffca2c; + border-color: #ffc720; +} +.btn-check:focus + .btn-warning, .btn-warning:focus { + color: #000; + background-color: #ffca2c; + border-color: #ffc720; + box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); +} +.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle { + color: #000; + background-color: #ffcd39; + border-color: #ffc720; +} +.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); +} +.btn-warning:disabled, .btn-warning.disabled { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none; } } +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-danger:hover { + color: #fff; + background-color: #bb2d3b; + border-color: #b02a37; +} +.btn-check:focus + .btn-danger, .btn-danger:focus { + color: #fff; + background-color: #bb2d3b; + border-color: #b02a37; + box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); +} +.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #b02a37; + border-color: #a52834; +} +.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); +} +.btn-danger:disabled, .btn-danger.disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } +.btn-light { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-light:hover { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; +} +.btn-check:focus + .btn-light, .btn-light:focus { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; + box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); +} +.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; +} +.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); +} +.btn-light:disabled, .btn-light.disabled { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} -.nav-link { - display: block; - padding: 0.5rem 1rem; } - .nav-link:hover, .nav-link:focus { - text-decoration: none; } - .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } +.btn-dark { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-dark:hover { + color: #fff; + background-color: #1c1f23; + border-color: #1a1e21; +} +.btn-check:focus + .btn-dark, .btn-dark:focus { + color: #fff; + background-color: #1c1f23; + border-color: #1a1e21; + box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); +} +.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1a1e21; + border-color: #191c1f; +} +.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); +} +.btn-dark:disabled, .btn-dark.disabled { + color: #fff; + background-color: #212529; + border-color: #212529; +} -.nav-tabs { - border-bottom: 1px solid #dee2e6; } - .nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; } - .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .nav-tabs .nav-link.active, - .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } +.btn-outline-primary { + color: #0d6efd; + border-color: #0d6efd; +} +.btn-outline-primary:hover { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); +} +.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); +} +.btn-outline-primary:disabled, .btn-outline-primary.disabled { + color: #0d6efd; + background-color: transparent; +} -.nav-pills .nav-link { - border-radius: 0.25rem; } +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus { + box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); +} +.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); +} +.btn-outline-secondary:disabled, .btn-outline-secondary.disabled { + color: #6c757d; + background-color: transparent; +} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { +.btn-outline-success { + color: #198754; + border-color: #198754; +} +.btn-outline-success:hover { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-check:focus + .btn-outline-success, .btn-outline-success:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); +} +.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show { color: #fff; - background-color: #007bff; } + background-color: #198754; + border-color: #198754; +} +.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); +} +.btn-outline-success:disabled, .btn-outline-success.disabled { + color: #198754; + background-color: transparent; +} -.nav-fill > .nav-link, -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } +.btn-outline-info { + color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-outline-info:hover { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-check:focus + .btn-outline-info, .btn-outline-info:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); +} +.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); +} +.btn-outline-info:disabled, .btn-outline-info.disabled { + color: #0dcaf0; + background-color: transparent; +} -.nav-justified > .nav-link, -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} +.btn-outline-warning:hover { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); +} +.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); +} +.btn-outline-warning:disabled, .btn-outline-warning.disabled { + color: #ffc107; + background-color: transparent; +} -.tab-content > .tab-pane { - display: none; } +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); +} +.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); +} +.btn-outline-danger:disabled, .btn-outline-danger.disabled { + color: #dc3545; + background-color: transparent; +} -.tab-content > .active { - display: block; } +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-outline-light:hover { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-check:focus + .btn-outline-light, .btn-outline-light:focus { + box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); +} +.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); +} +.btn-outline-light:disabled, .btn-outline-light.disabled { + color: #f8f9fa; + background-color: transparent; +} -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding: 0.5rem 1rem; } - .navbar .container, - .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; } +.btn-outline-dark { + color: #212529; + border-color: #212529; +} +.btn-outline-dark:hover { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus { + box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); +} +.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); +} +.btn-outline-dark:disabled, .btn-outline-dark.disabled { + color: #212529; + background-color: transparent; +} -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; +.btn-link { + font-weight: 400; + color: #0d6efd; + text-decoration: underline; +} +.btn-link:hover { + color: #0a58ca; +} +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; } - .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; } + border-radius: 0.3rem; +} -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .navbar-nav .dropdown-menu { - position: static; - float: none; } +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } +.fade { + transition: opacity 0.15s linear; +} +@media (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} +.fade:not(.show) { + opacity: 0; +} -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; } +.collapse:not(.show) { + display: none; +} -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; } - .navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; } +.collapsing { + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} +.collapsing.collapse-horizontal { + width: 0; + height: auto; + transition: width 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing.collapse-horizontal { + transition: none; + } +} -.navbar-toggler-icon { +.dropup, +.dropend, +.dropdown, +.dropstart { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} +.dropdown-toggle::after { display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; + margin-left: 0.255em; + vertical-align: 0.255em; content: \\"\\"; - background: 50% / 100% 100% no-repeat; } + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} +.dropdown-toggle:empty::after { + margin-left: 0; +} -.navbar-nav-scroll { - max-height: 75vh; - overflow-y: auto; } +.dropdown-menu { + position: absolute; + z-index: 1000; + display: none; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} +.dropdown-menu[data-bs-popper] { + top: 100%; + left: 0; + margin-top: 0.125rem; +} -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { - padding-right: 0; - padding-left: 0; } } +.dropdown-menu-start { + --bs-position: start; +} +.dropdown-menu-start[data-bs-popper] { + right: auto; + left: 0; +} -@media (min-width: 576px) { - .navbar-expand-sm { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-sm .navbar-toggler { - display: none; } } +.dropdown-menu-end { + --bs-position: end; +} +.dropdown-menu-end[data-bs-popper] { + right: 0; + left: auto; +} -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { - padding-right: 0; - padding-left: 0; } } +@media (min-width: 576px) { + .dropdown-menu-sm-start { + --bs-position: start; + } + .dropdown-menu-sm-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-sm-end { + --bs-position: end; + } + .dropdown-menu-sm-end[data-bs-popper] { + right: 0; + left: auto; + } +} @media (min-width: 768px) { - .navbar-expand-md { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-md .navbar-nav { - flex-direction: row; } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-md .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-md .navbar-toggler { - display: none; } } - -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { - padding-right: 0; - padding-left: 0; } } + .dropdown-menu-md-start { + --bs-position: start; + } + .dropdown-menu-md-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-md-end { + --bs-position: end; + } + .dropdown-menu-md-end[data-bs-popper] { + right: 0; + left: auto; + } +} @media (min-width: 992px) { - .navbar-expand-lg { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-lg .navbar-toggler { - display: none; } } - -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { - padding-right: 0; - padding-left: 0; } } + .dropdown-menu-lg-start { + --bs-position: start; + } + .dropdown-menu-lg-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-lg-end { + --bs-position: end; + } + .dropdown-menu-lg-end[data-bs-popper] { + right: 0; + left: auto; + } +} @media (min-width: 1200px) { - .navbar-expand-xl { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-xl .navbar-toggler { - display: none; } } - -.navbar-expand { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand > .container, - .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { - padding-right: 0; - padding-left: 0; } - .navbar-expand .navbar-nav { - flex-direction: row; } - .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand > .container, - .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { - flex-wrap: nowrap; } - .navbar-expand .navbar-nav-scroll { - overflow: visible; } - .navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand .navbar-toggler { - display: none; } - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); } - .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } + .dropdown-menu-xl-start { + --bs-position: start; + } + .dropdown-menu-xl-start[data-bs-popper] { + right: auto; + left: 0; + } -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } + .dropdown-menu-xl-end { + --bs-position: end; + } + .dropdown-menu-xl-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 1400px) { + .dropdown-menu-xxl-start { + --bs-position: start; + } + .dropdown-menu-xxl-start[data-bs-popper] { + right: auto; + left: 0; + } -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); } + .dropdown-menu-xxl-end { + --bs-position: end; + } + .dropdown-menu-xxl-end[data-bs-popper] { + right: 0; + left: auto; + } +} +.dropup .dropdown-menu[data-bs-popper] { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: \\"\\"; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} -.navbar-light .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } +.dropend .dropdown-menu[data-bs-popper] { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} +.dropend .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: \\"\\"; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} +.dropend .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropend .dropdown-toggle::after { + vertical-align: 0; +} + +.dropstart .dropdown-menu[data-bs-popper] { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: \\"\\"; +} +.dropstart .dropdown-toggle::after { + display: none; +} +.dropstart .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: \\"\\"; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} +.dropstart .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropstart .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid rgba(0, 0, 0, 0.15); +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border: 0; +} +.dropdown-item:hover, .dropdown-item:focus { + color: #1e2125; + background-color: #e9ecef; +} +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #0d6efd; +} +.dropdown-item.disabled, .dropdown-item:disabled { + color: #adb5bd; + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: 0.25rem 1rem; + color: #212529; +} + +.dropdown-menu-dark { + color: #dee2e6; + background-color: #343a40; + border-color: rgba(0, 0, 0, 0.15); +} +.dropdown-menu-dark .dropdown-item { + color: #dee2e6; +} +.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus { + color: #fff; + background-color: rgba(255, 255, 255, 0.15); +} +.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active { + color: #fff; + background-color: #0d6efd; +} +.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled { + color: #adb5bd; +} +.dropdown-menu-dark .dropdown-divider { + border-color: rgba(0, 0, 0, 0.15); +} +.dropdown-menu-dark .dropdown-item-text { + color: #dee2e6; +} +.dropdown-menu-dark .dropdown-header { + color: #adb5bd; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; +} +.btn-group > .btn-check:checked + .btn, +.btn-group > .btn-check:focus + .btn, +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn-check:checked + .btn, +.btn-group-vertical > .btn-check:focus + .btn, +.btn-group-vertical > .btn:hover, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:nth-child(n+3), +.btn-group > :not(.btn-check) + .btn, +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} +.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after { + margin-left: 0; +} +.dropstart .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn ~ .btn, +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; + color: #0d6efd; + text-decoration: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .nav-link { + transition: none; + } +} +.nav-link:hover, .nav-link:focus { + color: #0a58ca; +} +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} +.nav-tabs .nav-link { + margin-bottom: -1px; + background: none; + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; + isolation: isolate; +} +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + background: none; + border: 0; + border-radius: 0.25rem; +} +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #0d6efd; +} + +.nav-fill > .nav-link, +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; +} + +.nav-justified > .nav-link, +.nav-justified .nav-item { + flex-basis: 0; + flex-grow: 1; + text-align: center; +} + +.nav-fill .nav-item .nav-link, +.nav-justified .nav-item .nav-link { + width: 100%; +} + +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} +.navbar > .container, +.navbar > .container-fluid, +.navbar > .container-sm, +.navbar > .container-md, +.navbar > .container-lg, +.navbar > .container-xl, +.navbar > .container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between; +} +.navbar-brand { + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + text-decoration: none; + white-space: nowrap; +} +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} +.navbar-nav .dropdown-menu { + position: static; +} + +.navbar-text { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; + transition: box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .navbar-toggler { + transition: none; + } +} +.navbar-toggler:hover { + text-decoration: none; +} +.navbar-toggler:focus { + text-decoration: none; + outline: 0; + box-shadow: 0 0 0 0.25rem; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + background-repeat: no-repeat; + background-position: center; + background-size: 100%; +} + +.navbar-nav-scroll { + max-height: var(--bs-scroll-height, 75vh); + overflow-y: auto; +} + +@media (min-width: 576px) { + .navbar-expand-sm { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } + .navbar-expand-sm .offcanvas-header { + display: none; + } + .navbar-expand-sm .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-sm .offcanvas-top, +.navbar-expand-sm .offcanvas-bottom { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-sm .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 768px) { + .navbar-expand-md { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } + .navbar-expand-md .offcanvas-header { + display: none; + } + .navbar-expand-md .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-md .offcanvas-top, +.navbar-expand-md .offcanvas-bottom { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-md .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 992px) { + .navbar-expand-lg { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } + .navbar-expand-lg .offcanvas-header { + display: none; + } + .navbar-expand-lg .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-lg .offcanvas-top, +.navbar-expand-lg .offcanvas-bottom { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-lg .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } + .navbar-expand-xl .offcanvas-header { + display: none; + } + .navbar-expand-xl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-xl .offcanvas-top, +.navbar-expand-xl .offcanvas-bottom { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-xl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1400px) { + .navbar-expand-xxl { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-xxl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xxl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xxl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xxl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xxl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xxl .navbar-toggler { + display: none; + } + .navbar-expand-xxl .offcanvas-header { + display: none; + } + .navbar-expand-xxl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-xxl .offcanvas-top, +.navbar-expand-xxl .offcanvas-bottom { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-xxl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +.navbar-expand { + flex-wrap: nowrap; + justify-content: flex-start; +} +.navbar-expand .navbar-nav { + flex-direction: row; +} +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} +.navbar-expand .navbar-nav-scroll { + overflow: visible; +} +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; +} +.navbar-expand .navbar-toggler { + display: none; +} +.navbar-expand .offcanvas-header { + display: none; +} +.navbar-expand .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; +} +.navbar-expand .offcanvas-top, +.navbar-expand .offcanvas-bottom { + height: auto; + border-top: 0; + border-bottom: 0; +} +.navbar-expand .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; +} +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.55); +} +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.55); + border-color: rgba(0, 0, 0, 0.1); +} +.navbar-light .navbar-toggler-icon { + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); +} .navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); } - .navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } + color: rgba(0, 0, 0, 0.55); +} +.navbar-light .navbar-text a, +.navbar-light .navbar-text a:hover, +.navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} .navbar-dark .navbar-brand { - color: #fff; } - .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; } - + color: #fff; +} +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} .navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); } - .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - + color: rgba(255, 255, 255, 0.55); +} +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} .navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - + color: #fff; +} .navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); } - + color: rgba(255, 255, 255, 0.55); + border-color: rgba(255, 255, 255, 0.1); +} .navbar-dark .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } - + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); +} .navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); } - .navbar-dark .navbar-text a { - color: #fff; } - .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; } + color: rgba(255, 255, 255, 0.55); +} +.navbar-dark .navbar-text a, +.navbar-dark .navbar-text a:hover, +.navbar-dark .navbar-text a:focus { + color: #fff; +} .card { position: relative; @@ -143053,70 +143802,83 @@ input[type=\\"button\\"].btn-block { background-color: #fff; background-clip: border-box; border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .card > hr { - margin-right: 0; - margin-left: 0; } - .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .card > .card-header + .list-group, - .card > .list-group + .card-footer { - border-top: 0; } + border-radius: 0.25rem; +} +.card > hr { + margin-right: 0; + margin-left: 0; +} +.card > .list-group { + border-top: inherit; + border-bottom: inherit; +} +.card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.card > .card-header + .list-group, +.card > .list-group + .card-footer { + border-top: 0; +} .card-body { flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem; } + padding: 1rem 1rem; +} .card-title { - margin-bottom: 0.75rem; } + margin-bottom: 0.5rem; +} .card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; } + margin-top: -0.25rem; + margin-bottom: 0; +} .card-text:last-child { - margin-bottom: 0; } - -.card-link:hover { - text-decoration: none; } + margin-bottom: 0; +} .card-link + .card-link { - margin-left: 1.25rem; } + margin-left: 1rem; +} .card-header { - padding: 0.75rem 1.25rem; + padding: 0.5rem 1rem; margin-bottom: 0; background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} .card-footer { - padding: 0.75rem 1.25rem; + padding: 0.5rem 1rem; background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } + border-top: 1px solid rgba(0, 0, 0, 0.125); +} +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} .card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; } + margin-right: -0.5rem; + margin-bottom: -0.5rem; + margin-left: -0.5rem; + border-bottom: 0; +} .card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; } + margin-right: -0.5rem; + margin-left: -0.5rem; +} .card-img-overlay { position: absolute; @@ -143124,431 +143886,422 @@ input[type=\\"button\\"].btn-block { right: 0; bottom: 0; left: 0; - padding: 1.25rem; - border-radius: calc(0.25rem - 1px); } + padding: 1rem; + border-radius: calc(0.25rem - 1px); +} .card-img, .card-img-top, .card-img-bottom { - flex-shrink: 0; - width: 100%; } + width: 100%; +} .card-img, .card-img-top { border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } + border-top-right-radius: calc(0.25rem - 1px); +} .card-img, .card-img-bottom { border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - -.card-deck .card { - margin-bottom: 15px; } - -@media (min-width: 576px) { - .card-deck { - display: flex; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; } - .card-deck .card { - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; } } + border-bottom-left-radius: calc(0.25rem - 1px); +} .card-group > .card { - margin-bottom: 15px; } - + margin-bottom: 0.75rem; +} @media (min-width: 576px) { .card-group { display: flex; - flex-flow: row wrap; } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-top, - .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-bottom, - .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-top, - .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-bottom, - .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - -.card-columns .card { - margin-bottom: 0.75rem; } - -@media (min-width: 576px) { - .card-columns { - column-count: 3; - column-gap: 1.25rem; - orphans: 1; - widows: 1; } - .card-columns .card { - display: inline-block; - width: 100%; } } - -.accordion { - overflow-anchor: none; } - .accordion > .card { - overflow: hidden; } - .accordion > .card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .accordion > .card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0; } - .accordion > .card > .card-header { - border-radius: 0; - margin-bottom: -1px; } - -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; } - -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; } - .breadcrumb-item + .breadcrumb-item::before { - float: left; - padding-right: 0.5rem; - color: #6c757d; - content: \\"/\\"; } - -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; } - -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; } - -.breadcrumb-item.active { - color: #6c757d; } - -.pagination { - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; } + flex-flow: row wrap; + } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-top, +.card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-bottom, +.card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-top, +.card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-bottom, +.card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} -.page-link { +.accordion-button { position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; } - .page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; } - .page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - -.page-item:last-child .page-link { + display: flex; + align-items: center; + width: 100%; + padding: 1rem 1.25rem; + font-size: 1rem; + color: #212529; + text-align: left; + background-color: #fff; + border: 0; + border-radius: 0; + overflow-anchor: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .accordion-button { + transition: none; + } +} +.accordion-button:not(.collapsed) { + color: #0c63e4; + background-color: #e7f1ff; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); +} +.accordion-button:not(.collapsed)::after { + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); + transform: rotate(-180deg); +} +.accordion-button::after { + flex-shrink: 0; + width: 1.25rem; + height: 1.25rem; + margin-left: auto; + content: \\"\\"; + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); + background-repeat: no-repeat; + background-size: 1.25rem; + transition: transform 0.2s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .accordion-button::after { + transition: none; + } +} +.accordion-button:hover { + z-index: 2; +} +.accordion-button:focus { + z-index: 3; + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} + +.accordion-header { + margin-bottom: 0; +} + +.accordion-item { + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} +.accordion-item:first-of-type { + border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; } +} +.accordion-item:first-of-type .accordion-button { + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.accordion-item:not(:first-of-type) { + border-top: 0; +} +.accordion-item:last-of-type { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.accordion-item:last-of-type .accordion-collapse { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.accordion-body { + padding: 1rem 1.25rem; +} + +.accordion-flush .accordion-collapse { + border-width: 0; +} +.accordion-flush .accordion-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} +.accordion-flush .accordion-item:first-child { + border-top: 0; +} +.accordion-flush .accordion-item:last-child { + border-bottom: 0; +} +.accordion-flush .accordion-item .accordion-button { + border-radius: 0; +} + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0 0; + margin-bottom: 1rem; + list-style: none; +} + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} +.breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: 0.5rem; + color: #6c757d; + content: var(--bs-breadcrumb-divider, \\"/\\") /* rtl: var(--bs-breadcrumb-divider, \\"/\\") */; +} +.breadcrumb-item.active { + color: #6c757d; +} + +.pagination { + display: flex; + padding-left: 0; + list-style: none; +} + +.page-link { + position: relative; + display: block; + color: #0d6efd; + text-decoration: none; + background-color: #fff; + border: 1px solid #dee2e6; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .page-link { + transition: none; + } +} +.page-link:hover { + z-index: 2; + color: #0a58ca; + background-color: #e9ecef; + border-color: #dee2e6; +} +.page-link:focus { + z-index: 3; + color: #0a58ca; + background-color: #e9ecef; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.page-item:not(:first-child) .page-link { + margin-left: -1px; +} .page-item.active .page-link { z-index: 3; color: #fff; - background-color: #007bff; - border-color: #007bff; } - + background-color: #0d6efd; + border-color: #0d6efd; +} .page-item.disabled .page-link { color: #6c757d; pointer-events: none; - cursor: auto; background-color: #fff; - border-color: #dee2e6; } + border-color: #dee2e6; +} + +.page-link { + padding: 0.375rem 0.75rem; +} + +.page-item:first-child .page-link { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} .pagination-lg .page-link { padding: 0.75rem 1.5rem; font-size: 1.25rem; - line-height: 1.5; } - +} .pagination-lg .page-item:first-child .page-link { border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; } - + border-bottom-left-radius: 0.3rem; +} .pagination-lg .page-item:last-child .page-link { border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; } + border-bottom-right-radius: 0.3rem; +} .pagination-sm .page-link { padding: 0.25rem 0.5rem; font-size: 0.875rem; - line-height: 1.5; } - +} .pagination-sm .page-item:first-child .page-link { border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; } - + border-bottom-left-radius: 0.2rem; +} .pagination-sm .page-item:last-child .page-link { border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; } + border-bottom-right-radius: 0.2rem; +} .badge { display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; + padding: 0.35em 0.65em; + font-size: 0.75em; font-weight: 700; line-height: 1; + color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .badge { - transition: none; } } - a.badge:hover, a.badge:focus { - text-decoration: none; } - .badge:empty { - display: none; } +} +.badge:empty { + display: none; +} .btn .badge { position: relative; - top: -1px; } - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; } - -.badge-primary { - color: #fff; - background-color: #007bff; } - a.badge-primary:hover, a.badge-primary:focus { - color: #fff; - background-color: #0062cc; } - a.badge-primary:focus, a.badge-primary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } - -.badge-secondary { - color: #fff; - background-color: #6c757d; } - a.badge-secondary:hover, a.badge-secondary:focus { - color: #fff; - background-color: #545b62; } - a.badge-secondary:focus, a.badge-secondary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } - -.badge-success { - color: #fff; - background-color: #28a745; } - a.badge-success:hover, a.badge-success:focus { - color: #fff; - background-color: #1e7e34; } - a.badge-success:focus, a.badge-success.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } - -.badge-info { - color: #fff; - background-color: #17a2b8; } - a.badge-info:hover, a.badge-info:focus { - color: #fff; - background-color: #117a8b; } - a.badge-info:focus, a.badge-info.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } - -.badge-warning { - color: #212529; - background-color: #ffc107; } - a.badge-warning:hover, a.badge-warning:focus { - color: #212529; - background-color: #d39e00; } - a.badge-warning:focus, a.badge-warning.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } - -.badge-danger { - color: #fff; - background-color: #dc3545; } - a.badge-danger:hover, a.badge-danger:focus { - color: #fff; - background-color: #bd2130; } - a.badge-danger:focus, a.badge-danger.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } - -.badge-light { - color: #212529; - background-color: #f8f9fa; } - a.badge-light:hover, a.badge-light:focus { - color: #212529; - background-color: #dae0e5; } - a.badge-light:focus, a.badge-light.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } - -.badge-dark { - color: #fff; - background-color: #343a40; } - a.badge-dark:hover, a.badge-dark:focus { - color: #fff; - background-color: #1d2124; } - a.badge-dark:focus, a.badge-dark.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; } - @media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; } } - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; } + top: -1px; +} .alert { position: relative; - padding: 0.75rem 1.25rem; + padding: 1rem 1rem; margin-bottom: 1rem; border: 1px solid transparent; - border-radius: 0.25rem; } + border-radius: 0.25rem; +} .alert-heading { - color: inherit; } + color: inherit; +} .alert-link { - font-weight: 700; } + font-weight: 700; +} .alert-dismissible { - padding-right: 4rem; } - .alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: 0.75rem 1.25rem; - color: inherit; } + padding-right: 3rem; +} +.alert-dismissible .btn-close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 1.25rem 1rem; +} .alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; } - .alert-primary hr { - border-top-color: #9fcdff; } - .alert-primary .alert-link { - color: #002752; } + color: #084298; + background-color: #cfe2ff; + border-color: #b6d4fe; +} +.alert-primary .alert-link { + color: #06357a; +} .alert-secondary { - color: #383d41; + color: #41464b; background-color: #e2e3e5; - border-color: #d6d8db; } - .alert-secondary hr { - border-top-color: #c8cbcf; } - .alert-secondary .alert-link { - color: #202326; } + border-color: #d3d6d8; +} +.alert-secondary .alert-link { + color: #34383c; +} .alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; } - .alert-success hr { - border-top-color: #b1dfbb; } - .alert-success .alert-link { - color: #0b2e13; } + color: #0f5132; + background-color: #d1e7dd; + border-color: #badbcc; +} +.alert-success .alert-link { + color: #0c4128; +} .alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; } - .alert-info hr { - border-top-color: #abdde5; } - .alert-info .alert-link { - color: #062c33; } + color: #055160; + background-color: #cff4fc; + border-color: #b6effb; +} +.alert-info .alert-link { + color: #04414d; +} .alert-warning { - color: #856404; + color: #664d03; background-color: #fff3cd; - border-color: #ffeeba; } - .alert-warning hr { - border-top-color: #ffe8a1; } - .alert-warning .alert-link { - color: #533f03; } + border-color: #ffecb5; +} +.alert-warning .alert-link { + color: #523e02; +} .alert-danger { - color: #721c24; + color: #842029; background-color: #f8d7da; - border-color: #f5c6cb; } - .alert-danger hr { - border-top-color: #f1b0b7; } - .alert-danger .alert-link { - color: #491217; } + border-color: #f5c2c7; +} +.alert-danger .alert-link { + color: #6a1a21; +} .alert-light { - color: #818182; + color: #636464; background-color: #fefefe; - border-color: #fdfdfe; } - .alert-light hr { - border-top-color: #ececf6; } - .alert-light .alert-link { - color: #686868; } + border-color: #fdfdfe; +} +.alert-light .alert-link { + color: #4f5050; +} .alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; } - .alert-dark hr { - border-top-color: #b9bbbe; } - .alert-dark .alert-link { - color: #040505; } + color: #141619; + background-color: #d3d3d4; + border-color: #bcbebf; +} +.alert-dark .alert-link { + color: #101214; +} @keyframes progress-bar-stripes { - from { - background-position: 1rem 0; } - to { - background-position: 0 0; } } - + 0% { + background-position-x: 1rem; + } +} .progress { display: flex; height: 1rem; overflow: hidden; - line-height: 0; font-size: 0.75rem; background-color: #e9ecef; - border-radius: 0.25rem; } + border-radius: 0.25rem; +} .progress-bar { display: flex; @@ -143558,378 +144311,493 @@ input[type=\\"button\\"].btn-block { color: #fff; text-align: center; white-space: nowrap; - background-color: #007bff; - transition: width 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; } } + background-color: #0d6efd; + transition: width 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} .progress-bar-striped { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; } + background-size: 1rem 1rem; +} .progress-bar-animated { - animation: 1s linear infinite progress-bar-stripes; } - @media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; } } - -.media { - display: flex; - align-items: flex-start; } - -.media-body { - flex: 1; } + animation: 1s linear infinite progress-bar-stripes; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + animation: none; + } +} .list-group { display: flex; flex-direction: column; padding-left: 0; margin-bottom: 0; - border-radius: 0.25rem; } + border-radius: 0.25rem; +} + +.list-group-numbered { + list-style-type: none; + counter-reset: section; +} +.list-group-numbered > li::before { + content: counters(section, \\".\\") \\". \\"; + counter-increment: section; +} .list-group-item-action { width: 100%; color: #495057; - text-align: inherit; } - .list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } + text-align: inherit; +} +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} .list-group-item { position: relative; display: block; - padding: 0.75rem 1.25rem; + padding: 0.5rem 1rem; + color: #212529; + text-decoration: none; background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .list-group-item + .list-group-item { - border-top-width: 0; } - .list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } + border: 1px solid rgba(0, 0, 0, 0.125); +} +.list-group-item:first-child { + border-top-left-radius: inherit; + border-top-right-radius: inherit; +} +.list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; +} +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.list-group-item + .list-group-item { + border-top-width: 0; +} +.list-group-item + .list-group-item.active { + margin-top: -1px; + border-top-width: 1px; +} .list-group-horizontal { - flex-direction: row; } - .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } + flex-direction: row; +} +.list-group-horizontal > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} +.list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} +.list-group-horizontal > .list-group-item.active { + margin-top: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; +} @media (min-width: 576px) { .list-group-horizontal-sm { - flex-direction: row; } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - + flex-direction: row; + } + .list-group-horizontal-sm > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} @media (min-width: 768px) { .list-group-horizontal-md { - flex-direction: row; } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - + flex-direction: row; + } + .list-group-horizontal-md > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} @media (min-width: 992px) { .list-group-horizontal-lg { - flex-direction: row; } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - + flex-direction: row; + } + .list-group-horizontal-lg > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} @media (min-width: 1200px) { .list-group-horizontal-xl { - flex-direction: row; } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - + flex-direction: row; + } + .list-group-horizontal-xl > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 1400px) { + .list-group-horizontal-xxl { + flex-direction: row; + } + .list-group-horizontal-xxl > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} .list-group-flush { - border-radius: 0; } - .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } + border-radius: 0; +} +.list-group-flush > .list-group-item { + border-width: 0 0 1px; +} +.list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; +} .list-group-item-primary { - color: #004085; - background-color: #b8daff; } - .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; } - .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; } + color: #084298; + background-color: #cfe2ff; +} +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #084298; + background-color: #bacbe6; +} +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #084298; + border-color: #084298; +} .list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; } - .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; } - .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; } + color: #41464b; + background-color: #e2e3e5; +} +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #41464b; + background-color: #cbccce; +} +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #41464b; + border-color: #41464b; +} .list-group-item-success { - color: #155724; - background-color: #c3e6cb; } - .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; } - .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; } + color: #0f5132; + background-color: #d1e7dd; +} +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #0f5132; + background-color: #bcd0c7; +} +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #0f5132; + border-color: #0f5132; +} .list-group-item-info { - color: #0c5460; - background-color: #bee5eb; } - .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; } - .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; } + color: #055160; + background-color: #cff4fc; +} +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #055160; + background-color: #badce3; +} +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #055160; + border-color: #055160; +} .list-group-item-warning { - color: #856404; - background-color: #ffeeba; } - .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; } - .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; } + color: #664d03; + background-color: #fff3cd; +} +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #664d03; + background-color: #e6dbb9; +} +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #664d03; + border-color: #664d03; +} .list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; } - .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; } - .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; } + color: #842029; + background-color: #f8d7da; +} +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #842029; + background-color: #dfc2c4; +} +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #842029; + border-color: #842029; +} .list-group-item-light { - color: #818182; - background-color: #fdfdfe; } - .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; } - .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; } + color: #636464; + background-color: #fefefe; +} +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #636464; + background-color: #e5e5e5; +} +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #636464; + border-color: #636464; +} .list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; } - .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; } - .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; } + color: #141619; + background-color: #d3d3d4; +} +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #141619; + background-color: #bebebf; +} +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #141619; + border-color: #141619; +} -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; +.btn-close { + box-sizing: content-box; + width: 1em; + height: 1em; + padding: 0.25em 0.25em; color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; } - .close:hover { - color: #000; - text-decoration: none; } - .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { - opacity: .75; } - -button.close { - padding: 0; - background-color: transparent; - border: 0; } + background: transparent url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\\") center/1em auto no-repeat; + border: 0; + border-radius: 0.25rem; + opacity: 0.5; +} +.btn-close:hover { + color: #000; + text-decoration: none; + opacity: 0.75; +} +.btn-close:focus { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); + opacity: 1; +} +.btn-close:disabled, .btn-close.disabled { + pointer-events: none; + user-select: none; + opacity: 0.25; +} -a.close.disabled { - pointer-events: none; } +.btn-close-white { + filter: invert(1) grayscale(100%) brightness(200%); +} .toast { - flex-basis: 350px; - max-width: 350px; + width: 350px; + max-width: 100%; font-size: 0.875rem; + pointer-events: auto; background-color: rgba(255, 255, 255, 0.85); background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} +.toast.showing { opacity: 0; - border-radius: 0.25rem; } - .toast:not(:last-child) { - margin-bottom: 0.75rem; } - .toast.showing { - opacity: 1; } - .toast.show { - display: block; - opacity: 1; } - .toast.hide { - display: none; } +} +.toast:not(.show) { + display: none; +} + +.toast-container { + width: max-content; + max-width: 100%; + pointer-events: none; +} +.toast-container > :not(:last-child) { + margin-bottom: 0.75rem; +} .toast-header { display: flex; align-items: center; - padding: 0.25rem 0.75rem; + padding: 0.5rem 0.75rem; color: #6c757d; background-color: rgba(255, 255, 255, 0.85); background-clip: padding-box; border-bottom: 1px solid rgba(0, 0, 0, 0.05); border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } + border-top-right-radius: calc(0.25rem - 1px); +} +.toast-header .btn-close { + margin-right: -0.375rem; + margin-left: 0.75rem; +} .toast-body { - padding: 0.75rem; } - -.modal-open { - overflow: hidden; } - .modal-open .modal { - overflow-x: hidden; - overflow-y: auto; } + padding: 0.75rem; + word-wrap: break-word; +} .modal { position: fixed; top: 0; left: 0; - z-index: 1050; + z-index: 1055; display: none; width: 100%; height: 100%; - overflow: hidden; - outline: 0; } + overflow-x: hidden; + overflow-y: auto; + outline: 0; +} .modal-dialog { position: relative; width: auto; margin: 0.5rem; - pointer-events: none; } + pointer-events: none; +} +.modal.fade .modal-dialog { + transition: transform 0.3s ease-out; + transform: translate(0, -50px); +} +@media (prefers-reduced-motion: reduce) { .modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); } - @media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; } } - .modal.show .modal-dialog { - transform: none; } - .modal.modal-static .modal-dialog { - transform: scale(1.02); } + transition: none; + } +} +.modal.show .modal-dialog { + transform: none; +} +.modal.modal-static .modal-dialog { + transform: scale(1.02); +} .modal-dialog-scrollable { - display: flex; - max-height: calc(100% - 1rem); } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden; } - .modal-dialog-scrollable .modal-header, - .modal-dialog-scrollable .modal-footer { - flex-shrink: 0; } - .modal-dialog-scrollable .modal-body { - overflow-y: auto; } + height: calc(100% - 1rem); +} +.modal-dialog-scrollable .modal-content { + max-height: 100%; + overflow: hidden; +} +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} .modal-dialog-centered { display: flex; align-items: center; - min-height: calc(100% - 1rem); } - .modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: min-content; - content: \\"\\"; } - .modal-dialog-centered.modal-dialog-scrollable { - flex-direction: column; - justify-content: center; - height: 100%; } - .modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none; } - .modal-dialog-centered.modal-dialog-scrollable::before { - content: none; } + min-height: calc(100% - 1rem); +} .modal-content { position: relative; @@ -143941,92 +144809,232 @@ a.close.disabled { background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; - outline: 0; } + outline: 0; +} .modal-backdrop { position: fixed; top: 0; left: 0; - z-index: 1040; + z-index: 1050; width: 100vw; height: 100vh; - background-color: #000; } - .modal-backdrop.fade { - opacity: 0; } - .modal-backdrop.show { - opacity: 0.5; } + background-color: #000; +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop.show { + opacity: 0.5; +} .modal-header { display: flex; - align-items: flex-start; + flex-shrink: 0; + align-items: center; justify-content: space-between; padding: 1rem 1rem; border-bottom: 1px solid #dee2e6; border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto; } + border-top-right-radius: calc(0.3rem - 1px); +} +.modal-header .btn-close { + padding: 0.5rem 0.5rem; + margin: -0.5rem -0.5rem -0.5rem auto; +} .modal-title { margin-bottom: 0; - line-height: 1.5; } + line-height: 1.5; +} .modal-body { position: relative; flex: 1 1 auto; - padding: 1rem; } + padding: 1rem; +} .modal-footer { display: flex; flex-wrap: wrap; + flex-shrink: 0; align-items: center; justify-content: flex-end; padding: 0.75rem; border-top: 1px solid #dee2e6; border-bottom-right-radius: calc(0.3rem - 1px); - border-bottom-left-radius: calc(0.3rem - 1px); } - .modal-footer > * { - margin: 0.25rem; } - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; } + border-bottom-left-radius: calc(0.3rem - 1px); +} +.modal-footer > * { + margin: 0.25rem; +} @media (min-width: 576px) { .modal-dialog { max-width: 500px; - margin: 1.75rem auto; } + margin: 1.75rem auto; + } + .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem); } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem); } + height: calc(100% - 3.5rem); + } + .modal-dialog-centered { - min-height: calc(100% - 3.5rem); } - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: min-content; } - .modal-sm { - max-width: 300px; } } + min-height: calc(100% - 3.5rem); + } + .modal-sm { + max-width: 300px; + } +} @media (min-width: 992px) { .modal-lg, - .modal-xl { - max-width: 800px; } } - +.modal-xl { + max-width: 800px; + } +} @media (min-width: 1200px) { .modal-xl { - max-width: 1140px; } } + max-width: 1140px; + } +} +.modal-fullscreen { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; +} +.modal-fullscreen .modal-content { + height: 100%; + border: 0; + border-radius: 0; +} +.modal-fullscreen .modal-header { + border-radius: 0; +} +.modal-fullscreen .modal-body { + overflow-y: auto; +} +.modal-fullscreen .modal-footer { + border-radius: 0; +} +@media (max-width: 575.98px) { + .modal-fullscreen-sm-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-sm-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-sm-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 767.98px) { + .modal-fullscreen-md-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-md-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-md-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-md-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-md-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 991.98px) { + .modal-fullscreen-lg-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-lg-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-lg-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 1199.98px) { + .modal-fullscreen-xl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-xl-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 1399.98px) { + .modal-fullscreen-xxl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xxl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-xxl-down .modal-footer { + border-radius: 0; + } +} .tooltip { position: absolute; - z-index: 1070; + z-index: 1080; display: block; margin: 0; - font-family: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; + font-family: var(--bs-font-sans-serif); font-style: normal; font-weight: 400; line-height: 1.5; @@ -144042,80 +145050,97 @@ a.close.disabled { line-break: auto; font-size: 0.875rem; word-wrap: break-word; - opacity: 0; } - .tooltip.show { - opacity: 0.9; } - .tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .tooltip .arrow::before { - position: absolute; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\\"top\\"] { - padding: 0.4rem 0; } - .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\\"top\\"] .arrow { - bottom: 0; } - .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\\"top\\"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\\"right\\"] { - padding: 0 0.4rem; } - .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\\"right\\"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\\"right\\"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\\"bottom\\"] { - padding: 0.4rem 0; } - .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\\"bottom\\"] .arrow { - top: 0; } - .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\\"bottom\\"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\\"left\\"] { - padding: 0 0.4rem; } - .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\\"left\\"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\\"left\\"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } - -.popover { + opacity: 0; +} +.tooltip.show { + opacity: 0.9; +} +.tooltip .tooltip-arrow { position: absolute; - top: 0; - left: 0; - z-index: 1060; display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; + width: 0.8rem; + height: 0.4rem; +} +.tooltip .tooltip-arrow::before { + position: absolute; + content: \\"\\"; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] { + padding: 0.4rem 0; +} +.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow { + bottom: 0; +} +.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before { + top: -1px; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] { + padding: 0 0.4rem; +} +.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before { + right: -1px; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] { + padding: 0.4rem 0; +} +.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow { + top: 0; +} +.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before { + bottom: -1px; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] { + padding: 0 0.4rem; +} +.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before { + left: -1px; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0 /* rtl:ignore */; + z-index: 1070; + display: block; + max-width: 276px; + font-family: var(--bs-font-sans-serif); + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; text-align: start; text-decoration: none; text-shadow: none; @@ -144130,116 +145155,128 @@ a.close.disabled { background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; } - .popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-popover-top, .bs-popover-auto[x-placement^=\\"top\\"] { - margin-bottom: 0.5rem; } - .bs-popover-top > .arrow, .bs-popover-auto[x-placement^=\\"top\\"] > .arrow { - bottom: calc(-0.5rem - 1px); } - .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=\\"top\\"] > .arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=\\"top\\"] > .arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - -.bs-popover-right, .bs-popover-auto[x-placement^=\\"right\\"] { - margin-left: 0.5rem; } - .bs-popover-right > .arrow, .bs-popover-auto[x-placement^=\\"right\\"] > .arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=\\"right\\"] > .arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=\\"right\\"] > .arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - -.bs-popover-bottom, .bs-popover-auto[x-placement^=\\"bottom\\"] { - margin-top: 0.5rem; } - .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=\\"bottom\\"] > .arrow { - top: calc(-0.5rem - 1px); } - .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=\\"bottom\\"] > .arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=\\"bottom\\"] > .arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\\"bottom\\"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: \\"\\"; - border-bottom: 1px solid #f7f7f7; } - -.bs-popover-left, .bs-popover-auto[x-placement^=\\"left\\"] { - margin-right: 0.5rem; } - .bs-popover-left > .arrow, .bs-popover-auto[x-placement^=\\"left\\"] > .arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=\\"left\\"] > .arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=\\"left\\"] > .arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } + border-radius: 0.3rem; +} +.popover .popover-arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; +} +.popover .popover-arrow::before, .popover .popover-arrow::after { + position: absolute; + display: block; + content: \\"\\"; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow { + bottom: calc(-0.5rem - 1px); +} +.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} +.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow { + top: calc(-0.5rem - 1px); +} +.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} +.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: \\"\\"; + border-bottom: 1px solid #f0f0f0; +} + +.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} +.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} .popover-header { - padding: 0.5rem 0.75rem; + padding: 0.5rem 1rem; margin-bottom: 0; font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; + background-color: #f0f0f0; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .popover-header:empty { - display: none; } + border-top-right-radius: calc(0.3rem - 1px); +} +.popover-header:empty { + display: none; +} .popover-body { - padding: 0.5rem 0.75rem; - color: #212529; } + padding: 1rem 1rem; + color: #212529; +} .carousel { - position: relative; } + position: relative; +} .carousel.pointer-event { - touch-action: pan-y; } + touch-action: pan-y; +} .carousel-inner { position: relative; width: 100%; - overflow: hidden; } - .carousel-inner::after { - display: block; - clear: both; - content: \\"\\"; } + overflow: hidden; +} +.carousel-inner::after { + display: block; + clear: both; + content: \\"\\"; +} .carousel-item { position: relative; @@ -144248,44 +145285,55 @@ a.close.disabled { width: 100%; margin-right: -100%; backface-visibility: hidden; - transition: transform 0.6s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; } } + transition: transform 0.6s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} .carousel-item.active, .carousel-item-next, .carousel-item-prev { - display: block; } + display: block; +} -.carousel-item-next:not(.carousel-item-left), -.active.carousel-item-right { - transform: translateX(100%); } +/* rtl:begin:ignore */ +.carousel-item-next:not(.carousel-item-start), +.active.carousel-item-end { + transform: translateX(100%); +} -.carousel-item-prev:not(.carousel-item-right), -.active.carousel-item-left { - transform: translateX(-100%); } +.carousel-item-prev:not(.carousel-item-end), +.active.carousel-item-start { + transform: translateX(-100%); +} +/* rtl:end:ignore */ .carousel-fade .carousel-item { opacity: 0; transition-property: opacity; - transform: none; } - + transform: none; +} .carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right { +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end { z-index: 1; - opacity: 1; } - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { + opacity: 1; +} +.carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { z-index: 0; opacity: 0; - transition: opacity 0s 0.6s; } - @media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; } } + transition: opacity 0s 0.6s; +} +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + transition: none; + } +} .carousel-control-prev, .carousel-control-next { @@ -144303,86 +145351,125 @@ a.close.disabled { background: none; border: 0; opacity: 0.5; - transition: opacity 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; } } - .carousel-control-prev:hover, .carousel-control-prev:focus, - .carousel-control-next:hover, - .carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; } + transition: opacity 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, +.carousel-control-next { + transition: none; + } +} +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} .carousel-control-prev { - left: 0; } + left: 0; +} .carousel-control-next { - right: 0; } + right: 0; +} .carousel-control-prev-icon, .carousel-control-next-icon { display: inline-block; - width: 20px; - height: 20px; - background: 50% / 100% 100% no-repeat; } + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; +} +/* rtl:options: { + \\"autoRename\\": true, + \\"stringMap\\":[ { + \\"name\\" : \\"prev-next\\", + \\"search\\" : \\"prev\\", + \\"replace\\" : \\"next\\" + } ] +} */ .carousel-control-prev-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e\\"); } + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\\"); +} .carousel-control-next-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e\\"); } + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); +} .carousel-indicators { position: absolute; right: 0; bottom: 0; left: 0; - z-index: 15; + z-index: 2; display: flex; justify-content: center; - padding-left: 0; + padding: 0; margin-right: 15%; + margin-bottom: 1rem; margin-left: 15%; - list-style: none; } - .carousel-indicators li { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; } } - .carousel-indicators .active { - opacity: 1; } + list-style: none; +} +.carousel-indicators [data-bs-target] { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + padding: 0; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: 0.5; + transition: opacity 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-indicators [data-bs-target] { + transition: none; + } +} +.carousel-indicators .active { + opacity: 1; +} .carousel-caption { position: absolute; right: 15%; - bottom: 20px; + bottom: 1.25rem; left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; + padding-top: 1.25rem; + padding-bottom: 1.25rem; color: #fff; - text-align: center; } + text-align: center; +} + +.carousel-dark .carousel-control-prev-icon, +.carousel-dark .carousel-control-next-icon { + filter: invert(1) grayscale(100); +} +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000; +} +.carousel-dark .carousel-caption { + color: #000; +} @keyframes spinner-border { to { - transform: rotate(360deg); } } - + transform: rotate(360deg) /* rtl:ignore */; + } +} .spinner-border { display: inline-block; width: 2rem; @@ -144391,20 +145478,24 @@ a.close.disabled { border: 0.25em solid currentColor; border-right-color: transparent; border-radius: 50%; - animation: .75s linear infinite spinner-border; } + animation: 0.75s linear infinite spinner-border; +} .spinner-border-sm { width: 1rem; height: 1rem; - border-width: 0.2em; } + border-width: 0.2em; +} @keyframes spinner-grow { 0% { - transform: scale(0); } + transform: scale(0); + } 50% { opacity: 1; - transform: none; } } - + transform: none; + } +} .spinner-grow { display: inline-block; width: 2rem; @@ -144413,9743 +145504,5015 @@ a.close.disabled { background-color: currentColor; border-radius: 50%; opacity: 0; - animation: .75s linear infinite spinner-grow; } + animation: 0.75s linear infinite spinner-grow; +} .spinner-grow-sm { width: 1rem; - height: 1rem; } + height: 1rem; +} @media (prefers-reduced-motion: reduce) { .spinner-border, - .spinner-grow { - animation-duration: 1.5s; } } +.spinner-grow { + animation-duration: 1.5s; + } +} +.offcanvas { + position: fixed; + bottom: 0; + z-index: 1045; + display: flex; + flex-direction: column; + max-width: 100%; + visibility: hidden; + background-color: #fff; + background-clip: padding-box; + outline: 0; + transition: transform 0.3s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .offcanvas { + transition: none; + } +} -.align-baseline { - vertical-align: baseline !important; } +.offcanvas-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} +.offcanvas-backdrop.fade { + opacity: 0; +} +.offcanvas-backdrop.show { + opacity: 0.5; +} -.align-top { - vertical-align: top !important; } +.offcanvas-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; +} +.offcanvas-header .btn-close { + padding: 0.5rem 0.5rem; + margin-top: -0.5rem; + margin-right: -0.5rem; + margin-bottom: -0.5rem; +} -.align-middle { - vertical-align: middle !important; } +.offcanvas-title { + margin-bottom: 0; + line-height: 1.5; +} -.align-bottom { - vertical-align: bottom !important; } +.offcanvas-body { + flex-grow: 1; + padding: 1rem 1rem; + overflow-y: auto; +} -.align-text-bottom { - vertical-align: text-bottom !important; } +.offcanvas-start { + top: 0; + left: 0; + width: 400px; + border-right: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(-100%); +} -.align-text-top { - vertical-align: text-top !important; } +.offcanvas-end { + top: 0; + right: 0; + width: 400px; + border-left: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(100%); +} -.bg-primary { - background-color: #007bff !important; } +.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(-100%); +} -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; } +.offcanvas-bottom { + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-top: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(100%); +} -.bg-secondary { - background-color: #6c757d !important; } +.offcanvas.show { + transform: none; +} -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; } +.placeholder { + display: inline-block; + min-height: 1em; + vertical-align: middle; + cursor: wait; + background-color: currentColor; + opacity: 0.5; +} +.placeholder.btn::before { + display: inline-block; + content: \\"\\"; +} -.bg-success { - background-color: #28a745 !important; } +.placeholder-xs { + min-height: 0.6em; +} -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; } +.placeholder-sm { + min-height: 0.8em; +} -.bg-info { - background-color: #17a2b8 !important; } +.placeholder-lg { + min-height: 1.2em; +} -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; } +.placeholder-glow .placeholder { + animation: placeholder-glow 2s ease-in-out infinite; +} -.bg-warning { - background-color: #ffc107 !important; } +@keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +.placeholder-wave { + mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); + mask-size: 200% 100%; + animation: placeholder-wave 2s linear infinite; +} -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; } +@keyframes placeholder-wave { + 100% { + mask-position: -200% 0%; + } +} +.clearfix::after { + display: block; + clear: both; + content: \\"\\"; +} -.bg-danger { - background-color: #dc3545 !important; } +.link-primary { + color: #0d6efd; +} +.link-primary:hover, .link-primary:focus { + color: #0a58ca; +} -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; } +.link-secondary { + color: #6c757d; +} +.link-secondary:hover, .link-secondary:focus { + color: #565e64; +} -.bg-light { - background-color: #f8f9fa !important; } +.link-success { + color: #198754; +} +.link-success:hover, .link-success:focus { + color: #146c43; +} -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; } +.link-info { + color: #0dcaf0; +} +.link-info:hover, .link-info:focus { + color: #3dd5f3; +} -.bg-dark { - background-color: #343a40 !important; } +.link-warning { + color: #ffc107; +} +.link-warning:hover, .link-warning:focus { + color: #ffcd39; +} -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; } +.link-danger { + color: #dc3545; +} +.link-danger:hover, .link-danger:focus { + color: #b02a37; +} -.bg-white { - background-color: #fff !important; } +.link-light { + color: #f8f9fa; +} +.link-light:hover, .link-light:focus { + color: #f9fafb; +} -.bg-transparent { - background-color: transparent !important; } +.link-dark { + color: #212529; +} +.link-dark:hover, .link-dark:focus { + color: #1a1e21; +} -.border { - border: 1px solid #dee2e6 !important; } +.ratio { + position: relative; + width: 100%; +} +.ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: \\"\\"; +} +.ratio > * { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} -.border-top { - border-top: 1px solid #dee2e6 !important; } +.ratio-1x1 { + --bs-aspect-ratio: 100%; +} -.border-right { - border-right: 1px solid #dee2e6 !important; } +.ratio-4x3 { + --bs-aspect-ratio: 75%; +} -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; } +.ratio-16x9 { + --bs-aspect-ratio: 56.25%; +} -.border-left { - border-left: 1px solid #dee2e6 !important; } +.ratio-21x9 { + --bs-aspect-ratio: 42.8571428571%; +} -.border-0 { - border: 0 !important; } +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} -.border-top-0 { - border-top: 0 !important; } +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} -.border-right-0 { - border-right: 0 !important; } +.sticky-top { + position: sticky; + top: 0; + z-index: 1020; +} -.border-bottom-0 { - border-bottom: 0 !important; } +@media (min-width: 576px) { + .sticky-sm-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 768px) { + .sticky-md-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 992px) { + .sticky-lg-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 1200px) { + .sticky-xl-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 1400px) { + .sticky-xxl-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +.hstack { + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch; +} -.border-left-0 { - border-left: 0 !important; } +.vstack { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-self: stretch; +} -.border-primary { - border-color: #007bff !important; } +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border: 0 !important; +} -.border-secondary { - border-color: #6c757d !important; } +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + content: \\"\\"; +} -.border-success { - border-color: #28a745 !important; } +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} -.border-info { - border-color: #17a2b8 !important; } +.vr { + display: inline-block; + align-self: stretch; + width: 1px; + min-height: 1em; + background-color: currentColor; + opacity: 0.25; +} -.border-warning { - border-color: #ffc107 !important; } +.align-baseline { + vertical-align: baseline !important; +} -.border-danger { - border-color: #dc3545 !important; } +.align-top { + vertical-align: top !important; +} -.border-light { - border-color: #f8f9fa !important; } +.align-middle { + vertical-align: middle !important; +} -.border-dark { - border-color: #343a40 !important; } +.align-bottom { + vertical-align: bottom !important; +} -.border-white { - border-color: #fff !important; } +.align-text-bottom { + vertical-align: text-bottom !important; +} -.rounded-sm { - border-radius: 0.2rem !important; } +.align-text-top { + vertical-align: text-top !important; +} -.rounded { - border-radius: 0.25rem !important; } +.float-start { + float: left !important; +} -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; } +.float-end { + float: right !important; +} -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; } +.float-none { + float: none !important; +} -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } +.opacity-0 { + opacity: 0 !important; +} -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } +.opacity-25 { + opacity: 0.25 !important; +} -.rounded-lg { - border-radius: 0.3rem !important; } +.opacity-50 { + opacity: 0.5 !important; +} -.rounded-circle { - border-radius: 50% !important; } +.opacity-75 { + opacity: 0.75 !important; +} -.rounded-pill { - border-radius: 50rem !important; } +.opacity-100 { + opacity: 1 !important; +} -.rounded-0 { - border-radius: 0 !important; } +.overflow-auto { + overflow: auto !important; +} -.clearfix::after { - display: block; - clear: both; - content: \\"\\"; } +.overflow-hidden { + overflow: hidden !important; +} -.d-none { - display: none !important; } +.overflow-visible { + overflow: visible !important; +} + +.overflow-scroll { + overflow: scroll !important; +} .d-inline { - display: inline !important; } + display: inline !important; +} .d-inline-block { - display: inline-block !important; } + display: inline-block !important; +} .d-block { - display: block !important; } + display: block !important; +} + +.d-grid { + display: grid !important; +} .d-table { - display: table !important; } + display: table !important; +} .d-table-row { - display: table-row !important; } + display: table-row !important; +} .d-table-cell { - display: table-cell !important; } + display: table-cell !important; +} .d-flex { - display: flex !important; } + display: flex !important; +} .d-inline-flex { - display: inline-flex !important; } - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; } - .d-sm-inline { - display: inline !important; } - .d-sm-inline-block { - display: inline-block !important; } - .d-sm-block { - display: block !important; } - .d-sm-table { - display: table !important; } - .d-sm-table-row { - display: table-row !important; } - .d-sm-table-cell { - display: table-cell !important; } - .d-sm-flex { - display: flex !important; } - .d-sm-inline-flex { - display: inline-flex !important; } } + display: inline-flex !important; +} -@media (min-width: 768px) { - .d-md-none { - display: none !important; } - .d-md-inline { - display: inline !important; } - .d-md-inline-block { - display: inline-block !important; } - .d-md-block { - display: block !important; } - .d-md-table { - display: table !important; } - .d-md-table-row { - display: table-row !important; } - .d-md-table-cell { - display: table-cell !important; } - .d-md-flex { - display: flex !important; } - .d-md-inline-flex { - display: inline-flex !important; } } +.d-none { + display: none !important; +} -@media (min-width: 992px) { - .d-lg-none { - display: none !important; } - .d-lg-inline { - display: inline !important; } - .d-lg-inline-block { - display: inline-block !important; } - .d-lg-block { - display: block !important; } - .d-lg-table { - display: table !important; } - .d-lg-table-row { - display: table-row !important; } - .d-lg-table-cell { - display: table-cell !important; } - .d-lg-flex { - display: flex !important; } - .d-lg-inline-flex { - display: inline-flex !important; } } +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; } - .d-xl-inline { - display: inline !important; } - .d-xl-inline-block { - display: inline-block !important; } - .d-xl-block { - display: block !important; } - .d-xl-table { - display: table !important; } - .d-xl-table-row { - display: table-row !important; } - .d-xl-table-cell { - display: table-cell !important; } - .d-xl-flex { - display: flex !important; } - .d-xl-inline-flex { - display: inline-flex !important; } } +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} -@media print { - .d-print-none { - display: none !important; } - .d-print-inline { - display: inline !important; } - .d-print-inline-block { - display: inline-block !important; } - .d-print-block { - display: block !important; } - .d-print-table { - display: table !important; } - .d-print-table-row { - display: table-row !important; } - .d-print-table-cell { - display: table-cell !important; } - .d-print-flex { - display: flex !important; } - .d-print-inline-flex { - display: inline-flex !important; } } +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; } - .embed-responsive::before { - display: block; - content: \\"\\"; } - .embed-responsive .embed-responsive-item, - .embed-responsive iframe, - .embed-responsive embed, - .embed-responsive object, - .embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; } +.shadow-none { + box-shadow: none !important; +} -.embed-responsive-21by9::before { - padding-top: 42.85714%; } +.position-static { + position: static !important; +} -.embed-responsive-16by9::before { - padding-top: 56.25%; } +.position-relative { + position: relative !important; +} -.embed-responsive-4by3::before { - padding-top: 75%; } +.position-absolute { + position: absolute !important; +} -.embed-responsive-1by1::before { - padding-top: 100%; } +.position-fixed { + position: fixed !important; +} -.flex-row { - flex-direction: row !important; } +.position-sticky { + position: sticky !important; +} -.flex-column { - flex-direction: column !important; } +.top-0 { + top: 0 !important; +} -.flex-row-reverse { - flex-direction: row-reverse !important; } +.top-50 { + top: 50% !important; +} -.flex-column-reverse { - flex-direction: column-reverse !important; } +.top-100 { + top: 100% !important; +} -.flex-wrap { - flex-wrap: wrap !important; } +.bottom-0 { + bottom: 0 !important; +} -.flex-nowrap { - flex-wrap: nowrap !important; } +.bottom-50 { + bottom: 50% !important; +} -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; } +.bottom-100 { + bottom: 100% !important; +} -.flex-fill { - flex: 1 1 auto !important; } +.start-0 { + left: 0 !important; +} -.flex-grow-0 { - flex-grow: 0 !important; } +.start-50 { + left: 50% !important; +} -.flex-grow-1 { - flex-grow: 1 !important; } +.start-100 { + left: 100% !important; +} -.flex-shrink-0 { - flex-shrink: 0 !important; } +.end-0 { + right: 0 !important; +} -.flex-shrink-1 { - flex-shrink: 1 !important; } +.end-50 { + right: 50% !important; +} -.justify-content-start { - justify-content: flex-start !important; } +.end-100 { + right: 100% !important; +} -.justify-content-end { - justify-content: flex-end !important; } +.translate-middle { + transform: translate(-50%, -50%) !important; +} -.justify-content-center { - justify-content: center !important; } +.translate-middle-x { + transform: translateX(-50%) !important; +} -.justify-content-between { - justify-content: space-between !important; } +.translate-middle-y { + transform: translateY(-50%) !important; +} -.justify-content-around { - justify-content: space-around !important; } +.border { + border: 1px solid #dee2e6 !important; +} -.align-items-start { - align-items: flex-start !important; } +.border-0 { + border: 0 !important; +} -.align-items-end { - align-items: flex-end !important; } +.border-top { + border-top: 1px solid #dee2e6 !important; +} -.align-items-center { - align-items: center !important; } +.border-top-0 { + border-top: 0 !important; +} -.align-items-baseline { - align-items: baseline !important; } +.border-end { + border-right: 1px solid #dee2e6 !important; +} -.align-items-stretch { - align-items: stretch !important; } +.border-end-0 { + border-right: 0 !important; +} -.align-content-start { - align-content: flex-start !important; } +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} -.align-content-end { - align-content: flex-end !important; } +.border-bottom-0 { + border-bottom: 0 !important; +} -.align-content-center { - align-content: center !important; } +.border-start { + border-left: 1px solid #dee2e6 !important; +} -.align-content-between { - align-content: space-between !important; } +.border-start-0 { + border-left: 0 !important; +} -.align-content-around { - align-content: space-around !important; } +.border-primary { + border-color: #0d6efd !important; +} -.align-content-stretch { - align-content: stretch !important; } +.border-secondary { + border-color: #6c757d !important; +} -.align-self-auto { - align-self: auto !important; } +.border-success { + border-color: #198754 !important; +} -.align-self-start { - align-self: flex-start !important; } +.border-info { + border-color: #0dcaf0 !important; +} -.align-self-end { - align-self: flex-end !important; } +.border-warning { + border-color: #ffc107 !important; +} -.align-self-center { - align-self: center !important; } +.border-danger { + border-color: #dc3545 !important; +} -.align-self-baseline { - align-self: baseline !important; } +.border-light { + border-color: #f8f9fa !important; +} -.align-self-stretch { - align-self: stretch !important; } +.border-dark { + border-color: #212529 !important; +} -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; } - .flex-sm-column { - flex-direction: column !important; } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; } - .flex-sm-wrap { - flex-wrap: wrap !important; } - .flex-sm-nowrap { - flex-wrap: nowrap !important; } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-sm-fill { - flex: 1 1 auto !important; } - .flex-sm-grow-0 { - flex-grow: 0 !important; } - .flex-sm-grow-1 { - flex-grow: 1 !important; } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-sm-start { - justify-content: flex-start !important; } - .justify-content-sm-end { - justify-content: flex-end !important; } - .justify-content-sm-center { - justify-content: center !important; } - .justify-content-sm-between { - justify-content: space-between !important; } - .justify-content-sm-around { - justify-content: space-around !important; } - .align-items-sm-start { - align-items: flex-start !important; } - .align-items-sm-end { - align-items: flex-end !important; } - .align-items-sm-center { - align-items: center !important; } - .align-items-sm-baseline { - align-items: baseline !important; } - .align-items-sm-stretch { - align-items: stretch !important; } - .align-content-sm-start { - align-content: flex-start !important; } - .align-content-sm-end { - align-content: flex-end !important; } - .align-content-sm-center { - align-content: center !important; } - .align-content-sm-between { - align-content: space-between !important; } - .align-content-sm-around { - align-content: space-around !important; } - .align-content-sm-stretch { - align-content: stretch !important; } - .align-self-sm-auto { - align-self: auto !important; } - .align-self-sm-start { - align-self: flex-start !important; } - .align-self-sm-end { - align-self: flex-end !important; } - .align-self-sm-center { - align-self: center !important; } - .align-self-sm-baseline { - align-self: baseline !important; } - .align-self-sm-stretch { - align-self: stretch !important; } } +.border-white { + border-color: #fff !important; +} -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; } - .flex-md-column { - flex-direction: column !important; } - .flex-md-row-reverse { - flex-direction: row-reverse !important; } - .flex-md-column-reverse { - flex-direction: column-reverse !important; } - .flex-md-wrap { - flex-wrap: wrap !important; } - .flex-md-nowrap { - flex-wrap: nowrap !important; } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-md-fill { - flex: 1 1 auto !important; } - .flex-md-grow-0 { - flex-grow: 0 !important; } - .flex-md-grow-1 { - flex-grow: 1 !important; } - .flex-md-shrink-0 { - flex-shrink: 0 !important; } - .flex-md-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-md-start { - justify-content: flex-start !important; } - .justify-content-md-end { - justify-content: flex-end !important; } - .justify-content-md-center { - justify-content: center !important; } - .justify-content-md-between { - justify-content: space-between !important; } - .justify-content-md-around { - justify-content: space-around !important; } - .align-items-md-start { - align-items: flex-start !important; } - .align-items-md-end { - align-items: flex-end !important; } - .align-items-md-center { - align-items: center !important; } - .align-items-md-baseline { - align-items: baseline !important; } - .align-items-md-stretch { - align-items: stretch !important; } - .align-content-md-start { - align-content: flex-start !important; } - .align-content-md-end { - align-content: flex-end !important; } - .align-content-md-center { - align-content: center !important; } - .align-content-md-between { - align-content: space-between !important; } - .align-content-md-around { - align-content: space-around !important; } - .align-content-md-stretch { - align-content: stretch !important; } - .align-self-md-auto { - align-self: auto !important; } - .align-self-md-start { - align-self: flex-start !important; } - .align-self-md-end { - align-self: flex-end !important; } - .align-self-md-center { - align-self: center !important; } - .align-self-md-baseline { - align-self: baseline !important; } - .align-self-md-stretch { - align-self: stretch !important; } } +.border-1 { + border-width: 1px !important; +} -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; } - .flex-lg-column { - flex-direction: column !important; } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; } - .flex-lg-wrap { - flex-wrap: wrap !important; } - .flex-lg-nowrap { - flex-wrap: nowrap !important; } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-lg-fill { - flex: 1 1 auto !important; } - .flex-lg-grow-0 { - flex-grow: 0 !important; } - .flex-lg-grow-1 { - flex-grow: 1 !important; } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-lg-start { - justify-content: flex-start !important; } - .justify-content-lg-end { - justify-content: flex-end !important; } - .justify-content-lg-center { - justify-content: center !important; } - .justify-content-lg-between { - justify-content: space-between !important; } - .justify-content-lg-around { - justify-content: space-around !important; } - .align-items-lg-start { - align-items: flex-start !important; } - .align-items-lg-end { - align-items: flex-end !important; } - .align-items-lg-center { - align-items: center !important; } - .align-items-lg-baseline { - align-items: baseline !important; } - .align-items-lg-stretch { - align-items: stretch !important; } - .align-content-lg-start { - align-content: flex-start !important; } - .align-content-lg-end { - align-content: flex-end !important; } - .align-content-lg-center { - align-content: center !important; } - .align-content-lg-between { - align-content: space-between !important; } - .align-content-lg-around { - align-content: space-around !important; } - .align-content-lg-stretch { - align-content: stretch !important; } - .align-self-lg-auto { - align-self: auto !important; } - .align-self-lg-start { - align-self: flex-start !important; } - .align-self-lg-end { - align-self: flex-end !important; } - .align-self-lg-center { - align-self: center !important; } - .align-self-lg-baseline { - align-self: baseline !important; } - .align-self-lg-stretch { - align-self: stretch !important; } } +.border-2 { + border-width: 2px !important; +} -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; } - .flex-xl-column { - flex-direction: column !important; } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xl-wrap { - flex-wrap: wrap !important; } - .flex-xl-nowrap { - flex-wrap: nowrap !important; } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-xl-fill { - flex: 1 1 auto !important; } - .flex-xl-grow-0 { - flex-grow: 0 !important; } - .flex-xl-grow-1 { - flex-grow: 1 !important; } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-xl-start { - justify-content: flex-start !important; } - .justify-content-xl-end { - justify-content: flex-end !important; } - .justify-content-xl-center { - justify-content: center !important; } - .justify-content-xl-between { - justify-content: space-between !important; } - .justify-content-xl-around { - justify-content: space-around !important; } - .align-items-xl-start { - align-items: flex-start !important; } - .align-items-xl-end { - align-items: flex-end !important; } - .align-items-xl-center { - align-items: center !important; } - .align-items-xl-baseline { - align-items: baseline !important; } - .align-items-xl-stretch { - align-items: stretch !important; } - .align-content-xl-start { - align-content: flex-start !important; } - .align-content-xl-end { - align-content: flex-end !important; } - .align-content-xl-center { - align-content: center !important; } - .align-content-xl-between { - align-content: space-between !important; } - .align-content-xl-around { - align-content: space-around !important; } - .align-content-xl-stretch { - align-content: stretch !important; } - .align-self-xl-auto { - align-self: auto !important; } - .align-self-xl-start { - align-self: flex-start !important; } - .align-self-xl-end { - align-self: flex-end !important; } - .align-self-xl-center { - align-self: center !important; } - .align-self-xl-baseline { - align-self: baseline !important; } - .align-self-xl-stretch { - align-self: stretch !important; } } +.border-3 { + border-width: 3px !important; +} -.float-left { - float: left !important; } +.border-4 { + border-width: 4px !important; +} -.float-right { - float: right !important; } +.border-5 { + border-width: 5px !important; +} -.float-none { - float: none !important; } +.w-25 { + width: 25% !important; +} -@media (min-width: 576px) { - .float-sm-left { - float: left !important; } - .float-sm-right { - float: right !important; } - .float-sm-none { - float: none !important; } } +.w-50 { + width: 50% !important; +} -@media (min-width: 768px) { - .float-md-left { - float: left !important; } - .float-md-right { - float: right !important; } - .float-md-none { - float: none !important; } } +.w-75 { + width: 75% !important; +} -@media (min-width: 992px) { - .float-lg-left { - float: left !important; } - .float-lg-right { - float: right !important; } - .float-lg-none { - float: none !important; } } +.w-100 { + width: 100% !important; +} -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; } - .float-xl-right { - float: right !important; } - .float-xl-none { - float: none !important; } } +.w-auto { + width: auto !important; +} -.user-select-all { - user-select: all !important; } +.mw-100 { + max-width: 100% !important; +} -.user-select-auto { - user-select: auto !important; } +.vw-100 { + width: 100vw !important; +} -.user-select-none { - user-select: none !important; } +.min-vw-100 { + min-width: 100vw !important; +} -.overflow-auto { - overflow: auto !important; } +.h-25 { + height: 25% !important; +} -.overflow-hidden { - overflow: hidden !important; } +.h-50 { + height: 50% !important; +} -.position-static { - position: static !important; } +.h-75 { + height: 75% !important; +} -.position-relative { - position: relative !important; } +.h-100 { + height: 100% !important; +} -.position-absolute { - position: absolute !important; } +.h-auto { + height: auto !important; +} -.position-fixed { - position: fixed !important; } +.mh-100 { + max-height: 100% !important; +} -.position-sticky { - position: sticky !important; } +.vh-100 { + height: 100vh !important; +} -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; } +.min-vh-100 { + min-height: 100vh !important; +} -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; } +.flex-fill { + flex: 1 1 auto !important; +} -@supports (position: sticky) { - .sticky-top { - position: sticky; - top: 0; - z-index: 1020; } } +.flex-row { + flex-direction: row !important; +} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; } +.flex-column { + flex-direction: column !important; +} -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; } +.flex-row-reverse { + flex-direction: row-reverse !important; +} -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } +.flex-column-reverse { + flex-direction: column-reverse !important; +} -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } +.flex-grow-0 { + flex-grow: 0 !important; +} -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } +.flex-grow-1 { + flex-grow: 1 !important; +} -.shadow-none { - box-shadow: none !important; } +.flex-shrink-0 { + flex-shrink: 0 !important; +} -.w-25 { - width: 25% !important; } +.flex-shrink-1 { + flex-shrink: 1 !important; +} -.w-50 { - width: 50% !important; } +.flex-wrap { + flex-wrap: wrap !important; +} -.w-75 { - width: 75% !important; } +.flex-nowrap { + flex-wrap: nowrap !important; +} -.w-100 { - width: 100% !important; } +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} -.w-auto { - width: auto !important; } +.gap-0 { + gap: 0 !important; +} -.h-25 { - height: 25% !important; } +.gap-1 { + gap: 0.25rem !important; +} -.h-50 { - height: 50% !important; } +.gap-2 { + gap: 0.5rem !important; +} -.h-75 { - height: 75% !important; } +.gap-3 { + gap: 1rem !important; +} -.h-100 { - height: 100% !important; } +.gap-4 { + gap: 1.5rem !important; +} -.h-auto { - height: auto !important; } +.gap-5 { + gap: 3rem !important; +} -.mw-100 { - max-width: 100% !important; } +.justify-content-start { + justify-content: flex-start !important; +} -.mh-100 { - max-height: 100% !important; } +.justify-content-end { + justify-content: flex-end !important; +} -.min-vw-100 { - min-width: 100vw !important; } +.justify-content-center { + justify-content: center !important; +} -.min-vh-100 { - min-height: 100vh !important; } +.justify-content-between { + justify-content: space-between !important; +} -.vw-100 { - width: 100vw !important; } +.justify-content-around { + justify-content: space-around !important; +} -.vh-100 { - height: 100vh !important; } +.justify-content-evenly { + justify-content: space-evenly !important; +} -.m-0 { - margin: 0 !important; } +.align-items-start { + align-items: flex-start !important; +} -.mt-0, -.my-0 { - margin-top: 0 !important; } +.align-items-end { + align-items: flex-end !important; +} -.mr-0, -.mx-0 { - margin-right: 0 !important; } +.align-items-center { + align-items: center !important; +} -.mb-0, -.my-0 { - margin-bottom: 0 !important; } +.align-items-baseline { + align-items: baseline !important; +} -.ml-0, -.mx-0 { - margin-left: 0 !important; } +.align-items-stretch { + align-items: stretch !important; +} -.m-1 { - margin: 0.25rem !important; } +.align-content-start { + align-content: flex-start !important; +} -.mt-1, -.my-1 { - margin-top: 0.25rem !important; } +.align-content-end { + align-content: flex-end !important; +} -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; } +.align-content-center { + align-content: center !important; +} -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; } +.align-content-between { + align-content: space-between !important; +} -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; } +.align-content-around { + align-content: space-around !important; +} -.m-2 { - margin: 0.5rem !important; } +.align-content-stretch { + align-content: stretch !important; +} -.mt-2, -.my-2 { - margin-top: 0.5rem !important; } +.align-self-auto { + align-self: auto !important; +} -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; } +.align-self-start { + align-self: flex-start !important; +} -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; } +.align-self-end { + align-self: flex-end !important; +} -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; } +.align-self-center { + align-self: center !important; +} -.m-3 { - margin: 1rem !important; } +.align-self-baseline { + align-self: baseline !important; +} -.mt-3, -.my-3 { - margin-top: 1rem !important; } +.align-self-stretch { + align-self: stretch !important; +} -.mr-3, -.mx-3 { - margin-right: 1rem !important; } +.order-first { + order: -1 !important; +} -.mb-3, -.my-3 { - margin-bottom: 1rem !important; } +.order-0 { + order: 0 !important; +} -.ml-3, -.mx-3 { - margin-left: 1rem !important; } +.order-1 { + order: 1 !important; +} -.m-4 { - margin: 1.5rem !important; } +.order-2 { + order: 2 !important; +} -.mt-4, -.my-4 { - margin-top: 1.5rem !important; } +.order-3 { + order: 3 !important; +} -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; } +.order-4 { + order: 4 !important; +} -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; } +.order-5 { + order: 5 !important; +} -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; } +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} .m-5 { - margin: 3rem !important; } + margin: 3rem !important; +} -.mt-5, -.my-5 { - margin-top: 3rem !important; } +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} + +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} + +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} + +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} -.mr-5, .mx-5 { - margin-right: 3rem !important; } + margin-right: 3rem !important; + margin-left: 3rem !important; +} + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} -.mb-5, .my-5 { - margin-bottom: 3rem !important; } + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} -.ml-5, -.mx-5 { - margin-left: 3rem !important; } +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} -.p-0 { - padding: 0 !important; } +.mt-0 { + margin-top: 0 !important; +} -.pt-0, -.py-0 { - padding-top: 0 !important; } +.mt-1 { + margin-top: 0.25rem !important; +} -.pr-0, -.px-0 { - padding-right: 0 !important; } +.mt-2 { + margin-top: 0.5rem !important; +} -.pb-0, -.py-0 { - padding-bottom: 0 !important; } +.mt-3 { + margin-top: 1rem !important; +} -.pl-0, -.px-0 { - padding-left: 0 !important; } +.mt-4 { + margin-top: 1.5rem !important; +} -.p-1 { - padding: 0.25rem !important; } +.mt-5 { + margin-top: 3rem !important; +} -.pt-1, -.py-1 { - padding-top: 0.25rem !important; } +.mt-auto { + margin-top: auto !important; +} -.pr-1, -.px-1 { - padding-right: 0.25rem !important; } +.me-0 { + margin-right: 0 !important; +} -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; } +.me-1 { + margin-right: 0.25rem !important; +} -.pl-1, -.px-1 { - padding-left: 0.25rem !important; } +.me-2 { + margin-right: 0.5rem !important; +} -.p-2 { - padding: 0.5rem !important; } +.me-3 { + margin-right: 1rem !important; +} -.pt-2, -.py-2 { - padding-top: 0.5rem !important; } +.me-4 { + margin-right: 1.5rem !important; +} -.pr-2, -.px-2 { - padding-right: 0.5rem !important; } +.me-5 { + margin-right: 3rem !important; +} -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; } +.me-auto { + margin-right: auto !important; +} -.pl-2, -.px-2 { - padding-left: 0.5rem !important; } +.mb-0 { + margin-bottom: 0 !important; +} -.p-3 { - padding: 1rem !important; } +.mb-1 { + margin-bottom: 0.25rem !important; +} -.pt-3, -.py-3 { - padding-top: 1rem !important; } +.mb-2 { + margin-bottom: 0.5rem !important; +} -.pr-3, -.px-3 { - padding-right: 1rem !important; } +.mb-3 { + margin-bottom: 1rem !important; +} -.pb-3, -.py-3 { - padding-bottom: 1rem !important; } +.mb-4 { + margin-bottom: 1.5rem !important; +} -.pl-3, -.px-3 { - padding-left: 1rem !important; } +.mb-5 { + margin-bottom: 3rem !important; +} -.p-4 { - padding: 1.5rem !important; } +.mb-auto { + margin-bottom: auto !important; +} -.pt-4, -.py-4 { - padding-top: 1.5rem !important; } +.ms-0 { + margin-left: 0 !important; +} -.pr-4, -.px-4 { - padding-right: 1.5rem !important; } +.ms-1 { + margin-left: 0.25rem !important; +} -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; } +.ms-2 { + margin-left: 0.5rem !important; +} -.pl-4, -.px-4 { - padding-left: 1.5rem !important; } +.ms-3 { + margin-left: 1rem !important; +} + +.ms-4 { + margin-left: 1.5rem !important; +} + +.ms-5 { + margin-left: 3rem !important; +} + +.ms-auto { + margin-left: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} .p-5 { - padding: 3rem !important; } + padding: 3rem !important; +} -.pt-5, -.py-5 { - padding-top: 3rem !important; } +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; +} + +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} + +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} + +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} -.pr-5, .px-5 { - padding-right: 3rem !important; } + padding-right: 3rem !important; + padding-left: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} -.pb-5, .py-5 { - padding-bottom: 3rem !important; } + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} -.pl-5, -.px-5 { - padding-left: 3rem !important; } +.pt-0 { + padding-top: 0 !important; +} -.m-n1 { - margin: -0.25rem !important; } +.pt-1 { + padding-top: 0.25rem !important; +} -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; } +.pt-2 { + padding-top: 0.5rem !important; +} -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; } +.pt-3 { + padding-top: 1rem !important; +} -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; } +.pt-4 { + padding-top: 1.5rem !important; +} -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; } +.pt-5 { + padding-top: 3rem !important; +} -.m-n2 { - margin: -0.5rem !important; } +.pe-0 { + padding-right: 0 !important; +} -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; } +.pe-1 { + padding-right: 0.25rem !important; +} -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; } +.pe-2 { + padding-right: 0.5rem !important; +} -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; } +.pe-3 { + padding-right: 1rem !important; +} -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; } +.pe-4 { + padding-right: 1.5rem !important; +} -.m-n3 { - margin: -1rem !important; } +.pe-5 { + padding-right: 3rem !important; +} -.mt-n3, -.my-n3 { - margin-top: -1rem !important; } +.pb-0 { + padding-bottom: 0 !important; +} -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; } +.pb-1 { + padding-bottom: 0.25rem !important; +} -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; } +.pb-2 { + padding-bottom: 0.5rem !important; +} -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; } +.pb-3 { + padding-bottom: 1rem !important; +} -.m-n4 { - margin: -1.5rem !important; } +.pb-4 { + padding-bottom: 1.5rem !important; +} -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; } +.pb-5 { + padding-bottom: 3rem !important; +} -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; } +.ps-0 { + padding-left: 0 !important; +} -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; } +.ps-1 { + padding-left: 0.25rem !important; +} -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; } +.ps-2 { + padding-left: 0.5rem !important; +} -.m-n5 { - margin: -3rem !important; } +.ps-3 { + padding-left: 1rem !important; +} -.mt-n5, -.my-n5 { - margin-top: -3rem !important; } +.ps-4 { + padding-left: 1.5rem !important; +} -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; } +.ps-5 { + padding-left: 3rem !important; +} -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; } +.font-monospace { + font-family: var(--bs-font-monospace) !important; +} -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; } +.fs-1 { + font-size: calc(1.375rem + 1.5vw) !important; +} -.m-auto { - margin: auto !important; } +.fs-2 { + font-size: calc(1.325rem + 0.9vw) !important; +} -.mt-auto, -.my-auto { - margin-top: auto !important; } +.fs-3 { + font-size: calc(1.3rem + 0.6vw) !important; +} -.mr-auto, -.mx-auto { - margin-right: auto !important; } +.fs-4 { + font-size: calc(1.275rem + 0.3vw) !important; +} -.mb-auto, -.my-auto { - margin-bottom: auto !important; } +.fs-5 { + font-size: 1.25rem !important; +} -.ml-auto, -.mx-auto { - margin-left: auto !important; } +.fs-6 { + font-size: 1rem !important; +} -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; } - .m-sm-1 { - margin: 0.25rem !important; } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; } - .m-sm-2 { - margin: 0.5rem !important; } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; } - .m-sm-3 { - margin: 1rem !important; } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; } - .m-sm-4 { - margin: 1.5rem !important; } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; } - .m-sm-5 { - margin: 3rem !important; } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; } - .p-sm-0 { - padding: 0 !important; } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; } - .p-sm-1 { - padding: 0.25rem !important; } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; } - .p-sm-2 { - padding: 0.5rem !important; } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; } - .p-sm-3 { - padding: 1rem !important; } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; } - .p-sm-4 { - padding: 1.5rem !important; } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; } - .p-sm-5 { - padding: 3rem !important; } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; } - .m-sm-n1 { - margin: -0.25rem !important; } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; } - .m-sm-n2 { - margin: -0.5rem !important; } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; } - .m-sm-n3 { - margin: -1rem !important; } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; } - .m-sm-n4 { - margin: -1.5rem !important; } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; } - .m-sm-n5 { - margin: -3rem !important; } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; } - .m-sm-auto { - margin: auto !important; } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; } } +.fst-italic { + font-style: italic !important; +} -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; } - .m-md-1 { - margin: 0.25rem !important; } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; } - .m-md-2 { - margin: 0.5rem !important; } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; } - .m-md-3 { - margin: 1rem !important; } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; } - .m-md-4 { - margin: 1.5rem !important; } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; } - .m-md-5 { - margin: 3rem !important; } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; } - .p-md-0 { - padding: 0 !important; } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; } - .p-md-1 { - padding: 0.25rem !important; } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; } - .p-md-2 { - padding: 0.5rem !important; } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; } - .p-md-3 { - padding: 1rem !important; } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; } - .p-md-4 { - padding: 1.5rem !important; } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; } - .p-md-5 { - padding: 3rem !important; } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; } - .m-md-n1 { - margin: -0.25rem !important; } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; } - .m-md-n2 { - margin: -0.5rem !important; } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; } - .m-md-n3 { - margin: -1rem !important; } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; } - .m-md-n4 { - margin: -1.5rem !important; } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; } - .m-md-n5 { - margin: -3rem !important; } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; } - .m-md-auto { - margin: auto !important; } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; } } +.fst-normal { + font-style: normal !important; +} -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; } - .m-lg-1 { - margin: 0.25rem !important; } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; } - .m-lg-2 { - margin: 0.5rem !important; } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; } - .m-lg-3 { - margin: 1rem !important; } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; } - .m-lg-4 { - margin: 1.5rem !important; } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; } - .m-lg-5 { - margin: 3rem !important; } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; } - .p-lg-0 { - padding: 0 !important; } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; } - .p-lg-1 { - padding: 0.25rem !important; } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; } - .p-lg-2 { - padding: 0.5rem !important; } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; } - .p-lg-3 { - padding: 1rem !important; } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; } - .p-lg-4 { - padding: 1.5rem !important; } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; } - .p-lg-5 { - padding: 3rem !important; } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; } - .m-lg-n1 { - margin: -0.25rem !important; } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; } - .m-lg-n2 { - margin: -0.5rem !important; } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; } - .m-lg-n3 { - margin: -1rem !important; } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; } - .m-lg-n4 { - margin: -1.5rem !important; } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; } - .m-lg-n5 { - margin: -3rem !important; } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; } - .m-lg-auto { - margin: auto !important; } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; } } +.fw-light { + font-weight: 300 !important; +} -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; } - .m-xl-1 { - margin: 0.25rem !important; } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; } - .m-xl-2 { - margin: 0.5rem !important; } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; } - .m-xl-3 { - margin: 1rem !important; } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; } - .m-xl-4 { - margin: 1.5rem !important; } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; } - .m-xl-5 { - margin: 3rem !important; } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; } - .p-xl-0 { - padding: 0 !important; } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; } - .p-xl-1 { - padding: 0.25rem !important; } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; } - .p-xl-2 { - padding: 0.5rem !important; } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; } - .p-xl-3 { - padding: 1rem !important; } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; } - .p-xl-4 { - padding: 1.5rem !important; } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; } - .p-xl-5 { - padding: 3rem !important; } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; } - .m-xl-n1 { - margin: -0.25rem !important; } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; } - .m-xl-n2 { - margin: -0.5rem !important; } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; } - .m-xl-n3 { - margin: -1rem !important; } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; } - .m-xl-n4 { - margin: -1.5rem !important; } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; } - .m-xl-n5 { - margin: -3rem !important; } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; } - .m-xl-auto { - margin: auto !important; } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; } } +.fw-lighter { + font-weight: lighter !important; +} -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: \\"\\"; - background-color: rgba(0, 0, 0, 0); } +.fw-normal { + font-weight: 400 !important; +} -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace !important; } +.fw-bold { + font-weight: 700 !important; +} -.text-justify { - text-align: justify !important; } +.fw-bolder { + font-weight: bolder !important; +} -.text-wrap { - white-space: normal !important; } +.lh-1 { + line-height: 1 !important; +} -.text-nowrap { - white-space: nowrap !important; } +.lh-sm { + line-height: 1.25 !important; +} -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } +.lh-base { + line-height: 1.5 !important; +} -.text-left { - text-align: left !important; } +.lh-lg { + line-height: 2 !important; +} -.text-right { - text-align: right !important; } +.text-start { + text-align: left !important; +} -.text-center { - text-align: center !important; } +.text-end { + text-align: right !important; +} -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; } - .text-sm-right { - text-align: right !important; } - .text-sm-center { - text-align: center !important; } } +.text-center { + text-align: center !important; +} -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; } - .text-md-right { - text-align: right !important; } - .text-md-center { - text-align: center !important; } } +.text-decoration-none { + text-decoration: none !important; +} -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; } - .text-lg-right { - text-align: right !important; } - .text-lg-center { - text-align: center !important; } } +.text-decoration-underline { + text-decoration: underline !important; +} -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; } - .text-xl-right { - text-align: right !important; } - .text-xl-center { - text-align: center !important; } } +.text-decoration-line-through { + text-decoration: line-through !important; +} .text-lowercase { - text-transform: lowercase !important; } + text-transform: lowercase !important; +} .text-uppercase { - text-transform: uppercase !important; } + text-transform: uppercase !important; +} .text-capitalize { - text-transform: capitalize !important; } - -.font-weight-light { - font-weight: 300 !important; } - -.font-weight-lighter { - font-weight: lighter !important; } - -.font-weight-normal { - font-weight: 400 !important; } - -.font-weight-bold { - font-weight: 700 !important; } + text-transform: capitalize !important; +} -.font-weight-bolder { - font-weight: bolder !important; } +.text-wrap { + white-space: normal !important; +} -.font-italic { - font-style: italic !important; } +.text-nowrap { + white-space: nowrap !important; +} -.text-white { - color: #fff !important; } +/* rtl:begin:remove */ +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; +} +/* rtl:end:remove */ .text-primary { - color: #007bff !important; } - -a.text-primary:hover, a.text-primary:focus { - color: #0056b3 !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; +} .text-secondary { - color: #6c757d !important; } - -a.text-secondary:hover, a.text-secondary:focus { - color: #494f54 !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; +} .text-success { - color: #28a745 !important; } - -a.text-success:hover, a.text-success:focus { - color: #19692c !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; +} .text-info { - color: #17a2b8 !important; } - -a.text-info:hover, a.text-info:focus { - color: #0f6674 !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; +} .text-warning { - color: #ffc107 !important; } - -a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; +} .text-danger { - color: #dc3545 !important; } - -a.text-danger:hover, a.text-danger:focus { - color: #a71d2a !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; +} .text-light { - color: #f8f9fa !important; } - -a.text-light:hover, a.text-light:focus { - color: #cbd3da !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; +} .text-dark { - color: #343a40 !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; +} -a.text-dark:hover, a.text-dark:focus { - color: #121416 !important; } +.text-black { + --bs-text-opacity: 1; + color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; +} + +.text-white { + --bs-text-opacity: 1; + color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; +} .text-body { - color: #212529 !important; } + --bs-text-opacity: 1; + color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; +} .text-muted { - color: #6c757d !important; } + --bs-text-opacity: 1; + color: #6c757d !important; +} .text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; } + --bs-text-opacity: 1; + color: rgba(0, 0, 0, 0.5) !important; +} .text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; } - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; } - -.text-decoration-none { - text-decoration: none !important; } - -.text-break { - word-break: break-word !important; - word-wrap: break-word !important; } + --bs-text-opacity: 1; + color: rgba(255, 255, 255, 0.5) !important; +} .text-reset { - color: inherit !important; } + --bs-text-opacity: 1; + color: inherit !important; +} -.visible { - visibility: visible !important; } +.text-opacity-25 { + --bs-text-opacity: 0.25; +} -.invisible { - visibility: hidden !important; } +.text-opacity-50 { + --bs-text-opacity: 0.5; +} -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - box-shadow: none !important; } - a:not(.btn) { - text-decoration: underline; } - abbr[title]::after { - content: \\" (\\" attr(title) \\")\\"; } - pre { - white-space: pre-wrap !important; } - pre, - blockquote { - border: 1px solid #adb5bd; - page-break-inside: avoid; } - tr, - img { - page-break-inside: avoid; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } - @page { - size: a3; } - body { - min-width: 992px !important; } - .container { - min-width: 992px !important; } - .navbar { - display: none; } - .badge { - border: 1px solid #000; } - .table { - border-collapse: collapse !important; } - .table td, - .table th { - background-color: #fff !important; } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6 !important; } - .table-dark { - color: inherit; } - .table-dark th, - .table-dark td, - .table-dark thead th, - .table-dark tbody + tbody { - border-color: #dee2e6; } - .table .thead-dark th { - color: inherit; - border-color: #dee2e6; } } -" -`; +.text-opacity-75 { + --bs-text-opacity: 0.75; +} -exports[`loader should work with "bootstrap" package v4, import as a package (node-sass) (sass): errors 1`] = `Array []`; +.text-opacity-100 { + --bs-text-opacity: 1; +} -exports[`loader should work with "bootstrap" package v4, import as a package (node-sass) (sass): warnings 1`] = `Array []`; +.bg-primary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; +} -exports[`loader should work with "bootstrap" package v4, import as a package (node-sass) (scss): css 1`] = ` -"/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; } +.bg-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; +} -*, -*::before, -*::after { - box-sizing: border-box; } +.bg-success { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; +} -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } +.bg-info { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; +} -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; } +.bg-warning { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; +} -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; } +.bg-danger { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; +} -[tabindex=\\"-1\\"]:focus:not(:focus-visible) { - outline: 0 !important; } +.bg-light { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; +} -hr { - box-sizing: content-box; - height: 0; - overflow: visible; } +.bg-dark { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; +} -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; } +.bg-black { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; +} -p { - margin-top: 0; - margin-bottom: 1rem; } +.bg-white { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; +} -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - text-decoration-skip-ink: none; } +.bg-body { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; +} -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } +.bg-transparent { + --bs-bg-opacity: 1; + background-color: transparent !important; +} -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; } +.bg-opacity-10 { + --bs-bg-opacity: 0.1; +} -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; } +.bg-opacity-25 { + --bs-bg-opacity: 0.25; +} -dt { - font-weight: 700; } +.bg-opacity-50 { + --bs-bg-opacity: 0.5; +} -dd { - margin-bottom: .5rem; - margin-left: 0; } +.bg-opacity-75 { + --bs-bg-opacity: 0.75; +} -blockquote { - margin: 0 0 1rem; } +.bg-opacity-100 { + --bs-bg-opacity: 1; +} -b, -strong { - font-weight: bolder; } +.bg-gradient { + background-image: var(--bs-gradient) !important; +} -small { - font-size: 80%; } +.user-select-all { + user-select: all !important; +} -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; } +.user-select-auto { + user-select: auto !important; +} -sub { - bottom: -.25em; } +.user-select-none { + user-select: none !important; +} -sup { - top: -.5em; } +.pe-none { + pointer-events: none !important; +} -a { - color: #007bff; - text-decoration: none; - background-color: transparent; } - a:hover { - color: #0056b3; - text-decoration: underline; } +.pe-auto { + pointer-events: auto !important; +} -a:not([href]):not([class]) { - color: inherit; - text-decoration: none; } - a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } +.rounded { + border-radius: 0.25rem !important; +} -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; - font-size: 1em; } +.rounded-0 { + border-radius: 0 !important; +} -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; } +.rounded-1 { + border-radius: 0.2rem !important; +} -figure { - margin: 0 0 1rem; } +.rounded-2 { + border-radius: 0.25rem !important; +} -img { - vertical-align: middle; - border-style: none; } +.rounded-3 { + border-radius: 0.3rem !important; +} -svg { - overflow: hidden; - vertical-align: middle; } +.rounded-circle { + border-radius: 50% !important; +} -table { - border-collapse: collapse; } +.rounded-pill { + border-radius: 50rem !important; +} -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; } +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} -th { - text-align: inherit; - text-align: -webkit-match-parent; } +.rounded-end { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} -label { - display: inline-block; - margin-bottom: 0.5rem; } +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} -button { - border-radius: 0; } +.rounded-start { + border-bottom-left-radius: 0.25rem !important; + border-top-left-radius: 0.25rem !important; +} -button:focus:not(:focus-visible) { - outline: 0; } +.visible { + visibility: visible !important; +} -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } +.invisible { + visibility: hidden !important; +} -button, -input { - overflow: visible; } +@media (min-width: 576px) { + .float-sm-start { + float: left !important; + } -button, -select { - text-transform: none; } + .float-sm-end { + float: right !important; + } -[role=\\"button\\"] { - cursor: pointer; } + .float-sm-none { + float: none !important; + } -select { - word-wrap: normal; } + .d-sm-inline { + display: inline !important; + } -button, -[type=\\"button\\"], -[type=\\"reset\\"], -[type=\\"submit\\"] { - -webkit-appearance: button; } + .d-sm-inline-block { + display: inline-block !important; + } -button:not(:disabled), -[type=\\"button\\"]:not(:disabled), -[type=\\"reset\\"]:not(:disabled), -[type=\\"submit\\"]:not(:disabled) { - cursor: pointer; } + .d-sm-block { + display: block !important; + } -button::-moz-focus-inner, -[type=\\"button\\"]::-moz-focus-inner, -[type=\\"reset\\"]::-moz-focus-inner, -[type=\\"submit\\"]::-moz-focus-inner { - padding: 0; - border-style: none; } + .d-sm-grid { + display: grid !important; + } -input[type=\\"radio\\"], -input[type=\\"checkbox\\"] { - box-sizing: border-box; - padding: 0; } + .d-sm-table { + display: table !important; + } -textarea { - overflow: auto; - resize: vertical; } + .d-sm-table-row { + display: table-row !important; + } -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } + .d-sm-table-cell { + display: table-cell !important; + } -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; } + .d-sm-flex { + display: flex !important; + } -progress { - vertical-align: baseline; } + .d-sm-inline-flex { + display: inline-flex !important; + } -[type=\\"number\\"]::-webkit-inner-spin-button, -[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } + .d-sm-none { + display: none !important; + } -[type=\\"search\\"] { - outline-offset: -2px; - -webkit-appearance: none; } + .flex-sm-fill { + flex: 1 1 auto !important; + } -[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } + .flex-sm-row { + flex-direction: row !important; + } -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } + .flex-sm-column { + flex-direction: column !important; + } -output { - display: inline-block; } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } -summary { - display: list-item; - cursor: pointer; } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } -template { - display: none; } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } -[hidden] { - display: none !important; } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } -h1, .h1 { - font-size: 2.5rem; } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } -h2, .h2 { - font-size: 2rem; } + .flex-sm-wrap { + flex-wrap: wrap !important; + } -h3, .h3 { - font-size: 1.75rem; } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } -h4, .h4 { - font-size: 1.5rem; } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } -h5, .h5 { - font-size: 1.25rem; } + .gap-sm-0 { + gap: 0 !important; + } -h6, .h6 { - font-size: 1rem; } + .gap-sm-1 { + gap: 0.25rem !important; + } -.lead { - font-size: 1.25rem; - font-weight: 300; } + .gap-sm-2 { + gap: 0.5rem !important; + } -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; } + .gap-sm-3 { + gap: 1rem !important; + } -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; } + .gap-sm-4 { + gap: 1.5rem !important; + } -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; } + .gap-sm-5 { + gap: 3rem !important; + } -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; } + .justify-content-sm-start { + justify-content: flex-start !important; + } -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); } + .justify-content-sm-end { + justify-content: flex-end !important; + } -small, -.small { - font-size: 80%; - font-weight: 400; } + .justify-content-sm-center { + justify-content: center !important; + } -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; } + .justify-content-sm-between { + justify-content: space-between !important; + } -.list-unstyled { - padding-left: 0; - list-style: none; } + .justify-content-sm-around { + justify-content: space-around !important; + } -.list-inline { - padding-left: 0; - list-style: none; } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } -.list-inline-item { - display: inline-block; } - .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } + .align-items-sm-start { + align-items: flex-start !important; + } -.initialism { - font-size: 90%; - text-transform: uppercase; } + .align-items-sm-end { + align-items: flex-end !important; + } -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } + .align-items-sm-center { + align-items: center !important; + } -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; } - .blockquote-footer::before { - content: \\"\\\\2014\\\\00A0\\"; } + .align-items-sm-baseline { + align-items: baseline !important; + } -.img-fluid { - max-width: 100%; - height: auto; } + .align-items-sm-stretch { + align-items: stretch !important; + } -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; } + .align-content-sm-start { + align-content: flex-start !important; + } -.figure { - display: inline-block; } + .align-content-sm-end { + align-content: flex-end !important; + } -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; } + .align-content-sm-center { + align-content: center !important; + } -.figure-caption { - font-size: 90%; - color: #6c757d; } + .align-content-sm-between { + align-content: space-between !important; + } -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word; } - a > code { - color: inherit; } + .align-content-sm-around { + align-content: space-around !important; + } -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; } + .align-content-sm-stretch { + align-content: stretch !important; + } -pre { - display: block; - font-size: 87.5%; - color: #212529; } - pre code { - font-size: inherit; - color: inherit; - word-break: normal; } + .align-self-sm-auto { + align-self: auto !important; + } -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; } + .align-self-sm-start { + align-self: flex-start !important; + } -.container, -.container-fluid, -.container-sm, -.container-md, -.container-lg, -.container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } + .align-self-sm-end { + align-self: flex-end !important; + } -@media (min-width: 576px) { - .container, .container-sm { - max-width: 540px; } } + .align-self-sm-center { + align-self: center !important; + } -@media (min-width: 768px) { - .container, .container-sm, .container-md { - max-width: 720px; } } + .align-self-sm-baseline { + align-self: baseline !important; + } -@media (min-width: 992px) { - .container, .container-sm, .container-md, .container-lg { - max-width: 960px; } } + .align-self-sm-stretch { + align-self: stretch !important; + } -@media (min-width: 1200px) { - .container, .container-sm, .container-md, .container-lg, .container-xl { - max-width: 1140px; } } + .order-sm-first { + order: -1 !important; + } -.row { - display: flex; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; } + .order-sm-0 { + order: 0 !important; + } -.no-gutters { - margin-right: 0; - margin-left: 0; } - .no-gutters > .col, - .no-gutters > [class*=\\"col-\\"] { - padding-right: 0; - padding-left: 0; } - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, -.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, -.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; } + .order-sm-1 { + order: 1 !important; + } -.col { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } + .order-sm-2 { + order: 2 !important; + } -.row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; } + .order-sm-3 { + order: 3 !important; + } -.row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; } + .order-sm-4 { + order: 4 !important; + } -.row-cols-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + .order-sm-5 { + order: 5 !important; + } -.row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; } + .order-sm-last { + order: 6 !important; + } -.row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; } + .m-sm-0 { + margin: 0 !important; + } -.row-cols-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + .m-sm-1 { + margin: 0.25rem !important; + } -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } + .m-sm-2 { + margin: 0.5rem !important; + } -.col-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } + .m-sm-3 { + margin: 1rem !important; + } -.col-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } + .m-sm-4 { + margin: 1.5rem !important; + } -.col-3 { - flex: 0 0 25%; - max-width: 25%; } + .m-sm-5 { + margin: 3rem !important; + } -.col-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } + .m-sm-auto { + margin: auto !important; + } -.col-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } -.col-6 { - flex: 0 0 50%; - max-width: 50%; } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } -.col-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } -.col-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -.col-9 { - flex: 0 0 75%; - max-width: 75%; } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -.col-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -.col-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } -.col-12 { - flex: 0 0 100%; - max-width: 100%; } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -.order-first { - order: -1; } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.order-last { - order: 13; } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -.order-0 { - order: 0; } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -.order-1 { - order: 1; } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.order-2 { - order: 2; } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.order-3 { - order: 3; } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -.order-4 { - order: 4; } + .mt-sm-0 { + margin-top: 0 !important; + } -.order-5 { - order: 5; } + .mt-sm-1 { + margin-top: 0.25rem !important; + } -.order-6 { - order: 6; } + .mt-sm-2 { + margin-top: 0.5rem !important; + } -.order-7 { - order: 7; } + .mt-sm-3 { + margin-top: 1rem !important; + } -.order-8 { - order: 8; } + .mt-sm-4 { + margin-top: 1.5rem !important; + } -.order-9 { - order: 9; } + .mt-sm-5 { + margin-top: 3rem !important; + } -.order-10 { - order: 10; } + .mt-sm-auto { + margin-top: auto !important; + } -.order-11 { - order: 11; } + .me-sm-0 { + margin-right: 0 !important; + } -.order-12 { - order: 12; } + .me-sm-1 { + margin-right: 0.25rem !important; + } -.offset-1 { - margin-left: 8.33333%; } + .me-sm-2 { + margin-right: 0.5rem !important; + } -.offset-2 { - margin-left: 16.66667%; } + .me-sm-3 { + margin-right: 1rem !important; + } -.offset-3 { - margin-left: 25%; } + .me-sm-4 { + margin-right: 1.5rem !important; + } -.offset-4 { - margin-left: 33.33333%; } + .me-sm-5 { + margin-right: 3rem !important; + } -.offset-5 { - margin-left: 41.66667%; } + .me-sm-auto { + margin-right: auto !important; + } -.offset-6 { - margin-left: 50%; } + .mb-sm-0 { + margin-bottom: 0 !important; + } -.offset-7 { - margin-left: 58.33333%; } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } -.offset-8 { - margin-left: 66.66667%; } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } -.offset-9 { - margin-left: 75%; } + .mb-sm-3 { + margin-bottom: 1rem !important; + } -.offset-10 { - margin-left: 83.33333%; } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } -.offset-11 { - margin-left: 91.66667%; } + .mb-sm-5 { + margin-bottom: 3rem !important; + } -@media (min-width: 576px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } - .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-sm-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-sm-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-sm-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-sm-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-sm-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-sm-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-sm-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-sm-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-sm-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-sm-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-sm-first { - order: -1; } - .order-sm-last { - order: 13; } - .order-sm-0 { - order: 0; } - .order-sm-1 { - order: 1; } - .order-sm-2 { - order: 2; } - .order-sm-3 { - order: 3; } - .order-sm-4 { - order: 4; } - .order-sm-5 { - order: 5; } - .order-sm-6 { - order: 6; } - .order-sm-7 { - order: 7; } - .order-sm-8 { - order: 8; } - .order-sm-9 { - order: 9; } - .order-sm-10 { - order: 10; } - .order-sm-11 { - order: 11; } - .order-sm-12 { - order: 12; } - .offset-sm-0 { - margin-left: 0; } - .offset-sm-1 { - margin-left: 8.33333%; } - .offset-sm-2 { - margin-left: 16.66667%; } - .offset-sm-3 { - margin-left: 25%; } - .offset-sm-4 { - margin-left: 33.33333%; } - .offset-sm-5 { - margin-left: 41.66667%; } - .offset-sm-6 { - margin-left: 50%; } - .offset-sm-7 { - margin-left: 58.33333%; } - .offset-sm-8 { - margin-left: 66.66667%; } - .offset-sm-9 { - margin-left: 75%; } - .offset-sm-10 { - margin-left: 83.33333%; } - .offset-sm-11 { - margin-left: 91.66667%; } } + .mb-sm-auto { + margin-bottom: auto !important; + } -@media (min-width: 768px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-md-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-md-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-md-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-md-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-md-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-md-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-md-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-md-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-md-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-md-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-md-first { - order: -1; } - .order-md-last { - order: 13; } - .order-md-0 { - order: 0; } - .order-md-1 { - order: 1; } - .order-md-2 { - order: 2; } - .order-md-3 { - order: 3; } - .order-md-4 { - order: 4; } - .order-md-5 { - order: 5; } - .order-md-6 { - order: 6; } - .order-md-7 { - order: 7; } - .order-md-8 { - order: 8; } - .order-md-9 { - order: 9; } - .order-md-10 { - order: 10; } - .order-md-11 { - order: 11; } - .order-md-12 { - order: 12; } - .offset-md-0 { - margin-left: 0; } - .offset-md-1 { - margin-left: 8.33333%; } - .offset-md-2 { - margin-left: 16.66667%; } - .offset-md-3 { - margin-left: 25%; } - .offset-md-4 { - margin-left: 33.33333%; } - .offset-md-5 { - margin-left: 41.66667%; } - .offset-md-6 { - margin-left: 50%; } - .offset-md-7 { - margin-left: 58.33333%; } - .offset-md-8 { - margin-left: 66.66667%; } - .offset-md-9 { - margin-left: 75%; } - .offset-md-10 { - margin-left: 83.33333%; } - .offset-md-11 { - margin-left: 91.66667%; } } + .ms-sm-0 { + margin-left: 0 !important; + } -@media (min-width: 992px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } - .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-lg-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-lg-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-lg-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-lg-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-lg-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-lg-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-lg-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-lg-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-lg-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-lg-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-lg-first { - order: -1; } - .order-lg-last { - order: 13; } - .order-lg-0 { - order: 0; } - .order-lg-1 { - order: 1; } - .order-lg-2 { - order: 2; } - .order-lg-3 { - order: 3; } - .order-lg-4 { - order: 4; } - .order-lg-5 { - order: 5; } - .order-lg-6 { - order: 6; } - .order-lg-7 { - order: 7; } - .order-lg-8 { - order: 8; } - .order-lg-9 { - order: 9; } - .order-lg-10 { - order: 10; } - .order-lg-11 { - order: 11; } - .order-lg-12 { - order: 12; } - .offset-lg-0 { - margin-left: 0; } - .offset-lg-1 { - margin-left: 8.33333%; } - .offset-lg-2 { - margin-left: 16.66667%; } - .offset-lg-3 { - margin-left: 25%; } - .offset-lg-4 { - margin-left: 33.33333%; } - .offset-lg-5 { - margin-left: 41.66667%; } - .offset-lg-6 { - margin-left: 50%; } - .offset-lg-7 { - margin-left: 58.33333%; } - .offset-lg-8 { - margin-left: 66.66667%; } - .offset-lg-9 { - margin-left: 75%; } - .offset-lg-10 { - margin-left: 83.33333%; } - .offset-lg-11 { - margin-left: 91.66667%; } } + .ms-sm-1 { + margin-left: 0.25rem !important; + } -@media (min-width: 1200px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; } - .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; } - .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; } - .row-cols-xl-3 > * { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; } - .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; } - .row-cols-xl-6 > * { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; } - .col-xl-1 { - flex: 0 0 8.33333%; - max-width: 8.33333%; } - .col-xl-2 { - flex: 0 0 16.66667%; - max-width: 16.66667%; } - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; } - .col-xl-4 { - flex: 0 0 33.33333%; - max-width: 33.33333%; } - .col-xl-5 { - flex: 0 0 41.66667%; - max-width: 41.66667%; } - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; } - .col-xl-7 { - flex: 0 0 58.33333%; - max-width: 58.33333%; } - .col-xl-8 { - flex: 0 0 66.66667%; - max-width: 66.66667%; } - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; } - .col-xl-10 { - flex: 0 0 83.33333%; - max-width: 83.33333%; } - .col-xl-11 { - flex: 0 0 91.66667%; - max-width: 91.66667%; } - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; } - .order-xl-first { - order: -1; } - .order-xl-last { - order: 13; } - .order-xl-0 { - order: 0; } - .order-xl-1 { - order: 1; } - .order-xl-2 { - order: 2; } - .order-xl-3 { - order: 3; } - .order-xl-4 { - order: 4; } - .order-xl-5 { - order: 5; } - .order-xl-6 { - order: 6; } - .order-xl-7 { - order: 7; } - .order-xl-8 { - order: 8; } - .order-xl-9 { - order: 9; } - .order-xl-10 { - order: 10; } - .order-xl-11 { - order: 11; } - .order-xl-12 { - order: 12; } - .offset-xl-0 { - margin-left: 0; } - .offset-xl-1 { - margin-left: 8.33333%; } - .offset-xl-2 { - margin-left: 16.66667%; } - .offset-xl-3 { - margin-left: 25%; } - .offset-xl-4 { - margin-left: 33.33333%; } - .offset-xl-5 { - margin-left: 41.66667%; } - .offset-xl-6 { - margin-left: 50%; } - .offset-xl-7 { - margin-left: 58.33333%; } - .offset-xl-8 { - margin-left: 66.66667%; } - .offset-xl-9 { - margin-left: 75%; } - .offset-xl-10 { - margin-left: 83.33333%; } - .offset-xl-11 { - margin-left: 91.66667%; } } + .ms-sm-2 { + margin-left: 0.5rem !important; + } -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529; } - .table th, - .table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; } - .table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; } - .table tbody + tbody { - border-top: 2px solid #dee2e6; } + .ms-sm-3 { + margin-left: 1rem !important; + } -.table-sm th, -.table-sm td { - padding: 0.3rem; } + .ms-sm-4 { + margin-left: 1.5rem !important; + } -.table-bordered { - border: 1px solid #dee2e6; } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6; } - .table-bordered thead th, - .table-bordered thead td { - border-bottom-width: 2px; } + .ms-sm-5 { + margin-left: 3rem !important; + } -.table-borderless th, -.table-borderless td, -.table-borderless thead th, -.table-borderless tbody + tbody { - border: 0; } + .ms-sm-auto { + margin-left: auto !important; + } -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); } + .p-sm-0 { + padding: 0 !important; + } -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, 0.075); } + .p-sm-1 { + padding: 0.25rem !important; + } -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; } + .p-sm-2 { + padding: 0.5rem !important; + } -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #7abaff; } + .p-sm-3 { + padding: 1rem !important; + } -.table-hover .table-primary:hover { - background-color: #9fcdff; } - .table-hover .table-primary:hover > td, - .table-hover .table-primary:hover > th { - background-color: #9fcdff; } + .p-sm-4 { + padding: 1.5rem !important; + } -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; } + .p-sm-5 { + padding: 3rem !important; + } -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #b3b7bb; } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.table-hover .table-secondary:hover { - background-color: #c8cbcf; } - .table-hover .table-secondary:hover > td, - .table-hover .table-secondary:hover > th { - background-color: #c8cbcf; } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #8fd19e; } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.table-hover .table-success:hover { - background-color: #b1dfbb; } - .table-hover .table-success:hover > td, - .table-hover .table-success:hover > th { - background-color: #b1dfbb; } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #86cfda; } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -.table-hover .table-info:hover { - background-color: #abdde5; } - .table-hover .table-info:hover > td, - .table-hover .table-info:hover > th { - background-color: #abdde5; } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -.table-hover .table-warning:hover { - background-color: #ffe8a1; } - .table-hover .table-warning:hover > td, - .table-hover .table-warning:hover > th { - background-color: #ffe8a1; } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #ed969e; } + .pt-sm-0 { + padding-top: 0 !important; + } -.table-hover .table-danger:hover { - background-color: #f1b0b7; } - .table-hover .table-danger:hover > td, - .table-hover .table-danger:hover > th { - background-color: #f1b0b7; } + .pt-sm-1 { + padding-top: 0.25rem !important; + } -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; } + .pt-sm-2 { + padding-top: 0.5rem !important; + } -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #fbfcfc; } + .pt-sm-3 { + padding-top: 1rem !important; + } -.table-hover .table-light:hover { - background-color: #ececf6; } - .table-hover .table-light:hover > td, - .table-hover .table-light:hover > th { - background-color: #ececf6; } + .pt-sm-4 { + padding-top: 1.5rem !important; + } -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; } + .pt-sm-5 { + padding-top: 3rem !important; + } -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #95999c; } + .pe-sm-0 { + padding-right: 0 !important; + } -.table-hover .table-dark:hover { - background-color: #b9bbbe; } - .table-hover .table-dark:hover > td, - .table-hover .table-dark:hover > th { - background-color: #b9bbbe; } + .pe-sm-1 { + padding-right: 0.25rem !important; + } -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); } + .pe-sm-2 { + padding-right: 0.5rem !important; + } -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); } - .table-hover .table-active:hover > td, - .table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); } + .pe-sm-3 { + padding-right: 1rem !important; + } -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55; } + .pe-sm-4 { + padding-right: 1.5rem !important; + } -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; } + .pe-sm-5 { + padding-right: 3rem !important; + } -.table-dark { - color: #fff; - background-color: #343a40; } - .table-dark th, - .table-dark td, - .table-dark thead th { - border-color: #454d55; } - .table-dark.table-bordered { - border: 0; } - .table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); } - .table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, 0.075); } + .pb-sm-0 { + padding-bottom: 0 !important; + } -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-sm > .table-bordered { - border: 0; } } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-md > .table-bordered { - border: 0; } } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-lg > .table-bordered { - border: 0; } } + .pb-sm-3 { + padding-bottom: 1rem !important; + } -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive-xl > .table-bordered { - border: 0; } } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - .table-responsive > .table-bordered { - border: 0; } + .pb-sm-5 { + padding-bottom: 3rem !important; + } -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; } } - .form-control::-ms-expand { - background-color: transparent; - border: 0; } - .form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - -input[type=\\"date\\"].form-control, -input[type=\\"time\\"].form-control, -input[type=\\"datetime-local\\"].form-control, -input[type=\\"month\\"].form-control { - appearance: none; } + .ps-sm-0 { + padding-left: 0 !important; + } -select.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; } + .ps-sm-1 { + padding-left: 0.25rem !important; + } -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; } + .ps-sm-2 { + padding-left: 0.5rem !important; + } -.form-control-file, -.form-control-range { - display: block; - width: 100%; } + .ps-sm-3 { + padding-left: 1rem !important; + } -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } + .ps-sm-4 { + padding-left: 1.5rem !important; + } -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; } + .ps-sm-5 { + padding-left: 3rem !important; + } -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; } + .text-sm-start { + text-align: left !important; + } -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } + .text-sm-end { + text-align: right !important; + } -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } + .text-sm-center { + text-align: center !important; + } +} +@media (min-width: 768px) { + .float-md-start { + float: left !important; + } -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } + .float-md-end { + float: right !important; + } -select.form-control[size], select.form-control[multiple] { - height: auto; } + .float-md-none { + float: none !important; + } -textarea.form-control { - height: auto; } + .d-md-inline { + display: inline !important; + } -.form-group { - margin-bottom: 1rem; } + .d-md-inline-block { + display: inline-block !important; + } -.form-text { - display: block; - margin-top: 0.25rem; } + .d-md-block { + display: block !important; + } -.form-row { - display: flex; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; } - .form-row > .col, - .form-row > [class*=\\"col-\\"] { - padding-right: 5px; - padding-left: 5px; } + .d-md-grid { + display: grid !important; + } -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; } + .d-md-table { + display: table !important; + } -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; } - .form-check-input[disabled] ~ .form-check-label, - .form-check-input:disabled ~ .form-check-label { - color: #6c757d; } + .d-md-table-row { + display: table-row !important; + } -.form-check-label { - margin-bottom: 0; } + .d-md-table-cell { + display: table-cell !important; + } -.form-check-inline { - display: inline-flex; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; } - .form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; } + .d-md-flex { + display: flex !important; + } -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; } + .d-md-inline-flex { + display: inline-flex !important; + } -.valid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, 0.9); - border-radius: 0.25rem; } - .form-row > .col > .valid-tooltip, - .form-row > [class*=\\"col-\\"] > .valid-tooltip { - left: 5px; } + .d-md-none { + display: none !important; + } -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; } + .flex-md-fill { + flex: 1 1 auto !important; + } -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #28a745; - padding-right: calc(1.5em + 0.75rem) !important; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + .flex-md-row { + flex-direction: row !important; + } -.was-validated select.form-control:valid, select.form-control.is-valid { - padding-right: 3rem !important; - background-position: right 1.5rem center; } + .flex-md-column { + flex-direction: column !important; + } -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #28a745; - padding-right: calc(0.75em + 2.3125rem) !important; - background: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\\") right 0.75rem center/8px 10px no-repeat, #fff url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; } - .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; } + .flex-md-grow-0 { + flex-grow: 0 !important; + } -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; } + .flex-md-grow-1 { + flex-grow: 1 !important; + } -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; } - .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #28a745; } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57; } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + .flex-md-wrap { + flex-wrap: wrap !important; + } -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #28a745; } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + .gap-md-0 { + gap: 0 !important; + } -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; } + .gap-md-1 { + gap: 0.25rem !important; + } -.invalid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - .form-row > .col > .invalid-tooltip, - .form-row > [class*=\\"col-\\"] > .invalid-tooltip { - left: 5px; } + .gap-md-2 { + gap: 0.5rem !important; + } -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; } + .gap-md-3 { + gap: 1rem !important; + } -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem) !important; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + .gap-md-4 { + gap: 1.5rem !important; + } -.was-validated select.form-control:invalid, select.form-control.is-invalid { - padding-right: 3rem !important; - background-position: right 1.5rem center; } + .gap-md-5 { + gap: 3rem !important; + } -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + .justify-content-md-start { + justify-content: flex-start !important; + } -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem) !important; - background: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\\") right 0.75rem center/8px 10px no-repeat, #fff url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; } - .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + .justify-content-md-end { + justify-content: flex-end !important; + } -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } + .justify-content-md-center { + justify-content: center !important; + } -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; } + .justify-content-md-between { + justify-content: space-between !important; + } -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; } - .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #dc3545; } + .justify-content-md-around { + justify-content: space-around !important; + } -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d; } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + .align-items-md-start { + align-items: flex-start !important; + } -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #dc3545; } + .align-items-md-end { + align-items: flex-end !important; + } -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; } + .align-items-md-center { + align-items: center !important; + } -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + .align-items-md-baseline { + align-items: baseline !important; + } -.form-inline { - display: flex; - flex-flow: row wrap; - align-items: center; } - .form-inline .form-check { - width: 100%; } - @media (min-width: 576px) { - .form-inline label { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 0; } - .form-inline .form-group { - display: flex; - flex: 0 0 auto; - flex-flow: row wrap; - align-items: center; - margin-bottom: 0; } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .form-inline .form-control-plaintext { - display: inline-block; } - .form-inline .input-group, - .form-inline .custom-select { - width: auto; } - .form-inline .form-check { - display: flex; - align-items: center; - justify-content: center; - width: auto; - padding-left: 0; } - .form-inline .form-check-input { - position: relative; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; } - .form-inline .custom-control { - align-items: center; - justify-content: center; } - .form-inline .custom-control-label { - margin-bottom: 0; } } + .align-items-md-stretch { + align-items: stretch !important; + } -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .btn { - transition: none; } } - .btn:hover { - color: #212529; - text-decoration: none; } - .btn:focus, .btn.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .btn.disabled, .btn:disabled { - opacity: 0.65; } - .btn:not(:disabled):not(.disabled) { - cursor: pointer; } + .align-content-md-start { + align-content: flex-start !important; + } -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; } + .align-content-md-end { + align-content: flex-end !important; + } -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; } - .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } - .btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, - .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; } - .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, - .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } + .align-content-md-center { + align-content: center !important; + } -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; } - .btn-secondary:focus, .btn-secondary.focus { - color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } - .btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, - .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; } - .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, - .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } + .align-content-md-between { + align-content: space-between !important; + } -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; } - .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #218838; - border-color: #1e7e34; - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } - .btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, - .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; } - .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, - .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } + .align-content-md-around { + align-content: space-around !important; + } -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; } - .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #138496; - border-color: #117a8b; - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } - .btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, - .show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; } - .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, - .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } + .align-content-md-stretch { + align-content: stretch !important; + } -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; } - .btn-warning:focus, .btn-warning.focus { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } - .btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, - .show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; } - .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, - .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } + .align-self-md-auto { + align-self: auto !important; + } -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; } - .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c82333; - border-color: #bd2130; - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } - .btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, - .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; } - .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, - .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } + .align-self-md-start { + align-self: flex-start !important; + } -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; } - .btn-light:focus, .btn-light.focus { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } - .btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, - .show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; } - .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, - .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } + .align-self-md-end { + align-self: flex-end !important; + } -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; } - .btn-dark:focus, .btn-dark.focus { - color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } - .btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, - .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; } - .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, - .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } + .align-self-md-center { + align-self: center !important; + } -.btn-outline-primary { - color: #007bff; - border-color: #007bff; } - .btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-outline-primary:focus, .btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } - .btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; } - .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, - .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } + .align-self-md-baseline { + align-self: baseline !important; + } -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:focus, .btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } - .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; } - .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, - .show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } + .align-self-md-stretch { + align-self: stretch !important; + } -.btn-outline-success { - color: #28a745; - border-color: #28a745; } - .btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-outline-success:focus, .btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } - .btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; } - .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, - .show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; } - .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } + .order-md-first { + order: -1 !important; + } -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:focus, .btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } - .btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; } - .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, - .show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; } - .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + .order-md-0 { + order: 0 !important; + } -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:focus, .btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } - .btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; } - .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, - .show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + .order-md-1 { + order: 1 !important; + } -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:focus, .btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } - .btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; } - .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, - .show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } + .order-md-2 { + order: 2 !important; + } -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:focus, .btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } - .btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; } - .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, - .show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + .order-md-3 { + order: 3 !important; + } -.btn-outline-dark { - color: #343a40; - border-color: #343a40; } - .btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-outline-dark:focus, .btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } - .btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; } - .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, - .show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; } - .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, - .show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } + .order-md-4 { + order: 4 !important; + } -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none; } - .btn-link:hover { - color: #0056b3; - text-decoration: underline; } - .btn-link:focus, .btn-link.focus { - text-decoration: underline; } - .btn-link:disabled, .btn-link.disabled { - color: #6c757d; - pointer-events: none; } + .order-md-5 { + order: 5 !important; + } -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } + .order-md-last { + order: 6 !important; + } -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } + .m-md-0 { + margin: 0 !important; + } -.btn-block { - display: block; - width: 100%; } - .btn-block + .btn-block { - margin-top: 0.5rem; } + .m-md-1 { + margin: 0.25rem !important; + } -input[type=\\"submit\\"].btn-block, -input[type=\\"reset\\"].btn-block, -input[type=\\"button\\"].btn-block { - width: 100%; } + .m-md-2 { + margin: 0.5rem !important; + } -.fade { - transition: opacity 0.15s linear; } - @media (prefers-reduced-motion: reduce) { - .fade { - transition: none; } } - .fade:not(.show) { - opacity: 0; } + .m-md-3 { + margin: 1rem !important; + } -.collapse:not(.show) { - display: none; } + .m-md-4 { + margin: 1.5rem !important; + } -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; } - @media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; } } + .m-md-5 { + margin: 3rem !important; + } -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; } + .m-md-auto { + margin: auto !important; + } -.dropdown-toggle { - white-space: nowrap; } - .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .dropdown-toggle:empty::after { - margin-left: 0; } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } -.dropdown-menu-left { - right: auto; - left: 0; } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } -.dropdown-menu-right { - right: 0; - left: auto; } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; } - .dropdown-menu-sm-right { - right: 0; - left: auto; } } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; } - .dropdown-menu-md-right { - right: 0; - left: auto; } } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; } - .dropdown-menu-lg-right { - right: 0; - left: auto; } } + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; + } -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; } - .dropdown-menu-xl-right { - right: 0; - left: auto; } } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -.dropup .dropdown-toggle:empty::after { - margin-left: 0; } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.dropright .dropdown-toggle:empty::after { - margin-left: 0; } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -.dropright .dropdown-toggle::after { - vertical-align: 0; } + .mt-md-0 { + margin-top: 0 !important; + } -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } + .mt-md-1 { + margin-top: 0.25rem !important; + } -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; } + .mt-md-2 { + margin-top: 0.5rem !important; + } -.dropleft .dropdown-toggle::after { - display: none; } + .mt-md-3 { + margin-top: 1rem !important; + } -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } + .mt-md-4 { + margin-top: 1.5rem !important; + } -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; } + .mt-md-5 { + margin-top: 3rem !important; + } -.dropleft .dropdown-toggle::before { - vertical-align: 0; } + .mt-md-auto { + margin-top: auto !important; + } -.dropdown-menu[x-placement^=\\"top\\"], .dropdown-menu[x-placement^=\\"right\\"], .dropdown-menu[x-placement^=\\"bottom\\"], .dropdown-menu[x-placement^=\\"left\\"] { - right: auto; - bottom: auto; } + .me-md-0 { + margin-right: 0 !important; + } -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; } + .me-md-1 { + margin-right: 0.25rem !important; + } -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; } - .dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #e9ecef; } - .dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; } - .dropdown-item.disabled, .dropdown-item:disabled { - color: #adb5bd; - pointer-events: none; - background-color: transparent; } + .me-md-2 { + margin-right: 0.5rem !important; + } -.dropdown-menu.show { - display: block; } + .me-md-3 { + margin-right: 1rem !important; + } -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } + .me-md-4 { + margin-right: 1.5rem !important; + } -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; } + .me-md-5 { + margin-right: 3rem !important; + } -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .btn-group > .btn:hover, - .btn-group-vertical > .btn:hover { - z-index: 1; } - .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 1; } + .me-md-auto { + margin-right: auto !important; + } -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .btn-toolbar .input-group { - width: auto; } + .mb-md-0 { + margin-bottom: 0 !important; + } -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } + .mb-md-3 { + margin-bottom: 1rem !important; + } -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .dropdown-toggle-split::after, - .dropup .dropdown-toggle-split::after, - .dropright .dropdown-toggle-split::after { - margin-left: 0; } - .dropleft .dropdown-toggle-split::before { - margin-right: 0; } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } + .mb-md-5 { + margin-bottom: 3rem !important; + } -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } + .mb-md-auto { + margin-bottom: auto !important; + } -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .btn-group-vertical > .btn, - .btn-group-vertical > .btn-group { - width: 100%; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } + .ms-md-0 { + margin-left: 0 !important; + } -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; } - .btn-group-toggle > .btn input[type=\\"radio\\"], - .btn-group-toggle > .btn input[type=\\"checkbox\\"], - .btn-group-toggle > .btn-group > .btn input[type=\\"radio\\"], - .btn-group-toggle > .btn-group > .btn input[type=\\"checkbox\\"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } + .ms-md-1 { + margin-left: 0.25rem !important; + } -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .input-group > .form-control, - .input-group > .form-control-plaintext, - .input-group > .custom-select, - .input-group > .custom-file { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0; } - .input-group > .form-control + .form-control, - .input-group > .form-control + .custom-select, - .input-group > .form-control + .custom-file, - .input-group > .form-control-plaintext + .form-control, - .input-group > .form-control-plaintext + .custom-select, - .input-group > .form-control-plaintext + .custom-file, - .input-group > .custom-select + .form-control, - .input-group > .custom-select + .custom-select, - .input-group > .custom-select + .custom-file, - .input-group > .custom-file + .form-control, - .input-group > .custom-file + .custom-select, - .input-group > .custom-file + .custom-file { - margin-left: -1px; } - .input-group > .form-control:focus, - .input-group > .custom-select:focus, - .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { - z-index: 3; } - .input-group > .custom-file .custom-file-input:focus { - z-index: 4; } - .input-group > .form-control:not(:first-child), - .input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .input-group > .custom-file { - display: flex; - align-items: center; } - .input-group > .custom-file:not(:last-child) .custom-file-label, - .input-group > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .input-group:not(.has-validation) > .form-control:not(:last-child), - .input-group:not(.has-validation) > .custom-select:not(:last-child), - .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label, - .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .input-group.has-validation > .form-control:nth-last-child(n + 3), - .input-group.has-validation > .custom-select:nth-last-child(n + 3), - .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label, - .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } + .ms-md-2 { + margin-left: 0.5rem !important; + } -.input-group-prepend, -.input-group-append { - display: flex; } - .input-group-prepend .btn, - .input-group-append .btn { - position: relative; - z-index: 2; } - .input-group-prepend .btn:focus, - .input-group-append .btn:focus { - z-index: 3; } - .input-group-prepend .btn + .btn, - .input-group-prepend .btn + .input-group-text, - .input-group-prepend .input-group-text + .input-group-text, - .input-group-prepend .input-group-text + .btn, - .input-group-append .btn + .btn, - .input-group-append .btn + .input-group-text, - .input-group-append .input-group-text + .input-group-text, - .input-group-append .input-group-text + .btn { - margin-left: -1px; } + .ms-md-3 { + margin-left: 1rem !important; + } -.input-group-prepend { - margin-right: -1px; } + .ms-md-4 { + margin-left: 1.5rem !important; + } -.input-group-append { - margin-left: -1px; } + .ms-md-5 { + margin-left: 3rem !important; + } -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .input-group-text input[type=\\"radio\\"], - .input-group-text input[type=\\"checkbox\\"] { - margin-top: 0; } + .ms-md-auto { + margin-left: auto !important; + } -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(1.5em + 1rem + 2px); } + .p-md-0 { + padding: 0 !important; + } -.input-group-lg > .form-control, -.input-group-lg > .custom-select, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; } + .p-md-1 { + padding: 0.25rem !important; + } -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.5em + 0.5rem + 2px); } + .p-md-2 { + padding: 0.5rem !important; + } -.input-group-sm > .form-control, -.input-group-sm > .custom-select, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; } + .p-md-3 { + padding: 1rem !important; + } -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; } + .p-md-4 { + padding: 1.5rem !important; + } -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn, -.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text, -.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn, -.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } + .p-md-5 { + padding: 3rem !important; + } -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.custom-control { - position: relative; - z-index: 1; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; - color-adjust: exact; } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.custom-control-inline { - display: inline-flex; - margin-right: 1rem; } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 1.25rem; - opacity: 0; } - .custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff; } - .custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #80bdff; } - .custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff; } - .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; } - .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; } - .custom-control-label::before { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: \\"\\"; - background-color: #fff; - border: #adb5bd solid 1px; } - .custom-control-label::after { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: \\"\\"; - background: 50% / 50% 50% no-repeat; } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e\\"); } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - border-color: #007bff; - background-color: #007bff; } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e\\"); } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.custom-radio .custom-control-label::before { - border-radius: 50%; } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\\"); } + .pt-md-0 { + padding-top: 0 !important; + } -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } + .pt-md-1 { + padding-top: 0.25rem !important; + } -.custom-switch { - padding-left: 2.25rem; } - .custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; } - .custom-switch .custom-control-label::after { - top: calc(0.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; } } - .custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - transform: translateX(0.75rem); } - .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); } + .pt-md-2 { + padding-top: 0.5rem !important; + } -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e\\") right 0.75rem center/8px 10px no-repeat; - border: 1px solid #ced4da; - border-radius: 0.25rem; - appearance: none; } - .custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; } - .custom-select[multiple], .custom-select[size]:not([size=\\"1\\"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; } - .custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; } - .custom-select::-ms-expand { - display: none; } - .custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; } + .pt-md-3 { + padding-top: 1rem !important; + } -.custom-select-sm { - height: calc(1.5em + 0.5rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; } + .pt-md-4 { + padding-top: 1.5rem !important; + } -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; } + .pt-md-5 { + padding-top: 3rem !important; + } -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin-bottom: 0; } + .pe-md-0 { + padding-right: 0 !important; + } -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin: 0; - overflow: hidden; - opacity: 0; } - .custom-file-input:focus ~ .custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-file-input[disabled] ~ .custom-file-label, - .custom-file-input:disabled ~ .custom-file-label { - background-color: #e9ecef; } - .custom-file-input:lang(en) ~ .custom-file-label::after { - content: \\"Browse\\"; } - .custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); } + .pe-md-1 { + padding-right: 0.25rem !important; + } -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - overflow: hidden; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + 0.75rem); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: \\"Browse\\"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 0.25rem 0.25rem 0; } + .pe-md-2 { + padding-right: 0.5rem !important; + } -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - appearance: none; } - .custom-range:focus { - outline: 0; } - .custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - .custom-range::-moz-focus-outer { - border: 0; } - .custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - transition: none; } } - .custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff; } - .custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - transition: none; } } - .custom-range::-moz-range-thumb:active { - background-color: #b3d7ff; } - .custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - transition: none; } } - .custom-range::-ms-thumb:active { - background-color: #b3d7ff; } - .custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; } - .custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem; } - .custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem; } - .custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; } - .custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - .custom-range:disabled::-moz-range-track { - cursor: default; } - .custom-range:disabled::-ms-thumb { - background-color: #adb5bd; } + .pe-md-3 { + padding-right: 1rem !important; + } -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none; } } + .pe-md-4 { + padding-right: 1.5rem !important; + } -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } + .pe-md-5 { + padding-right: 3rem !important; + } -.nav-link { - display: block; - padding: 0.5rem 1rem; } - .nav-link:hover, .nav-link:focus { - text-decoration: none; } - .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } + .pb-md-0 { + padding-bottom: 0 !important; + } -.nav-tabs { - border-bottom: 1px solid #dee2e6; } - .nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; } - .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .nav-tabs .nav-link.active, - .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } -.nav-pills .nav-link { - border-radius: 0.25rem; } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; } + .pb-md-3 { + padding-bottom: 1rem !important; + } -.nav-fill > .nav-link, -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } -.nav-justified > .nav-link, -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } + .pb-md-5 { + padding-bottom: 3rem !important; + } -.tab-content > .tab-pane { - display: none; } + .ps-md-0 { + padding-left: 0 !important; + } -.tab-content > .active { - display: block; } + .ps-md-1 { + padding-left: 0.25rem !important; + } -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding: 0.5rem 1rem; } - .navbar .container, - .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; } + .ps-md-2 { + padding-left: 0.5rem !important; + } -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; } - .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; } + .ps-md-3 { + padding-left: 1rem !important; + } -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .navbar-nav .dropdown-menu { - position: static; - float: none; } + .ps-md-4 { + padding-left: 1.5rem !important; + } -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } + .ps-md-5 { + padding-left: 3rem !important; + } -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; } + .text-md-start { + text-align: left !important; + } -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; } - .navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; } + .text-md-end { + text-align: right !important; + } -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: \\"\\"; - background: 50% / 100% 100% no-repeat; } + .text-md-center { + text-align: center !important; + } +} +@media (min-width: 992px) { + .float-lg-start { + float: left !important; + } -.navbar-nav-scroll { - max-height: 75vh; - overflow-y: auto; } + .float-lg-end { + float: right !important; + } -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { - padding-right: 0; - padding-left: 0; } } + .float-lg-none { + float: none !important; + } -@media (min-width: 576px) { - .navbar-expand-sm { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-sm .navbar-toggler { - display: none; } } + .d-lg-inline { + display: inline !important; + } -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { - padding-right: 0; - padding-left: 0; } } + .d-lg-inline-block { + display: inline-block !important; + } -@media (min-width: 768px) { - .navbar-expand-md { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-md .navbar-nav { - flex-direction: row; } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-md .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-md .navbar-toggler { - display: none; } } + .d-lg-block { + display: block !important; + } -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { - padding-right: 0; - padding-left: 0; } } + .d-lg-grid { + display: grid !important; + } -@media (min-width: 992px) { - .navbar-expand-lg { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-lg .navbar-toggler { - display: none; } } + .d-lg-table { + display: table !important; + } -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { - padding-right: 0; - padding-left: 0; } } + .d-lg-table-row { + display: table-row !important; + } -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { - flex-wrap: nowrap; } - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-xl .navbar-toggler { - display: none; } } + .d-lg-table-cell { + display: table-cell !important; + } -.navbar-expand { - flex-flow: row nowrap; - justify-content: flex-start; } - .navbar-expand > .container, - .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { - padding-right: 0; - padding-left: 0; } - .navbar-expand .navbar-nav { - flex-direction: row; } - .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand > .container, - .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { - flex-wrap: nowrap; } - .navbar-expand .navbar-nav-scroll { - overflow: visible; } - .navbar-expand .navbar-collapse { + .d-lg-flex { display: flex !important; - flex-basis: auto; } - .navbar-expand .navbar-toggler { - display: none; } + } -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } + .d-lg-inline-flex { + display: inline-flex !important; + } -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); } - .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } + .d-lg-none { + display: none !important; + } -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } + .flex-lg-fill { + flex: 1 1 auto !important; + } -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); } + .flex-lg-row { + flex-direction: row !important; + } -.navbar-light .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } + .flex-lg-column { + flex-direction: column !important; + } -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); } - .navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } -.navbar-dark .navbar-brand { - color: #fff; } - .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); } - .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } -.navbar-dark .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); } - .navbar-dark .navbar-text a { - color: #fff; } - .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; } + .flex-lg-wrap { + flex-wrap: wrap !important; + } -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .card > hr { - margin-right: 0; - margin-left: 0; } - .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .card > .card-header + .list-group, - .card > .list-group + .card-footer { - border-top: 0; } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } -.card-body { - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem; } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } -.card-title { - margin-bottom: 0.75rem; } + .gap-lg-0 { + gap: 0 !important; + } -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; } + .gap-lg-1 { + gap: 0.25rem !important; + } -.card-text:last-child { - margin-bottom: 0; } + .gap-lg-2 { + gap: 0.5rem !important; + } -.card-link:hover { - text-decoration: none; } + .gap-lg-3 { + gap: 1rem !important; + } -.card-link + .card-link { - margin-left: 1.25rem; } + .gap-lg-4 { + gap: 1.5rem !important; + } -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } + .gap-lg-5 { + gap: 3rem !important; + } -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } + .justify-content-lg-start { + justify-content: flex-start !important; + } -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; } + .justify-content-lg-end { + justify-content: flex-end !important; + } -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; } + .justify-content-lg-center { + justify-content: center !important; + } -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; - border-radius: calc(0.25rem - 1px); } + .justify-content-lg-between { + justify-content: space-between !important; + } -.card-img, -.card-img-top, -.card-img-bottom { - flex-shrink: 0; - width: 100%; } + .justify-content-lg-around { + justify-content: space-around !important; + } -.card-img, -.card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } + .align-items-lg-start { + align-items: flex-start !important; + } -.card-deck .card { - margin-bottom: 15px; } + .align-items-lg-end { + align-items: flex-end !important; + } -@media (min-width: 576px) { - .card-deck { - display: flex; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; } - .card-deck .card { - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; } } + .align-items-lg-center { + align-items: center !important; + } -.card-group > .card { - margin-bottom: 15px; } + .align-items-lg-baseline { + align-items: baseline !important; + } -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-top, - .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-bottom, - .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-top, - .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-bottom, - .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } + .align-items-lg-stretch { + align-items: stretch !important; + } -.card-columns .card { - margin-bottom: 0.75rem; } + .align-content-lg-start { + align-content: flex-start !important; + } -@media (min-width: 576px) { - .card-columns { - column-count: 3; - column-gap: 1.25rem; - orphans: 1; - widows: 1; } - .card-columns .card { - display: inline-block; - width: 100%; } } + .align-content-lg-end { + align-content: flex-end !important; + } -.accordion { - overflow-anchor: none; } - .accordion > .card { - overflow: hidden; } - .accordion > .card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .accordion > .card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0; } - .accordion > .card > .card-header { - border-radius: 0; - margin-bottom: -1px; } + .align-content-lg-center { + align-content: center !important; + } -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; } + .align-content-lg-between { + align-content: space-between !important; + } -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; } - .breadcrumb-item + .breadcrumb-item::before { - float: left; - padding-right: 0.5rem; - color: #6c757d; - content: \\"/\\"; } + .align-content-lg-around { + align-content: space-around !important; + } -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; } + .align-content-lg-stretch { + align-content: stretch !important; + } -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; } + .align-self-lg-auto { + align-self: auto !important; + } -.breadcrumb-item.active { - color: #6c757d; } + .align-self-lg-start { + align-self: flex-start !important; + } -.pagination { - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; } + .align-self-lg-end { + align-self: flex-end !important; + } -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; } - .page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; } - .page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .align-self-lg-center { + align-self: center !important; + } -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } + .align-self-lg-baseline { + align-self: baseline !important; + } -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; } + .align-self-lg-stretch { + align-self: stretch !important; + } -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #007bff; - border-color: #007bff; } + .order-lg-first { + order: -1 !important; + } -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; } + .order-lg-0 { + order: 0 !important; + } -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; } + .order-lg-1 { + order: 1 !important; + } -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; } + .order-lg-2 { + order: 2 !important; + } -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; } + .order-lg-3 { + order: 3 !important; + } -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; } + .order-lg-4 { + order: 4 !important; + } -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; } + .order-lg-5 { + order: 5 !important; + } -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; } + .order-lg-last { + order: 6 !important; + } -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .badge { - transition: none; } } - a.badge:hover, a.badge:focus { - text-decoration: none; } - .badge:empty { - display: none; } + .m-lg-0 { + margin: 0 !important; + } -.btn .badge { - position: relative; - top: -1px; } + .m-lg-1 { + margin: 0.25rem !important; + } -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; } + .m-lg-2 { + margin: 0.5rem !important; + } -.badge-primary { - color: #fff; - background-color: #007bff; } - a.badge-primary:hover, a.badge-primary:focus { - color: #fff; - background-color: #0062cc; } - a.badge-primary:focus, a.badge-primary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } + .m-lg-3 { + margin: 1rem !important; + } -.badge-secondary { - color: #fff; - background-color: #6c757d; } - a.badge-secondary:hover, a.badge-secondary:focus { - color: #fff; - background-color: #545b62; } - a.badge-secondary:focus, a.badge-secondary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } + .m-lg-4 { + margin: 1.5rem !important; + } -.badge-success { - color: #fff; - background-color: #28a745; } - a.badge-success:hover, a.badge-success:focus { - color: #fff; - background-color: #1e7e34; } - a.badge-success:focus, a.badge-success.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } + .m-lg-5 { + margin: 3rem !important; + } -.badge-info { - color: #fff; - background-color: #17a2b8; } - a.badge-info:hover, a.badge-info:focus { - color: #fff; - background-color: #117a8b; } - a.badge-info:focus, a.badge-info.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + .m-lg-auto { + margin: auto !important; + } -.badge-warning { - color: #212529; - background-color: #ffc107; } - a.badge-warning:hover, a.badge-warning:focus { - color: #212529; - background-color: #d39e00; } - a.badge-warning:focus, a.badge-warning.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } -.badge-danger { - color: #fff; - background-color: #dc3545; } - a.badge-danger:hover, a.badge-danger:focus { - color: #fff; - background-color: #bd2130; } - a.badge-danger:focus, a.badge-danger.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } -.badge-light { - color: #212529; - background-color: #f8f9fa; } - a.badge-light:hover, a.badge-light:focus { - color: #212529; - background-color: #dae0e5; } - a.badge-light:focus, a.badge-light.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } -.badge-dark { - color: #fff; - background-color: #343a40; } - a.badge-dark:hover, a.badge-dark:focus { - color: #fff; - background-color: #1d2124; } - a.badge-dark:focus, a.badge-dark.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; } - @media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; } } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; } + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; + } -.alert-heading { - color: inherit; } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -.alert-link { - font-weight: 700; } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.alert-dismissible { - padding-right: 4rem; } - .alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: 0.75rem 1.25rem; - color: inherit; } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; } - .alert-primary hr { - border-top-color: #9fcdff; } - .alert-primary .alert-link { - color: #002752; } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; } - .alert-secondary hr { - border-top-color: #c8cbcf; } - .alert-secondary .alert-link { - color: #202326; } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; } - .alert-success hr { - border-top-color: #b1dfbb; } - .alert-success .alert-link { - color: #0b2e13; } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; } - .alert-info hr { - border-top-color: #abdde5; } - .alert-info .alert-link { - color: #062c33; } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; } - .alert-warning hr { - border-top-color: #ffe8a1; } - .alert-warning .alert-link { - color: #533f03; } + .mt-lg-0 { + margin-top: 0 !important; + } -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; } - .alert-danger hr { - border-top-color: #f1b0b7; } - .alert-danger .alert-link { - color: #491217; } + .mt-lg-1 { + margin-top: 0.25rem !important; + } -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; } - .alert-light hr { - border-top-color: #ececf6; } - .alert-light .alert-link { - color: #686868; } + .mt-lg-2 { + margin-top: 0.5rem !important; + } -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; } - .alert-dark hr { - border-top-color: #b9bbbe; } - .alert-dark .alert-link { - color: #040505; } + .mt-lg-3 { + margin-top: 1rem !important; + } -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; } - to { - background-position: 0 0; } } + .mt-lg-4 { + margin-top: 1.5rem !important; + } -.progress { - display: flex; - height: 1rem; - overflow: hidden; - line-height: 0; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; } + .mt-lg-5 { + margin-top: 3rem !important; + } -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; } } + .mt-lg-auto { + margin-top: auto !important; + } -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; } + .me-lg-0 { + margin-right: 0 !important; + } -.progress-bar-animated { - animation: 1s linear infinite progress-bar-stripes; } - @media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; } } + .me-lg-1 { + margin-right: 0.25rem !important; + } -.media { - display: flex; - align-items: flex-start; } + .me-lg-2 { + margin-right: 0.5rem !important; + } -.media-body { - flex: 1; } + .me-lg-3 { + margin-right: 1rem !important; + } -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } + .me-lg-4 { + margin-right: 1.5rem !important; + } -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } + .me-lg-5 { + margin-right: 3rem !important; + } -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; } - .list-group-item + .list-group-item { - border-top-width: 0; } - .list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } + .me-lg-auto { + margin-right: auto !important; + } -.list-group-horizontal { - flex-direction: row; } - .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } + .mb-lg-0 { + margin-bottom: 0 !important; + } -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } + .mb-lg-3 { + margin-bottom: 1rem !important; + } -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } -.list-group-flush { - border-radius: 0; } - .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } + .mb-lg-5 { + margin-bottom: 3rem !important; + } -.list-group-item-primary { - color: #004085; - background-color: #b8daff; } - .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; } - .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; } + .mb-lg-auto { + margin-bottom: auto !important; + } -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; } - .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; } - .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; } + .ms-lg-0 { + margin-left: 0 !important; + } -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; } - .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; } - .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; } + .ms-lg-1 { + margin-left: 0.25rem !important; + } -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; } - .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; } - .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; } + .ms-lg-2 { + margin-left: 0.5rem !important; + } -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; } - .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; } - .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; } + .ms-lg-3 { + margin-left: 1rem !important; + } -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; } - .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; } - .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; } + .ms-lg-4 { + margin-left: 1.5rem !important; + } -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; } - .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; } - .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; } + .ms-lg-5 { + margin-left: 3rem !important; + } -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; } - .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; } - .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; } + .ms-lg-auto { + margin-left: auto !important; + } -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; } - .close:hover { - color: #000; - text-decoration: none; } - .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { - opacity: .75; } + .p-lg-0 { + padding: 0 !important; + } -button.close { - padding: 0; - background-color: transparent; - border: 0; } + .p-lg-1 { + padding: 0.25rem !important; + } -a.close.disabled { - pointer-events: none; } + .p-lg-2 { + padding: 0.5rem !important; + } -.toast { - flex-basis: 350px; - max-width: 350px; - font-size: 0.875rem; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - opacity: 0; - border-radius: 0.25rem; } - .toast:not(:last-child) { - margin-bottom: 0.75rem; } - .toast.showing { - opacity: 1; } - .toast.show { - display: block; - opacity: 1; } - .toast.hide { - display: none; } + .p-lg-3 { + padding: 1rem !important; + } -.toast-header { - display: flex; - align-items: center; - padding: 0.25rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } + .p-lg-4 { + padding: 1.5rem !important; + } -.toast-body { - padding: 0.75rem; } + .p-lg-5 { + padding: 3rem !important; + } -.modal-open { - overflow: hidden; } - .modal-open .modal { - overflow-x: hidden; - overflow-y: auto; } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0; } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; } - .modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); } - @media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; } } - .modal.show .modal-dialog { - transform: none; } - .modal.modal-static .modal-dialog { - transform: scale(1.02); } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.modal-dialog-scrollable { - display: flex; - max-height: calc(100% - 1rem); } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden; } - .modal-dialog-scrollable .modal-header, - .modal-dialog-scrollable .modal-footer { - flex-shrink: 0; } - .modal-dialog-scrollable .modal-body { - overflow-y: auto; } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); } - .modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: min-content; - content: \\"\\"; } - .modal-dialog-centered.modal-dialog-scrollable { - flex-direction: column; - justify-content: center; - height: 100%; } - .modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none; } - .modal-dialog-centered.modal-dialog-scrollable::before { - content: none; } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; } - .modal-backdrop.fade { - opacity: 0; } - .modal-backdrop.show { - opacity: 0.5; } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -.modal-header { - display: flex; - align-items: flex-start; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto; } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -.modal-title { - margin-bottom: 0; - line-height: 1.5; } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -.modal-footer { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(0.3rem - 1px); - border-bottom-left-radius: calc(0.3rem - 1px); } - .modal-footer > * { - margin: 0.25rem; } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; } - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem); } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem); } - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); } - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: min-content; } - .modal-sm { - max-width: 300px; } } + .pt-lg-0 { + padding-top: 0 !important; + } -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; } } + .pt-lg-1 { + padding-top: 0.25rem !important; + } -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; } } + .pt-lg-2 { + padding-top: 0.5rem !important; + } -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .tooltip.show { - opacity: 0.9; } - .tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .tooltip .arrow::before { - position: absolute; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\\"top\\"] { - padding: 0.4rem 0; } - .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\\"top\\"] .arrow { - bottom: 0; } - .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\\"top\\"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\\"right\\"] { - padding: 0 0.4rem; } - .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\\"right\\"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\\"right\\"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\\"bottom\\"] { - padding: 0.4rem 0; } - .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\\"bottom\\"] .arrow { - top: 0; } - .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\\"bottom\\"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\\"left\\"] { - padding: 0 0.4rem; } - .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\\"left\\"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\\"left\\"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } + .pt-lg-3 { + padding-top: 1rem !important; + } -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } + .pt-lg-4 { + padding-top: 1.5rem !important; + } -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; } - .popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-popover-top, .bs-popover-auto[x-placement^=\\"top\\"] { - margin-bottom: 0.5rem; } - .bs-popover-top > .arrow, .bs-popover-auto[x-placement^=\\"top\\"] > .arrow { - bottom: calc(-0.5rem - 1px); } - .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=\\"top\\"] > .arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=\\"top\\"] > .arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - -.bs-popover-right, .bs-popover-auto[x-placement^=\\"right\\"] { - margin-left: 0.5rem; } - .bs-popover-right > .arrow, .bs-popover-auto[x-placement^=\\"right\\"] > .arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=\\"right\\"] > .arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=\\"right\\"] > .arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - -.bs-popover-bottom, .bs-popover-auto[x-placement^=\\"bottom\\"] { - margin-top: 0.5rem; } - .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=\\"bottom\\"] > .arrow { - top: calc(-0.5rem - 1px); } - .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=\\"bottom\\"] > .arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=\\"bottom\\"] > .arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\\"bottom\\"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: \\"\\"; - border-bottom: 1px solid #f7f7f7; } - -.bs-popover-left, .bs-popover-auto[x-placement^=\\"left\\"] { - margin-right: 0.5rem; } - .bs-popover-left > .arrow, .bs-popover-auto[x-placement^=\\"left\\"] > .arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=\\"left\\"] > .arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=\\"left\\"] > .arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } + .pt-lg-5 { + padding-top: 3rem !important; + } -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .popover-header:empty { - display: none; } + .pe-lg-0 { + padding-right: 0 !important; + } -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; } + .pe-lg-1 { + padding-right: 0.25rem !important; + } -.carousel { - position: relative; } + .pe-lg-2 { + padding-right: 0.5rem !important; + } -.carousel.pointer-event { - touch-action: pan-y; } + .pe-lg-3 { + padding-right: 1rem !important; + } -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; } - .carousel-inner::after { - display: block; - clear: both; - content: \\"\\"; } + .pe-lg-4 { + padding-right: 1.5rem !important; + } -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; } } + .pe-lg-5 { + padding-right: 3rem !important; + } -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; } + .pb-lg-0 { + padding-bottom: 0 !important; + } -.carousel-item-next:not(.carousel-item-left), -.active.carousel-item-right { - transform: translateX(100%); } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } -.carousel-item-prev:not(.carousel-item-right), -.active.carousel-item-left { - transform: translateX(-100%); } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; } + .pb-lg-3 { + padding-bottom: 1rem !important; + } -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; - opacity: 1; } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; } - @media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; } } + .pb-lg-5 { + padding-bottom: 3rem !important; + } -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - padding: 0; - color: #fff; - text-align: center; - background: none; - border: 0; - opacity: 0.5; - transition: opacity 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; } } - .carousel-control-prev:hover, .carousel-control-prev:focus, - .carousel-control-next:hover, - .carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; } + .ps-lg-0 { + padding-left: 0 !important; + } -.carousel-control-prev { - left: 0; } + .ps-lg-1 { + padding-left: 0.25rem !important; + } -.carousel-control-next { - right: 0; } + .ps-lg-2 { + padding-left: 0.5rem !important; + } -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: 50% / 100% 100% no-repeat; } + .ps-lg-3 { + padding-left: 1rem !important; + } -.carousel-control-prev-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e\\"); } + .ps-lg-4 { + padding-left: 1.5rem !important; + } -.carousel-control-next-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e\\"); } + .ps-lg-5 { + padding-left: 3rem !important; + } -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: flex; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; } - .carousel-indicators li { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; } } - .carousel-indicators .active { - opacity: 1; } + .text-lg-start { + text-align: left !important; + } -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; } + .text-lg-end { + text-align: right !important; + } -@keyframes spinner-border { - to { - transform: rotate(360deg); } } + .text-lg-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .float-xl-start { + float: left !important; + } -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: .75s linear infinite spinner-border; } + .float-xl-end { + float: right !important; + } -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } + .float-xl-none { + float: none !important; + } -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } + .d-xl-inline { + display: inline !important; + } -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: .75s linear infinite spinner-grow; } + .d-xl-inline-block { + display: inline-block !important; + } -.spinner-grow-sm { - width: 1rem; - height: 1rem; } + .d-xl-block { + display: block !important; + } -@media (prefers-reduced-motion: reduce) { - .spinner-border, - .spinner-grow { - animation-duration: 1.5s; } } + .d-xl-grid { + display: grid !important; + } -.align-baseline { - vertical-align: baseline !important; } + .d-xl-table { + display: table !important; + } -.align-top { - vertical-align: top !important; } + .d-xl-table-row { + display: table-row !important; + } -.align-middle { - vertical-align: middle !important; } + .d-xl-table-cell { + display: table-cell !important; + } -.align-bottom { - vertical-align: bottom !important; } + .d-xl-flex { + display: flex !important; + } -.align-text-bottom { - vertical-align: text-bottom !important; } + .d-xl-inline-flex { + display: inline-flex !important; + } -.align-text-top { - vertical-align: text-top !important; } + .d-xl-none { + display: none !important; + } -.bg-primary { - background-color: #007bff !important; } + .flex-xl-fill { + flex: 1 1 auto !important; + } -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; } + .flex-xl-row { + flex-direction: row !important; + } -.bg-secondary { - background-color: #6c757d !important; } + .flex-xl-column { + flex-direction: column !important; + } -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } -.bg-success { - background-color: #28a745 !important; } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } -.bg-info { - background-color: #17a2b8 !important; } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } -.bg-warning { - background-color: #ffc107 !important; } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; } + .flex-xl-wrap { + flex-wrap: wrap !important; + } -.bg-danger { - background-color: #dc3545 !important; } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } -.bg-light { - background-color: #f8f9fa !important; } + .gap-xl-0 { + gap: 0 !important; + } -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; } + .gap-xl-1 { + gap: 0.25rem !important; + } -.bg-dark { - background-color: #343a40 !important; } + .gap-xl-2 { + gap: 0.5rem !important; + } -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; } + .gap-xl-3 { + gap: 1rem !important; + } -.bg-white { - background-color: #fff !important; } + .gap-xl-4 { + gap: 1.5rem !important; + } -.bg-transparent { - background-color: transparent !important; } + .gap-xl-5 { + gap: 3rem !important; + } -.border { - border: 1px solid #dee2e6 !important; } + .justify-content-xl-start { + justify-content: flex-start !important; + } -.border-top { - border-top: 1px solid #dee2e6 !important; } + .justify-content-xl-end { + justify-content: flex-end !important; + } -.border-right { - border-right: 1px solid #dee2e6 !important; } + .justify-content-xl-center { + justify-content: center !important; + } -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; } + .justify-content-xl-between { + justify-content: space-between !important; + } -.border-left { - border-left: 1px solid #dee2e6 !important; } + .justify-content-xl-around { + justify-content: space-around !important; + } -.border-0 { - border: 0 !important; } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } -.border-top-0 { - border-top: 0 !important; } + .align-items-xl-start { + align-items: flex-start !important; + } -.border-right-0 { - border-right: 0 !important; } + .align-items-xl-end { + align-items: flex-end !important; + } -.border-bottom-0 { - border-bottom: 0 !important; } + .align-items-xl-center { + align-items: center !important; + } -.border-left-0 { - border-left: 0 !important; } + .align-items-xl-baseline { + align-items: baseline !important; + } -.border-primary { - border-color: #007bff !important; } + .align-items-xl-stretch { + align-items: stretch !important; + } -.border-secondary { - border-color: #6c757d !important; } + .align-content-xl-start { + align-content: flex-start !important; + } -.border-success { - border-color: #28a745 !important; } + .align-content-xl-end { + align-content: flex-end !important; + } -.border-info { - border-color: #17a2b8 !important; } + .align-content-xl-center { + align-content: center !important; + } -.border-warning { - border-color: #ffc107 !important; } + .align-content-xl-between { + align-content: space-between !important; + } -.border-danger { - border-color: #dc3545 !important; } + .align-content-xl-around { + align-content: space-around !important; + } -.border-light { - border-color: #f8f9fa !important; } + .align-content-xl-stretch { + align-content: stretch !important; + } -.border-dark { - border-color: #343a40 !important; } + .align-self-xl-auto { + align-self: auto !important; + } -.border-white { - border-color: #fff !important; } + .align-self-xl-start { + align-self: flex-start !important; + } -.rounded-sm { - border-radius: 0.2rem !important; } + .align-self-xl-end { + align-self: flex-end !important; + } -.rounded { - border-radius: 0.25rem !important; } + .align-self-xl-center { + align-self: center !important; + } -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; } + .align-self-xl-baseline { + align-self: baseline !important; + } -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; } + .align-self-xl-stretch { + align-self: stretch !important; + } -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } + .order-xl-first { + order: -1 !important; + } -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } + .order-xl-0 { + order: 0 !important; + } -.rounded-lg { - border-radius: 0.3rem !important; } + .order-xl-1 { + order: 1 !important; + } -.rounded-circle { - border-radius: 50% !important; } + .order-xl-2 { + order: 2 !important; + } -.rounded-pill { - border-radius: 50rem !important; } + .order-xl-3 { + order: 3 !important; + } -.rounded-0 { - border-radius: 0 !important; } + .order-xl-4 { + order: 4 !important; + } -.clearfix::after { - display: block; - clear: both; - content: \\"\\"; } + .order-xl-5 { + order: 5 !important; + } -.d-none { - display: none !important; } + .order-xl-last { + order: 6 !important; + } -.d-inline { - display: inline !important; } + .m-xl-0 { + margin: 0 !important; + } -.d-inline-block { - display: inline-block !important; } + .m-xl-1 { + margin: 0.25rem !important; + } -.d-block { - display: block !important; } + .m-xl-2 { + margin: 0.5rem !important; + } -.d-table { - display: table !important; } + .m-xl-3 { + margin: 1rem !important; + } -.d-table-row { - display: table-row !important; } + .m-xl-4 { + margin: 1.5rem !important; + } -.d-table-cell { - display: table-cell !important; } + .m-xl-5 { + margin: 3rem !important; + } -.d-flex { - display: flex !important; } + .m-xl-auto { + margin: auto !important; + } -.d-inline-flex { - display: inline-flex !important; } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } -@media (min-width: 576px) { - .d-sm-none { - display: none !important; } - .d-sm-inline { - display: inline !important; } - .d-sm-inline-block { - display: inline-block !important; } - .d-sm-block { - display: block !important; } - .d-sm-table { - display: table !important; } - .d-sm-table-row { - display: table-row !important; } - .d-sm-table-cell { - display: table-cell !important; } - .d-sm-flex { - display: flex !important; } - .d-sm-inline-flex { - display: inline-flex !important; } } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } -@media (min-width: 768px) { - .d-md-none { - display: none !important; } - .d-md-inline { - display: inline !important; } - .d-md-inline-block { - display: inline-block !important; } - .d-md-block { - display: block !important; } - .d-md-table { - display: table !important; } - .d-md-table-row { - display: table-row !important; } - .d-md-table-cell { - display: table-cell !important; } - .d-md-flex { - display: flex !important; } - .d-md-inline-flex { - display: inline-flex !important; } } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } -@media (min-width: 992px) { - .d-lg-none { - display: none !important; } - .d-lg-inline { - display: inline !important; } - .d-lg-inline-block { - display: inline-block !important; } - .d-lg-block { - display: block !important; } - .d-lg-table { - display: table !important; } - .d-lg-table-row { - display: table-row !important; } - .d-lg-table-cell { - display: table-cell !important; } - .d-lg-flex { - display: flex !important; } - .d-lg-inline-flex { - display: inline-flex !important; } } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; } - .d-xl-inline { - display: inline !important; } - .d-xl-inline-block { - display: inline-block !important; } - .d-xl-block { - display: block !important; } - .d-xl-table { - display: table !important; } - .d-xl-table-row { - display: table-row !important; } - .d-xl-table-cell { - display: table-cell !important; } - .d-xl-flex { - display: flex !important; } - .d-xl-inline-flex { - display: inline-flex !important; } } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -@media print { - .d-print-none { - display: none !important; } - .d-print-inline { - display: inline !important; } - .d-print-inline-block { - display: inline-block !important; } - .d-print-block { - display: block !important; } - .d-print-table { - display: table !important; } - .d-print-table-row { - display: table-row !important; } - .d-print-table-cell { - display: table-cell !important; } - .d-print-flex { - display: flex !important; } - .d-print-inline-flex { - display: inline-flex !important; } } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; } - .embed-responsive::before { - display: block; - content: \\"\\"; } - .embed-responsive .embed-responsive-item, - .embed-responsive iframe, - .embed-responsive embed, - .embed-responsive object, - .embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; } + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } -.embed-responsive-21by9::before { - padding-top: 42.85714%; } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -.embed-responsive-16by9::before { - padding-top: 56.25%; } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.embed-responsive-4by3::before { - padding-top: 75%; } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -.embed-responsive-1by1::before { - padding-top: 100%; } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -.flex-row { - flex-direction: row !important; } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.flex-column { - flex-direction: column !important; } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.flex-row-reverse { - flex-direction: row-reverse !important; } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -.flex-column-reverse { - flex-direction: column-reverse !important; } + .mt-xl-0 { + margin-top: 0 !important; + } -.flex-wrap { - flex-wrap: wrap !important; } + .mt-xl-1 { + margin-top: 0.25rem !important; + } -.flex-nowrap { - flex-wrap: nowrap !important; } + .mt-xl-2 { + margin-top: 0.5rem !important; + } -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; } + .mt-xl-3 { + margin-top: 1rem !important; + } -.flex-fill { - flex: 1 1 auto !important; } + .mt-xl-4 { + margin-top: 1.5rem !important; + } -.flex-grow-0 { - flex-grow: 0 !important; } + .mt-xl-5 { + margin-top: 3rem !important; + } -.flex-grow-1 { - flex-grow: 1 !important; } + .mt-xl-auto { + margin-top: auto !important; + } -.flex-shrink-0 { - flex-shrink: 0 !important; } + .me-xl-0 { + margin-right: 0 !important; + } -.flex-shrink-1 { - flex-shrink: 1 !important; } + .me-xl-1 { + margin-right: 0.25rem !important; + } -.justify-content-start { - justify-content: flex-start !important; } + .me-xl-2 { + margin-right: 0.5rem !important; + } -.justify-content-end { - justify-content: flex-end !important; } + .me-xl-3 { + margin-right: 1rem !important; + } -.justify-content-center { - justify-content: center !important; } + .me-xl-4 { + margin-right: 1.5rem !important; + } -.justify-content-between { - justify-content: space-between !important; } + .me-xl-5 { + margin-right: 3rem !important; + } -.justify-content-around { - justify-content: space-around !important; } + .me-xl-auto { + margin-right: auto !important; + } -.align-items-start { - align-items: flex-start !important; } + .mb-xl-0 { + margin-bottom: 0 !important; + } -.align-items-end { - align-items: flex-end !important; } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } -.align-items-center { - align-items: center !important; } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } -.align-items-baseline { - align-items: baseline !important; } + .mb-xl-3 { + margin-bottom: 1rem !important; + } -.align-items-stretch { - align-items: stretch !important; } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } -.align-content-start { - align-content: flex-start !important; } + .mb-xl-5 { + margin-bottom: 3rem !important; + } -.align-content-end { - align-content: flex-end !important; } + .mb-xl-auto { + margin-bottom: auto !important; + } -.align-content-center { - align-content: center !important; } + .ms-xl-0 { + margin-left: 0 !important; + } -.align-content-between { - align-content: space-between !important; } + .ms-xl-1 { + margin-left: 0.25rem !important; + } -.align-content-around { - align-content: space-around !important; } + .ms-xl-2 { + margin-left: 0.5rem !important; + } -.align-content-stretch { - align-content: stretch !important; } + .ms-xl-3 { + margin-left: 1rem !important; + } -.align-self-auto { - align-self: auto !important; } + .ms-xl-4 { + margin-left: 1.5rem !important; + } -.align-self-start { - align-self: flex-start !important; } + .ms-xl-5 { + margin-left: 3rem !important; + } -.align-self-end { - align-self: flex-end !important; } + .ms-xl-auto { + margin-left: auto !important; + } -.align-self-center { - align-self: center !important; } + .p-xl-0 { + padding: 0 !important; + } -.align-self-baseline { - align-self: baseline !important; } + .p-xl-1 { + padding: 0.25rem !important; + } -.align-self-stretch { - align-self: stretch !important; } + .p-xl-2 { + padding: 0.5rem !important; + } -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; } - .flex-sm-column { - flex-direction: column !important; } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; } - .flex-sm-wrap { - flex-wrap: wrap !important; } - .flex-sm-nowrap { - flex-wrap: nowrap !important; } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-sm-fill { - flex: 1 1 auto !important; } - .flex-sm-grow-0 { - flex-grow: 0 !important; } - .flex-sm-grow-1 { - flex-grow: 1 !important; } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-sm-start { - justify-content: flex-start !important; } - .justify-content-sm-end { - justify-content: flex-end !important; } - .justify-content-sm-center { - justify-content: center !important; } - .justify-content-sm-between { - justify-content: space-between !important; } - .justify-content-sm-around { - justify-content: space-around !important; } - .align-items-sm-start { - align-items: flex-start !important; } - .align-items-sm-end { - align-items: flex-end !important; } - .align-items-sm-center { - align-items: center !important; } - .align-items-sm-baseline { - align-items: baseline !important; } - .align-items-sm-stretch { - align-items: stretch !important; } - .align-content-sm-start { - align-content: flex-start !important; } - .align-content-sm-end { - align-content: flex-end !important; } - .align-content-sm-center { - align-content: center !important; } - .align-content-sm-between { - align-content: space-between !important; } - .align-content-sm-around { - align-content: space-around !important; } - .align-content-sm-stretch { - align-content: stretch !important; } - .align-self-sm-auto { - align-self: auto !important; } - .align-self-sm-start { - align-self: flex-start !important; } - .align-self-sm-end { - align-self: flex-end !important; } - .align-self-sm-center { - align-self: center !important; } - .align-self-sm-baseline { - align-self: baseline !important; } - .align-self-sm-stretch { - align-self: stretch !important; } } + .p-xl-3 { + padding: 1rem !important; + } -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; } - .flex-md-column { - flex-direction: column !important; } - .flex-md-row-reverse { - flex-direction: row-reverse !important; } - .flex-md-column-reverse { - flex-direction: column-reverse !important; } - .flex-md-wrap { - flex-wrap: wrap !important; } - .flex-md-nowrap { - flex-wrap: nowrap !important; } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-md-fill { - flex: 1 1 auto !important; } - .flex-md-grow-0 { - flex-grow: 0 !important; } - .flex-md-grow-1 { - flex-grow: 1 !important; } - .flex-md-shrink-0 { - flex-shrink: 0 !important; } - .flex-md-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-md-start { - justify-content: flex-start !important; } - .justify-content-md-end { - justify-content: flex-end !important; } - .justify-content-md-center { - justify-content: center !important; } - .justify-content-md-between { - justify-content: space-between !important; } - .justify-content-md-around { - justify-content: space-around !important; } - .align-items-md-start { - align-items: flex-start !important; } - .align-items-md-end { - align-items: flex-end !important; } - .align-items-md-center { - align-items: center !important; } - .align-items-md-baseline { - align-items: baseline !important; } - .align-items-md-stretch { - align-items: stretch !important; } - .align-content-md-start { - align-content: flex-start !important; } - .align-content-md-end { - align-content: flex-end !important; } - .align-content-md-center { - align-content: center !important; } - .align-content-md-between { - align-content: space-between !important; } - .align-content-md-around { - align-content: space-around !important; } - .align-content-md-stretch { - align-content: stretch !important; } - .align-self-md-auto { - align-self: auto !important; } - .align-self-md-start { - align-self: flex-start !important; } - .align-self-md-end { - align-self: flex-end !important; } - .align-self-md-center { - align-self: center !important; } - .align-self-md-baseline { - align-self: baseline !important; } - .align-self-md-stretch { - align-self: stretch !important; } } + .p-xl-4 { + padding: 1.5rem !important; + } -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; } - .flex-lg-column { - flex-direction: column !important; } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; } - .flex-lg-wrap { - flex-wrap: wrap !important; } - .flex-lg-nowrap { - flex-wrap: nowrap !important; } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-lg-fill { - flex: 1 1 auto !important; } - .flex-lg-grow-0 { - flex-grow: 0 !important; } - .flex-lg-grow-1 { - flex-grow: 1 !important; } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-lg-start { - justify-content: flex-start !important; } - .justify-content-lg-end { - justify-content: flex-end !important; } - .justify-content-lg-center { - justify-content: center !important; } - .justify-content-lg-between { - justify-content: space-between !important; } - .justify-content-lg-around { - justify-content: space-around !important; } - .align-items-lg-start { - align-items: flex-start !important; } - .align-items-lg-end { - align-items: flex-end !important; } - .align-items-lg-center { - align-items: center !important; } - .align-items-lg-baseline { - align-items: baseline !important; } - .align-items-lg-stretch { - align-items: stretch !important; } - .align-content-lg-start { - align-content: flex-start !important; } - .align-content-lg-end { - align-content: flex-end !important; } - .align-content-lg-center { - align-content: center !important; } - .align-content-lg-between { - align-content: space-between !important; } - .align-content-lg-around { - align-content: space-around !important; } - .align-content-lg-stretch { - align-content: stretch !important; } - .align-self-lg-auto { - align-self: auto !important; } - .align-self-lg-start { - align-self: flex-start !important; } - .align-self-lg-end { - align-self: flex-end !important; } - .align-self-lg-center { - align-self: center !important; } - .align-self-lg-baseline { - align-self: baseline !important; } - .align-self-lg-stretch { - align-self: stretch !important; } } + .p-xl-5 { + padding: 3rem !important; + } -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; } - .flex-xl-column { - flex-direction: column !important; } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xl-wrap { - flex-wrap: wrap !important; } - .flex-xl-nowrap { - flex-wrap: nowrap !important; } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .flex-xl-fill { - flex: 1 1 auto !important; } - .flex-xl-grow-0 { - flex-grow: 0 !important; } - .flex-xl-grow-1 { - flex-grow: 1 !important; } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; } - .justify-content-xl-start { - justify-content: flex-start !important; } - .justify-content-xl-end { - justify-content: flex-end !important; } - .justify-content-xl-center { - justify-content: center !important; } - .justify-content-xl-between { - justify-content: space-between !important; } - .justify-content-xl-around { - justify-content: space-around !important; } - .align-items-xl-start { - align-items: flex-start !important; } - .align-items-xl-end { - align-items: flex-end !important; } - .align-items-xl-center { - align-items: center !important; } - .align-items-xl-baseline { - align-items: baseline !important; } - .align-items-xl-stretch { - align-items: stretch !important; } - .align-content-xl-start { - align-content: flex-start !important; } - .align-content-xl-end { - align-content: flex-end !important; } - .align-content-xl-center { - align-content: center !important; } - .align-content-xl-between { - align-content: space-between !important; } - .align-content-xl-around { - align-content: space-around !important; } - .align-content-xl-stretch { - align-content: stretch !important; } - .align-self-xl-auto { - align-self: auto !important; } - .align-self-xl-start { - align-self: flex-start !important; } - .align-self-xl-end { - align-self: flex-end !important; } - .align-self-xl-center { - align-self: center !important; } - .align-self-xl-baseline { - align-self: baseline !important; } - .align-self-xl-stretch { - align-self: stretch !important; } } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.float-left { - float: left !important; } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.float-right { - float: right !important; } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.float-none { - float: none !important; } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -@media (min-width: 576px) { - .float-sm-left { - float: left !important; } - .float-sm-right { - float: right !important; } - .float-sm-none { - float: none !important; } } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -@media (min-width: 768px) { - .float-md-left { - float: left !important; } - .float-md-right { - float: right !important; } - .float-md-none { - float: none !important; } } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -@media (min-width: 992px) { - .float-lg-left { - float: left !important; } - .float-lg-right { - float: right !important; } - .float-lg-none { - float: none !important; } } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; } - .float-xl-right { - float: right !important; } - .float-xl-none { - float: none !important; } } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -.user-select-all { - user-select: all !important; } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -.user-select-auto { - user-select: auto !important; } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -.user-select-none { - user-select: none !important; } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.overflow-auto { - overflow: auto !important; } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -.overflow-hidden { - overflow: hidden !important; } + .pt-xl-0 { + padding-top: 0 !important; + } -.position-static { - position: static !important; } + .pt-xl-1 { + padding-top: 0.25rem !important; + } -.position-relative { - position: relative !important; } + .pt-xl-2 { + padding-top: 0.5rem !important; + } -.position-absolute { - position: absolute !important; } + .pt-xl-3 { + padding-top: 1rem !important; + } -.position-fixed { - position: fixed !important; } + .pt-xl-4 { + padding-top: 1.5rem !important; + } -.position-sticky { - position: sticky !important; } + .pt-xl-5 { + padding-top: 3rem !important; + } -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; } + .pe-xl-0 { + padding-right: 0 !important; + } -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; } + .pe-xl-1 { + padding-right: 0.25rem !important; + } -@supports (position: sticky) { - .sticky-top { - position: sticky; - top: 0; - z-index: 1020; } } + .pe-xl-2 { + padding-right: 0.5rem !important; + } -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; } + .pe-xl-3 { + padding-right: 1rem !important; + } -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; } + .pe-xl-4 { + padding-right: 1.5rem !important; + } -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } + .pe-xl-5 { + padding-right: 3rem !important; + } -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } + .pb-xl-0 { + padding-bottom: 0 !important; + } -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } -.shadow-none { - box-shadow: none !important; } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } -.w-25 { - width: 25% !important; } + .pb-xl-3 { + padding-bottom: 1rem !important; + } -.w-50 { - width: 50% !important; } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } -.w-75 { - width: 75% !important; } + .pb-xl-5 { + padding-bottom: 3rem !important; + } -.w-100 { - width: 100% !important; } + .ps-xl-0 { + padding-left: 0 !important; + } -.w-auto { - width: auto !important; } + .ps-xl-1 { + padding-left: 0.25rem !important; + } -.h-25 { - height: 25% !important; } + .ps-xl-2 { + padding-left: 0.5rem !important; + } -.h-50 { - height: 50% !important; } + .ps-xl-3 { + padding-left: 1rem !important; + } -.h-75 { - height: 75% !important; } + .ps-xl-4 { + padding-left: 1.5rem !important; + } -.h-100 { - height: 100% !important; } + .ps-xl-5 { + padding-left: 3rem !important; + } -.h-auto { - height: auto !important; } + .text-xl-start { + text-align: left !important; + } -.mw-100 { - max-width: 100% !important; } + .text-xl-end { + text-align: right !important; + } -.mh-100 { - max-height: 100% !important; } + .text-xl-center { + text-align: center !important; + } +} +@media (min-width: 1400px) { + .float-xxl-start { + float: left !important; + } -.min-vw-100 { - min-width: 100vw !important; } + .float-xxl-end { + float: right !important; + } -.min-vh-100 { - min-height: 100vh !important; } + .float-xxl-none { + float: none !important; + } -.vw-100 { - width: 100vw !important; } + .d-xxl-inline { + display: inline !important; + } -.vh-100 { - height: 100vh !important; } + .d-xxl-inline-block { + display: inline-block !important; + } -.m-0 { - margin: 0 !important; } + .d-xxl-block { + display: block !important; + } -.mt-0, -.my-0 { - margin-top: 0 !important; } + .d-xxl-grid { + display: grid !important; + } -.mr-0, -.mx-0 { - margin-right: 0 !important; } + .d-xxl-table { + display: table !important; + } -.mb-0, -.my-0 { - margin-bottom: 0 !important; } + .d-xxl-table-row { + display: table-row !important; + } -.ml-0, -.mx-0 { - margin-left: 0 !important; } + .d-xxl-table-cell { + display: table-cell !important; + } -.m-1 { - margin: 0.25rem !important; } + .d-xxl-flex { + display: flex !important; + } -.mt-1, -.my-1 { - margin-top: 0.25rem !important; } + .d-xxl-inline-flex { + display: inline-flex !important; + } -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; } + .d-xxl-none { + display: none !important; + } -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; } + .flex-xxl-fill { + flex: 1 1 auto !important; + } -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; } + .flex-xxl-row { + flex-direction: row !important; + } -.m-2 { - margin: 0.5rem !important; } + .flex-xxl-column { + flex-direction: column !important; + } -.mt-2, -.my-2 { - margin-top: 0.5rem !important; } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } -.m-3 { - margin: 1rem !important; } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } -.mt-3, -.my-3 { - margin-top: 1rem !important; } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } -.mr-3, -.mx-3 { - margin-right: 1rem !important; } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } -.mb-3, -.my-3 { - margin-bottom: 1rem !important; } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } -.ml-3, -.mx-3 { - margin-left: 1rem !important; } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } -.m-4 { - margin: 1.5rem !important; } + .gap-xxl-0 { + gap: 0 !important; + } -.mt-4, -.my-4 { - margin-top: 1.5rem !important; } + .gap-xxl-1 { + gap: 0.25rem !important; + } -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; } + .gap-xxl-2 { + gap: 0.5rem !important; + } -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; } + .gap-xxl-3 { + gap: 1rem !important; + } -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; } + .gap-xxl-4 { + gap: 1.5rem !important; + } -.m-5 { - margin: 3rem !important; } + .gap-xxl-5 { + gap: 3rem !important; + } -.mt-5, -.my-5 { - margin-top: 3rem !important; } + .justify-content-xxl-start { + justify-content: flex-start !important; + } -.mr-5, -.mx-5 { - margin-right: 3rem !important; } + .justify-content-xxl-end { + justify-content: flex-end !important; + } -.mb-5, -.my-5 { - margin-bottom: 3rem !important; } + .justify-content-xxl-center { + justify-content: center !important; + } -.ml-5, -.mx-5 { - margin-left: 3rem !important; } + .justify-content-xxl-between { + justify-content: space-between !important; + } -.p-0 { - padding: 0 !important; } + .justify-content-xxl-around { + justify-content: space-around !important; + } -.pt-0, -.py-0 { - padding-top: 0 !important; } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } -.pr-0, -.px-0 { - padding-right: 0 !important; } + .align-items-xxl-start { + align-items: flex-start !important; + } -.pb-0, -.py-0 { - padding-bottom: 0 !important; } + .align-items-xxl-end { + align-items: flex-end !important; + } -.pl-0, -.px-0 { - padding-left: 0 !important; } + .align-items-xxl-center { + align-items: center !important; + } -.p-1 { - padding: 0.25rem !important; } + .align-items-xxl-baseline { + align-items: baseline !important; + } -.pt-1, -.py-1 { - padding-top: 0.25rem !important; } + .align-items-xxl-stretch { + align-items: stretch !important; + } -.pr-1, -.px-1 { - padding-right: 0.25rem !important; } + .align-content-xxl-start { + align-content: flex-start !important; + } -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; } + .align-content-xxl-end { + align-content: flex-end !important; + } -.pl-1, -.px-1 { - padding-left: 0.25rem !important; } + .align-content-xxl-center { + align-content: center !important; + } -.p-2 { - padding: 0.5rem !important; } + .align-content-xxl-between { + align-content: space-between !important; + } -.pt-2, -.py-2 { - padding-top: 0.5rem !important; } + .align-content-xxl-around { + align-content: space-around !important; + } -.pr-2, -.px-2 { - padding-right: 0.5rem !important; } + .align-content-xxl-stretch { + align-content: stretch !important; + } -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; } + .align-self-xxl-auto { + align-self: auto !important; + } -.pl-2, -.px-2 { - padding-left: 0.5rem !important; } + .align-self-xxl-start { + align-self: flex-start !important; + } -.p-3 { - padding: 1rem !important; } + .align-self-xxl-end { + align-self: flex-end !important; + } -.pt-3, -.py-3 { - padding-top: 1rem !important; } + .align-self-xxl-center { + align-self: center !important; + } -.pr-3, -.px-3 { - padding-right: 1rem !important; } + .align-self-xxl-baseline { + align-self: baseline !important; + } -.pb-3, -.py-3 { - padding-bottom: 1rem !important; } + .align-self-xxl-stretch { + align-self: stretch !important; + } -.pl-3, -.px-3 { - padding-left: 1rem !important; } + .order-xxl-first { + order: -1 !important; + } -.p-4 { - padding: 1.5rem !important; } + .order-xxl-0 { + order: 0 !important; + } -.pt-4, -.py-4 { - padding-top: 1.5rem !important; } + .order-xxl-1 { + order: 1 !important; + } -.pr-4, -.px-4 { - padding-right: 1.5rem !important; } + .order-xxl-2 { + order: 2 !important; + } -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; } + .order-xxl-3 { + order: 3 !important; + } -.pl-4, -.px-4 { - padding-left: 1.5rem !important; } + .order-xxl-4 { + order: 4 !important; + } -.p-5 { - padding: 3rem !important; } + .order-xxl-5 { + order: 5 !important; + } -.pt-5, -.py-5 { - padding-top: 3rem !important; } + .order-xxl-last { + order: 6 !important; + } -.pr-5, -.px-5 { - padding-right: 3rem !important; } + .m-xxl-0 { + margin: 0 !important; + } -.pb-5, -.py-5 { - padding-bottom: 3rem !important; } + .m-xxl-1 { + margin: 0.25rem !important; + } -.pl-5, -.px-5 { - padding-left: 3rem !important; } + .m-xxl-2 { + margin: 0.5rem !important; + } -.m-n1 { - margin: -0.25rem !important; } + .m-xxl-3 { + margin: 1rem !important; + } -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; } + .m-xxl-4 { + margin: 1.5rem !important; + } -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; } + .m-xxl-5 { + margin: 3rem !important; + } -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; } + .m-xxl-auto { + margin: auto !important; + } -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; } + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } -.m-n2 { - margin: -0.5rem !important; } + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; } + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; } + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; } + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -.m-n3 { - margin: -1rem !important; } + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; + } -.mt-n3, -.my-n3 { - margin-top: -1rem !important; } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -.m-n4 { - margin: -1.5rem !important; } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; } + .mt-xxl-0 { + margin-top: 0 !important; + } -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } -.m-n5 { - margin: -3rem !important; } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } -.mt-n5, -.my-n5 { - margin-top: -3rem !important; } + .mt-xxl-3 { + margin-top: 1rem !important; + } -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; } + .mt-xxl-5 { + margin-top: 3rem !important; + } -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; } + .mt-xxl-auto { + margin-top: auto !important; + } -.m-auto { - margin: auto !important; } + .me-xxl-0 { + margin-right: 0 !important; + } -.mt-auto, -.my-auto { - margin-top: auto !important; } + .me-xxl-1 { + margin-right: 0.25rem !important; + } -.mr-auto, -.mx-auto { - margin-right: auto !important; } + .me-xxl-2 { + margin-right: 0.5rem !important; + } -.mb-auto, -.my-auto { - margin-bottom: auto !important; } + .me-xxl-3 { + margin-right: 1rem !important; + } -.ml-auto, -.mx-auto { - margin-left: auto !important; } + .me-xxl-4 { + margin-right: 1.5rem !important; + } -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; } - .m-sm-1 { - margin: 0.25rem !important; } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; } - .m-sm-2 { - margin: 0.5rem !important; } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; } - .m-sm-3 { - margin: 1rem !important; } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; } - .m-sm-4 { - margin: 1.5rem !important; } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; } - .m-sm-5 { - margin: 3rem !important; } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; } - .p-sm-0 { - padding: 0 !important; } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; } - .p-sm-1 { - padding: 0.25rem !important; } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; } - .p-sm-2 { - padding: 0.5rem !important; } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; } - .p-sm-3 { - padding: 1rem !important; } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; } - .p-sm-4 { - padding: 1.5rem !important; } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; } - .p-sm-5 { - padding: 3rem !important; } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; } - .m-sm-n1 { - margin: -0.25rem !important; } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; } - .m-sm-n2 { - margin: -0.5rem !important; } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; } - .m-sm-n3 { - margin: -1rem !important; } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; } - .m-sm-n4 { - margin: -1.5rem !important; } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; } - .m-sm-n5 { - margin: -3rem !important; } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; } - .m-sm-auto { - margin: auto !important; } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; } } + .me-xxl-5 { + margin-right: 3rem !important; + } -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; } - .m-md-1 { - margin: 0.25rem !important; } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; } - .m-md-2 { - margin: 0.5rem !important; } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; } - .m-md-3 { - margin: 1rem !important; } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; } - .m-md-4 { - margin: 1.5rem !important; } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; } - .m-md-5 { - margin: 3rem !important; } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; } - .p-md-0 { - padding: 0 !important; } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; } - .p-md-1 { - padding: 0.25rem !important; } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; } - .p-md-2 { - padding: 0.5rem !important; } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; } - .p-md-3 { - padding: 1rem !important; } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; } - .p-md-4 { - padding: 1.5rem !important; } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; } - .p-md-5 { - padding: 3rem !important; } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; } - .m-md-n1 { - margin: -0.25rem !important; } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; } - .m-md-n2 { - margin: -0.5rem !important; } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; } - .m-md-n3 { - margin: -1rem !important; } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; } - .m-md-n4 { - margin: -1.5rem !important; } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; } - .m-md-n5 { - margin: -3rem !important; } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; } - .m-md-auto { - margin: auto !important; } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; } } + .me-xxl-auto { + margin-right: auto !important; + } -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; } - .m-lg-1 { - margin: 0.25rem !important; } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; } - .m-lg-2 { - margin: 0.5rem !important; } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; } - .m-lg-3 { - margin: 1rem !important; } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; } - .m-lg-4 { - margin: 1.5rem !important; } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; } - .m-lg-5 { - margin: 3rem !important; } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; } - .p-lg-0 { - padding: 0 !important; } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; } - .p-lg-1 { - padding: 0.25rem !important; } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; } - .p-lg-2 { - padding: 0.5rem !important; } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; } - .p-lg-3 { - padding: 1rem !important; } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; } - .p-lg-4 { - padding: 1.5rem !important; } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; } - .p-lg-5 { - padding: 3rem !important; } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; } - .m-lg-n1 { - margin: -0.25rem !important; } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; } - .m-lg-n2 { - margin: -0.5rem !important; } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; } - .m-lg-n3 { - margin: -1rem !important; } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; } - .m-lg-n4 { - margin: -1.5rem !important; } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; } - .m-lg-n5 { - margin: -3rem !important; } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; } - .m-lg-auto { - margin: auto !important; } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; } } + .mb-xxl-0 { + margin-bottom: 0 !important; + } -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; } - .m-xl-1 { - margin: 0.25rem !important; } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; } - .m-xl-2 { - margin: 0.5rem !important; } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; } - .m-xl-3 { - margin: 1rem !important; } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; } - .m-xl-4 { - margin: 1.5rem !important; } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; } - .m-xl-5 { - margin: 3rem !important; } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; } - .p-xl-0 { - padding: 0 !important; } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; } - .p-xl-1 { - padding: 0.25rem !important; } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; } - .p-xl-2 { - padding: 0.5rem !important; } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; } - .p-xl-3 { - padding: 1rem !important; } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; } - .p-xl-4 { - padding: 1.5rem !important; } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; } - .p-xl-5 { - padding: 3rem !important; } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; } - .m-xl-n1 { - margin: -0.25rem !important; } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; } - .m-xl-n2 { - margin: -0.5rem !important; } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; } - .m-xl-n3 { - margin: -1rem !important; } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; } - .m-xl-n4 { - margin: -1.5rem !important; } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; } - .m-xl-n5 { - margin: -3rem !important; } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; } - .m-xl-auto { - margin: auto !important; } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; } } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: \\"\\"; - background-color: rgba(0, 0, 0, 0); } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace !important; } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } -.text-justify { - text-align: justify !important; } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } -.text-wrap { - white-space: normal !important; } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } -.text-nowrap { - white-space: nowrap !important; } + .mb-xxl-auto { + margin-bottom: auto !important; + } -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } + .ms-xxl-0 { + margin-left: 0 !important; + } -.text-left { - text-align: left !important; } + .ms-xxl-1 { + margin-left: 0.25rem !important; + } -.text-right { - text-align: right !important; } + .ms-xxl-2 { + margin-left: 0.5rem !important; + } -.text-center { - text-align: center !important; } + .ms-xxl-3 { + margin-left: 1rem !important; + } -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; } - .text-sm-right { - text-align: right !important; } - .text-sm-center { - text-align: center !important; } } + .ms-xxl-4 { + margin-left: 1.5rem !important; + } -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; } - .text-md-right { - text-align: right !important; } - .text-md-center { - text-align: center !important; } } + .ms-xxl-5 { + margin-left: 3rem !important; + } -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; } - .text-lg-right { - text-align: right !important; } - .text-lg-center { - text-align: center !important; } } + .ms-xxl-auto { + margin-left: auto !important; + } -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; } - .text-xl-right { - text-align: right !important; } - .text-xl-center { - text-align: center !important; } } + .p-xxl-0 { + padding: 0 !important; + } -.text-lowercase { - text-transform: lowercase !important; } + .p-xxl-1 { + padding: 0.25rem !important; + } -.text-uppercase { - text-transform: uppercase !important; } + .p-xxl-2 { + padding: 0.5rem !important; + } -.text-capitalize { - text-transform: capitalize !important; } + .p-xxl-3 { + padding: 1rem !important; + } -.font-weight-light { - font-weight: 300 !important; } + .p-xxl-4 { + padding: 1.5rem !important; + } -.font-weight-lighter { - font-weight: lighter !important; } + .p-xxl-5 { + padding: 3rem !important; + } -.font-weight-normal { - font-weight: 400 !important; } + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.font-weight-bold { - font-weight: 700 !important; } + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.font-weight-bolder { - font-weight: bolder !important; } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.font-italic { - font-style: italic !important; } + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.text-white { - color: #fff !important; } + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -.text-primary { - color: #007bff !important; } + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -a.text-primary:hover, a.text-primary:focus { - color: #0056b3 !important; } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -.text-secondary { - color: #6c757d !important; } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -a.text-secondary:hover, a.text-secondary:focus { - color: #494f54 !important; } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -.text-success { - color: #28a745 !important; } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -a.text-success:hover, a.text-success:focus { - color: #19692c !important; } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.text-info { - color: #17a2b8 !important; } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -a.text-info:hover, a.text-info:focus { - color: #0f6674 !important; } + .pt-xxl-0 { + padding-top: 0 !important; + } -.text-warning { - color: #ffc107 !important; } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } -a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } -.text-danger { - color: #dc3545 !important; } + .pt-xxl-3 { + padding-top: 1rem !important; + } -a.text-danger:hover, a.text-danger:focus { - color: #a71d2a !important; } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } -.text-light { - color: #f8f9fa !important; } + .pt-xxl-5 { + padding-top: 3rem !important; + } -a.text-light:hover, a.text-light:focus { - color: #cbd3da !important; } + .pe-xxl-0 { + padding-right: 0 !important; + } -.text-dark { - color: #343a40 !important; } + .pe-xxl-1 { + padding-right: 0.25rem !important; + } -a.text-dark:hover, a.text-dark:focus { - color: #121416 !important; } + .pe-xxl-2 { + padding-right: 0.5rem !important; + } -.text-body { - color: #212529 !important; } + .pe-xxl-3 { + padding-right: 1rem !important; + } -.text-muted { - color: #6c757d !important; } + .pe-xxl-4 { + padding-right: 1.5rem !important; + } -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; } + .pe-xxl-5 { + padding-right: 3rem !important; + } -.text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; } + .pb-xxl-0 { + padding-bottom: 0 !important; + } -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } -.text-decoration-none { - text-decoration: none !important; } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } -.text-break { - word-break: break-word !important; - word-wrap: break-word !important; } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } -.text-reset { - color: inherit !important; } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } -.visible { - visibility: visible !important; } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } -.invisible { - visibility: hidden !important; } + .ps-xxl-0 { + padding-left: 0 !important; + } + + .ps-xxl-1 { + padding-left: 0.25rem !important; + } + + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + + .ps-xxl-3 { + padding-left: 1rem !important; + } + + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + + .ps-xxl-5 { + padding-left: 3rem !important; + } + + .text-xxl-start { + text-align: left !important; + } + + .text-xxl-end { + text-align: right !important; + } + + .text-xxl-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .fs-1 { + font-size: 2.5rem !important; + } + + .fs-2 { + font-size: 2rem !important; + } + + .fs-3 { + font-size: 1.75rem !important; + } + .fs-4 { + font-size: 1.5rem !important; + } +} @media print { - *, - *::before, - *::after { - text-shadow: none !important; - box-shadow: none !important; } - a:not(.btn) { - text-decoration: underline; } - abbr[title]::after { - content: \\" (\\" attr(title) \\")\\"; } - pre { - white-space: pre-wrap !important; } - pre, - blockquote { - border: 1px solid #adb5bd; - page-break-inside: avoid; } - tr, - img { - page-break-inside: avoid; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } - @page { - size: a3; } - body { - min-width: 992px !important; } - .container { - min-width: 992px !important; } - .navbar { - display: none; } - .badge { - border: 1px solid #000; } - .table { - border-collapse: collapse !important; } - .table td, - .table th { - background-color: #fff !important; } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6 !important; } - .table-dark { - color: inherit; } - .table-dark th, - .table-dark td, - .table-dark thead th, - .table-dark tbody + tbody { - border-color: #dee2e6; } - .table .thead-dark th { - color: inherit; - border-color: #dee2e6; } } -" -`; + .d-print-inline { + display: inline !important; + } -exports[`loader should work with "bootstrap" package v4, import as a package (node-sass) (scss): errors 1`] = `Array []`; + .d-print-inline-block { + display: inline-block !important; + } -exports[`loader should work with "bootstrap" package v4, import as a package (node-sass) (scss): warnings 1`] = `Array []`; + .d-print-block { + display: block !important; + } -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (sass): errors 1`] = `Array []`; + .d-print-grid { + display: grid !important; + } -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (sass): warnings 1`] = `Array []`; + .d-print-table { + display: table !important; + } -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (scss): errors 1`] = `Array []`; + .d-print-table-row { + display: table-row !important; + } -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; + .d-print-table-cell { + display: table-cell !important; + } -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (node-sass) (sass): errors 1`] = `Array []`; + .d-print-flex { + display: flex !important; + } -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (node-sass) (sass): warnings 1`] = `Array []`; + .d-print-inline-flex { + display: inline-flex !important; + } -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (node-sass) (scss): errors 1`] = `Array []`; + .d-print-none { + display: none !important; + } +}" +`; -exports[`loader should work with "bootstrap" package v5 without tilde, import as a package (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (sass): errors 1`] = `Array []`; -exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (sass): css 1`] = ` +exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; /*! * Bootstrap v5.1.3 (https://getbootstrap.com/) @@ -159960,66589 +156323,6029 @@ textarea.form-control-lg { border-right-color: rgba(0, 0, 0, 0.25); } .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; -} - -.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow { - top: calc(-0.5rem - 1px); -} -.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; -} -.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: \\"\\"; - border-bottom: 1px solid #f0f0f0; -} - -.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; -} -.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 1rem 1rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel.pointer-event { - touch-action: pan-y; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner::after { - display: block; - clear: both; - content: \\"\\"; -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -/* rtl:begin:ignore */ -.carousel-item-next:not(.carousel-item-start), -.active.carousel-item-end { - transform: translateX(100%); -} - -.carousel-item-prev:not(.carousel-item-end), -.active.carousel-item-start { - transform: translateX(-100%); -} - -/* rtl:end:ignore */ -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; -} -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-start, -.carousel-fade .carousel-item-prev.carousel-item-end { - z-index: 1; - opacity: 1; -} -.carousel-fade .active.carousel-item-start, -.carousel-fade .active.carousel-item-end { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; -} -@media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-start, -.carousel-fade .active.carousel-item-end { - transition: none; - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - padding: 0; - color: #fff; - text-align: center; - background: none; - border: 0; - opacity: 0.5; - transition: opacity 0.15s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-control-prev, -.carousel-control-next { - transition: none; - } -} -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 2rem; - height: 2rem; - background-repeat: no-repeat; - background-position: 50%; - background-size: 100% 100%; -} - -/* rtl:options: { - \\"autoRename\\": true, - \\"stringMap\\":[ { - \\"name\\" : \\"prev-next\\", - \\"search\\" : \\"prev\\", - \\"replace\\" : \\"next\\" - } ] -} */ -.carousel-control-prev-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\\"); -} - -.carousel-control-next-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 2; - display: flex; - justify-content: center; - padding: 0; - margin-right: 15%; - margin-bottom: 1rem; - margin-left: 15%; - list-style: none; -} -.carousel-indicators [data-bs-target] { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - padding: 0; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border: 0; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: 0.5; - transition: opacity 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-indicators [data-bs-target] { - transition: none; - } -} -.carousel-indicators .active { - opacity: 1; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 1.25rem; - left: 15%; - padding-top: 1.25rem; - padding-bottom: 1.25rem; - color: #fff; - text-align: center; -} - -.carousel-dark .carousel-control-prev-icon, -.carousel-dark .carousel-control-next-icon { - filter: invert(1) grayscale(100); -} -.carousel-dark .carousel-indicators [data-bs-target] { - background-color: #000; -} -.carousel-dark .carousel-caption { - color: #000; -} - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; - } -} -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; -} - -@keyframes spinner-grow { - 0% { - transform: scale(0); - } - 50% { - opacity: 1; - transform: none; - } -} -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem; -} - -@media (prefers-reduced-motion: reduce) { - .spinner-border, -.spinner-grow { - animation-duration: 1.5s; - } -} -.offcanvas { - position: fixed; - bottom: 0; - z-index: 1045; - display: flex; - flex-direction: column; - max-width: 100%; - visibility: hidden; - background-color: #fff; - background-clip: padding-box; - outline: 0; - transition: transform 0.3s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .offcanvas { - transition: none; - } -} - -.offcanvas-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; -} -.offcanvas-backdrop.fade { - opacity: 0; -} -.offcanvas-backdrop.show { - opacity: 0.5; -} - -.offcanvas-header { - display: flex; - align-items: center; - justify-content: space-between; - padding: 1rem 1rem; -} -.offcanvas-header .btn-close { - padding: 0.5rem 0.5rem; - margin-top: -0.5rem; - margin-right: -0.5rem; - margin-bottom: -0.5rem; -} - -.offcanvas-title { - margin-bottom: 0; - line-height: 1.5; -} - -.offcanvas-body { - flex-grow: 1; - padding: 1rem 1rem; - overflow-y: auto; -} - -.offcanvas-start { - top: 0; - left: 0; - width: 400px; - border-right: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(-100%); -} - -.offcanvas-end { - top: 0; - right: 0; - width: 400px; - border-left: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(100%); -} - -.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(-100%); -} - -.offcanvas-bottom { - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-top: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(100%); -} - -.offcanvas.show { - transform: none; -} - -.placeholder { - display: inline-block; - min-height: 1em; - vertical-align: middle; - cursor: wait; - background-color: currentColor; - opacity: 0.5; -} -.placeholder.btn::before { - display: inline-block; - content: \\"\\"; -} - -.placeholder-xs { - min-height: 0.6em; -} - -.placeholder-sm { - min-height: 0.8em; -} - -.placeholder-lg { - min-height: 1.2em; -} - -.placeholder-glow .placeholder { - animation: placeholder-glow 2s ease-in-out infinite; -} - -@keyframes placeholder-glow { - 50% { - opacity: 0.2; - } -} -.placeholder-wave { - mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); - mask-size: 200% 100%; - animation: placeholder-wave 2s linear infinite; -} - -@keyframes placeholder-wave { - 100% { - mask-position: -200% 0%; - } -} -.clearfix::after { - display: block; - clear: both; - content: \\"\\"; -} - -.link-primary { - color: #0d6efd; -} -.link-primary:hover, .link-primary:focus { - color: #0a58ca; -} - -.link-secondary { - color: #6c757d; -} -.link-secondary:hover, .link-secondary:focus { - color: #565e64; -} - -.link-success { - color: #198754; -} -.link-success:hover, .link-success:focus { - color: #146c43; -} - -.link-info { - color: #0dcaf0; -} -.link-info:hover, .link-info:focus { - color: #3dd5f3; -} - -.link-warning { - color: #ffc107; -} -.link-warning:hover, .link-warning:focus { - color: #ffcd39; -} - -.link-danger { - color: #dc3545; -} -.link-danger:hover, .link-danger:focus { - color: #b02a37; -} - -.link-light { - color: #f8f9fa; -} -.link-light:hover, .link-light:focus { - color: #f9fafb; -} - -.link-dark { - color: #212529; -} -.link-dark:hover, .link-dark:focus { - color: #1a1e21; -} - -.ratio { - position: relative; - width: 100%; -} -.ratio::before { - display: block; - padding-top: var(--bs-aspect-ratio); - content: \\"\\"; -} -.ratio > * { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -.ratio-1x1 { - --bs-aspect-ratio: 100%; -} - -.ratio-4x3 { - --bs-aspect-ratio: 75%; -} - -.ratio-16x9 { - --bs-aspect-ratio: 56.25%; -} - -.ratio-21x9 { - --bs-aspect-ratio: 42.8571428571%; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -.sticky-top { - position: sticky; - top: 0; - z-index: 1020; -} - -@media (min-width: 576px) { - .sticky-sm-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 768px) { - .sticky-md-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 992px) { - .sticky-lg-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 1200px) { - .sticky-xl-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 1400px) { - .sticky-xxl-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -.hstack { - display: flex; - flex-direction: row; - align-items: center; - align-self: stretch; -} - -.vstack { - display: flex; - flex: 1 1 auto; - flex-direction: column; - align-self: stretch; -} - -.visually-hidden, -.visually-hidden-focusable:not(:focus):not(:focus-within) { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - content: \\"\\"; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.vr { - display: inline-block; - align-self: stretch; - width: 1px; - min-height: 1em; - background-color: currentColor; - opacity: 0.25; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.float-start { - float: left !important; -} - -.float-end { - float: right !important; -} - -.float-none { - float: none !important; -} - -.opacity-0 { - opacity: 0 !important; -} - -.opacity-25 { - opacity: 0.25 !important; -} - -.opacity-50 { - opacity: 0.5 !important; -} - -.opacity-75 { - opacity: 0.75 !important; -} - -.opacity-100 { - opacity: 1 !important; -} - -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.overflow-visible { - overflow: visible !important; -} - -.overflow-scroll { - overflow: scroll !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-grid { - display: grid !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: flex !important; -} - -.d-inline-flex { - display: inline-flex !important; -} - -.d-none { - display: none !important; -} - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; -} - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; -} - -.shadow-none { - box-shadow: none !important; -} - -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: sticky !important; -} - -.top-0 { - top: 0 !important; -} - -.top-50 { - top: 50% !important; -} - -.top-100 { - top: 100% !important; -} - -.bottom-0 { - bottom: 0 !important; -} - -.bottom-50 { - bottom: 50% !important; -} - -.bottom-100 { - bottom: 100% !important; -} - -.start-0 { - left: 0 !important; -} - -.start-50 { - left: 50% !important; -} - -.start-100 { - left: 100% !important; -} - -.end-0 { - right: 0 !important; -} - -.end-50 { - right: 50% !important; -} - -.end-100 { - right: 100% !important; -} - -.translate-middle { - transform: translate(-50%, -50%) !important; -} - -.translate-middle-x { - transform: translateX(-50%) !important; -} - -.translate-middle-y { - transform: translateY(-50%) !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-end { - border-right: 1px solid #dee2e6 !important; -} - -.border-end-0 { - border-right: 0 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-start { - border-left: 1px solid #dee2e6 !important; -} - -.border-start-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #0d6efd !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #198754 !important; -} - -.border-info { - border-color: #0dcaf0 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #212529 !important; -} - -.border-white { - border-color: #fff !important; -} - -.border-1 { - border-width: 1px !important; -} - -.border-2 { - border-width: 2px !important; -} - -.border-3 { - border-width: 3px !important; -} - -.border-4 { - border-width: 4px !important; -} - -.border-5 { - border-width: 5px !important; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.w-auto { - width: auto !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.vw-100 { - width: 100vw !important; -} - -.min-vw-100 { - min-width: 100vw !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.h-auto { - height: auto !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.vh-100 { - height: 100vh !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.flex-fill { - flex: 1 1 auto !important; -} - -.flex-row { - flex-direction: row !important; -} - -.flex-column { - flex-direction: column !important; -} - -.flex-row-reverse { - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - flex-direction: column-reverse !important; -} - -.flex-grow-0 { - flex-grow: 0 !important; -} - -.flex-grow-1 { - flex-grow: 1 !important; -} - -.flex-shrink-0 { - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - flex-shrink: 1 !important; -} - -.flex-wrap { - flex-wrap: wrap !important; -} - -.flex-nowrap { - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} - -.gap-0 { - gap: 0 !important; -} - -.gap-1 { - gap: 0.25rem !important; -} - -.gap-2 { - gap: 0.5rem !important; -} - -.gap-3 { - gap: 1rem !important; -} - -.gap-4 { - gap: 1.5rem !important; -} - -.gap-5 { - gap: 3rem !important; -} - -.justify-content-start { - justify-content: flex-start !important; -} - -.justify-content-end { - justify-content: flex-end !important; -} - -.justify-content-center { - justify-content: center !important; -} - -.justify-content-between { - justify-content: space-between !important; -} - -.justify-content-around { - justify-content: space-around !important; -} - -.justify-content-evenly { - justify-content: space-evenly !important; -} - -.align-items-start { - align-items: flex-start !important; -} - -.align-items-end { - align-items: flex-end !important; -} - -.align-items-center { - align-items: center !important; -} - -.align-items-baseline { - align-items: baseline !important; -} - -.align-items-stretch { - align-items: stretch !important; -} - -.align-content-start { - align-content: flex-start !important; -} - -.align-content-end { - align-content: flex-end !important; -} - -.align-content-center { - align-content: center !important; -} - -.align-content-between { - align-content: space-between !important; -} - -.align-content-around { - align-content: space-around !important; -} - -.align-content-stretch { - align-content: stretch !important; -} - -.align-self-auto { - align-self: auto !important; -} - -.align-self-start { - align-self: flex-start !important; -} - -.align-self-end { - align-self: flex-end !important; -} - -.align-self-center { - align-self: center !important; -} - -.align-self-baseline { - align-self: baseline !important; -} - -.align-self-stretch { - align-self: stretch !important; -} - -.order-first { - order: -1 !important; -} - -.order-0 { - order: 0 !important; -} - -.order-1 { - order: 1 !important; -} - -.order-2 { - order: 2 !important; -} - -.order-3 { - order: 3 !important; -} - -.order-4 { - order: 4 !important; -} - -.order-5 { - order: 5 !important; -} - -.order-last { - order: 6 !important; -} - -.m-0 { - margin: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mx-0 { - margin-right: 0 !important; - margin-left: 0 !important; -} - -.mx-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; -} - -.mx-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; -} - -.mx-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; -} - -.mx-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; -} - -.mx-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; -} - -.mx-auto { - margin-right: auto !important; - margin-left: auto !important; -} - -.my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; -} - -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; -} - -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; -} - -.my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; -} - -.my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; -} - -.my-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; -} - -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; -} - -.mt-0 { - margin-top: 0 !important; -} - -.mt-1 { - margin-top: 0.25rem !important; -} - -.mt-2 { - margin-top: 0.5rem !important; -} - -.mt-3 { - margin-top: 1rem !important; -} - -.mt-4 { - margin-top: 1.5rem !important; -} - -.mt-5 { - margin-top: 3rem !important; -} - -.mt-auto { - margin-top: auto !important; -} - -.me-0 { - margin-right: 0 !important; -} - -.me-1 { - margin-right: 0.25rem !important; -} - -.me-2 { - margin-right: 0.5rem !important; -} - -.me-3 { - margin-right: 1rem !important; -} - -.me-4 { - margin-right: 1.5rem !important; -} - -.me-5 { - margin-right: 3rem !important; -} - -.me-auto { - margin-right: auto !important; -} - -.mb-0 { - margin-bottom: 0 !important; -} - -.mb-1 { - margin-bottom: 0.25rem !important; -} - -.mb-2 { - margin-bottom: 0.5rem !important; -} - -.mb-3 { - margin-bottom: 1rem !important; -} - -.mb-4 { - margin-bottom: 1.5rem !important; -} - -.mb-5 { - margin-bottom: 3rem !important; -} - -.mb-auto { - margin-bottom: auto !important; -} - -.ms-0 { - margin-left: 0 !important; -} - -.ms-1 { - margin-left: 0.25rem !important; -} - -.ms-2 { - margin-left: 0.5rem !important; -} - -.ms-3 { - margin-left: 1rem !important; -} - -.ms-4 { - margin-left: 1.5rem !important; -} - -.ms-5 { - margin-left: 3rem !important; -} - -.ms-auto { - margin-left: auto !important; -} - -.p-0 { - padding: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.px-0 { - padding-right: 0 !important; - padding-left: 0 !important; -} - -.px-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; -} - -.px-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; -} - -.px-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; -} - -.px-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; -} - -.px-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; -} - -.py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; -} - -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; -} - -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; -} - -.py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; -} - -.py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; -} - -.py-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; -} - -.pt-0 { - padding-top: 0 !important; -} - -.pt-1 { - padding-top: 0.25rem !important; -} - -.pt-2 { - padding-top: 0.5rem !important; -} - -.pt-3 { - padding-top: 1rem !important; -} - -.pt-4 { - padding-top: 1.5rem !important; -} - -.pt-5 { - padding-top: 3rem !important; -} - -.pe-0 { - padding-right: 0 !important; -} - -.pe-1 { - padding-right: 0.25rem !important; -} - -.pe-2 { - padding-right: 0.5rem !important; -} - -.pe-3 { - padding-right: 1rem !important; -} - -.pe-4 { - padding-right: 1.5rem !important; -} - -.pe-5 { - padding-right: 3rem !important; -} - -.pb-0 { - padding-bottom: 0 !important; -} - -.pb-1 { - padding-bottom: 0.25rem !important; -} - -.pb-2 { - padding-bottom: 0.5rem !important; -} - -.pb-3 { - padding-bottom: 1rem !important; -} - -.pb-4 { - padding-bottom: 1.5rem !important; -} - -.pb-5 { - padding-bottom: 3rem !important; -} - -.ps-0 { - padding-left: 0 !important; -} - -.ps-1 { - padding-left: 0.25rem !important; -} - -.ps-2 { - padding-left: 0.5rem !important; -} - -.ps-3 { - padding-left: 1rem !important; -} - -.ps-4 { - padding-left: 1.5rem !important; -} - -.ps-5 { - padding-left: 3rem !important; -} - -.font-monospace { - font-family: var(--bs-font-monospace) !important; -} - -.fs-1 { - font-size: calc(1.375rem + 1.5vw) !important; -} - -.fs-2 { - font-size: calc(1.325rem + 0.9vw) !important; -} - -.fs-3 { - font-size: calc(1.3rem + 0.6vw) !important; -} - -.fs-4 { - font-size: calc(1.275rem + 0.3vw) !important; -} - -.fs-5 { - font-size: 1.25rem !important; -} - -.fs-6 { - font-size: 1rem !important; -} - -.fst-italic { - font-style: italic !important; -} - -.fst-normal { - font-style: normal !important; -} - -.fw-light { - font-weight: 300 !important; -} - -.fw-lighter { - font-weight: lighter !important; -} - -.fw-normal { - font-weight: 400 !important; -} - -.fw-bold { - font-weight: 700 !important; -} - -.fw-bolder { - font-weight: bolder !important; -} - -.lh-1 { - line-height: 1 !important; -} - -.lh-sm { - line-height: 1.25 !important; -} - -.lh-base { - line-height: 1.5 !important; -} - -.lh-lg { - line-height: 2 !important; -} - -.text-start { - text-align: left !important; -} - -.text-end { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -.text-decoration-none { - text-decoration: none !important; -} - -.text-decoration-underline { - text-decoration: underline !important; -} - -.text-decoration-line-through { - text-decoration: line-through !important; -} - -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.text-wrap { - white-space: normal !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -/* rtl:begin:remove */ -.text-break { - word-wrap: break-word !important; - word-break: break-word !important; -} - -/* rtl:end:remove */ -.text-primary { - --bs-text-opacity: 1; - color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; -} - -.text-secondary { - --bs-text-opacity: 1; - color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; -} - -.text-success { - --bs-text-opacity: 1; - color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; -} - -.text-info { - --bs-text-opacity: 1; - color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; -} - -.text-warning { - --bs-text-opacity: 1; - color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; -} - -.text-danger { - --bs-text-opacity: 1; - color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; -} - -.text-light { - --bs-text-opacity: 1; - color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; -} - -.text-dark { - --bs-text-opacity: 1; - color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; -} - -.text-black { - --bs-text-opacity: 1; - color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; -} - -.text-white { - --bs-text-opacity: 1; - color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; -} - -.text-body { - --bs-text-opacity: 1; - color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; -} - -.text-muted { - --bs-text-opacity: 1; - color: #6c757d !important; -} - -.text-black-50 { - --bs-text-opacity: 1; - color: rgba(0, 0, 0, 0.5) !important; -} - -.text-white-50 { - --bs-text-opacity: 1; - color: rgba(255, 255, 255, 0.5) !important; -} - -.text-reset { - --bs-text-opacity: 1; - color: inherit !important; -} - -.text-opacity-25 { - --bs-text-opacity: 0.25; -} - -.text-opacity-50 { - --bs-text-opacity: 0.5; -} - -.text-opacity-75 { - --bs-text-opacity: 0.75; -} - -.text-opacity-100 { - --bs-text-opacity: 1; -} - -.bg-primary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-secondary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-success { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-info { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-warning { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-danger { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-light { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-dark { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-black { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-white { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-body { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-transparent { - --bs-bg-opacity: 1; - background-color: transparent !important; -} - -.bg-opacity-10 { - --bs-bg-opacity: 0.1; -} - -.bg-opacity-25 { - --bs-bg-opacity: 0.25; -} - -.bg-opacity-50 { - --bs-bg-opacity: 0.5; -} - -.bg-opacity-75 { - --bs-bg-opacity: 0.75; -} - -.bg-opacity-100 { - --bs-bg-opacity: 1; -} - -.bg-gradient { - background-image: var(--bs-gradient) !important; -} - -.user-select-all { - user-select: all !important; -} - -.user-select-auto { - user-select: auto !important; -} - -.user-select-none { - user-select: none !important; -} - -.pe-none { - pointer-events: none !important; -} - -.pe-auto { - pointer-events: auto !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.rounded-1 { - border-radius: 0.2rem !important; -} - -.rounded-2 { - border-radius: 0.25rem !important; -} - -.rounded-3 { - border-radius: 0.3rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-pill { - border-radius: 50rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-end { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-start { - border-bottom-left-radius: 0.25rem !important; - border-top-left-radius: 0.25rem !important; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media (min-width: 576px) { - .float-sm-start { - float: left !important; - } - - .float-sm-end { - float: right !important; - } - - .float-sm-none { - float: none !important; - } - - .d-sm-inline { - display: inline !important; - } - - .d-sm-inline-block { - display: inline-block !important; - } - - .d-sm-block { - display: block !important; - } - - .d-sm-grid { - display: grid !important; - } - - .d-sm-table { - display: table !important; - } - - .d-sm-table-row { - display: table-row !important; - } - - .d-sm-table-cell { - display: table-cell !important; - } - - .d-sm-flex { - display: flex !important; - } - - .d-sm-inline-flex { - display: inline-flex !important; - } - - .d-sm-none { - display: none !important; - } - - .flex-sm-fill { - flex: 1 1 auto !important; - } - - .flex-sm-row { - flex-direction: row !important; - } - - .flex-sm-column { - flex-direction: column !important; - } - - .flex-sm-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-sm-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-sm-grow-0 { - flex-grow: 0 !important; - } - - .flex-sm-grow-1 { - flex-grow: 1 !important; - } - - .flex-sm-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-sm-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-sm-wrap { - flex-wrap: wrap !important; - } - - .flex-sm-nowrap { - flex-wrap: nowrap !important; - } - - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-sm-0 { - gap: 0 !important; - } - - .gap-sm-1 { - gap: 0.25rem !important; - } - - .gap-sm-2 { - gap: 0.5rem !important; - } - - .gap-sm-3 { - gap: 1rem !important; - } - - .gap-sm-4 { - gap: 1.5rem !important; - } - - .gap-sm-5 { - gap: 3rem !important; - } - - .justify-content-sm-start { - justify-content: flex-start !important; - } - - .justify-content-sm-end { - justify-content: flex-end !important; - } - - .justify-content-sm-center { - justify-content: center !important; - } - - .justify-content-sm-between { - justify-content: space-between !important; - } - - .justify-content-sm-around { - justify-content: space-around !important; - } - - .justify-content-sm-evenly { - justify-content: space-evenly !important; - } - - .align-items-sm-start { - align-items: flex-start !important; - } - - .align-items-sm-end { - align-items: flex-end !important; - } - - .align-items-sm-center { - align-items: center !important; - } - - .align-items-sm-baseline { - align-items: baseline !important; - } - - .align-items-sm-stretch { - align-items: stretch !important; - } - - .align-content-sm-start { - align-content: flex-start !important; - } - - .align-content-sm-end { - align-content: flex-end !important; - } - - .align-content-sm-center { - align-content: center !important; - } - - .align-content-sm-between { - align-content: space-between !important; - } - - .align-content-sm-around { - align-content: space-around !important; - } - - .align-content-sm-stretch { - align-content: stretch !important; - } - - .align-self-sm-auto { - align-self: auto !important; - } - - .align-self-sm-start { - align-self: flex-start !important; - } - - .align-self-sm-end { - align-self: flex-end !important; - } - - .align-self-sm-center { - align-self: center !important; - } - - .align-self-sm-baseline { - align-self: baseline !important; - } - - .align-self-sm-stretch { - align-self: stretch !important; - } - - .order-sm-first { - order: -1 !important; - } - - .order-sm-0 { - order: 0 !important; - } - - .order-sm-1 { - order: 1 !important; - } - - .order-sm-2 { - order: 2 !important; - } - - .order-sm-3 { - order: 3 !important; - } - - .order-sm-4 { - order: 4 !important; - } - - .order-sm-5 { - order: 5 !important; - } - - .order-sm-last { - order: 6 !important; - } - - .m-sm-0 { - margin: 0 !important; - } - - .m-sm-1 { - margin: 0.25rem !important; - } - - .m-sm-2 { - margin: 0.5rem !important; - } - - .m-sm-3 { - margin: 1rem !important; - } - - .m-sm-4 { - margin: 1.5rem !important; - } - - .m-sm-5 { - margin: 3rem !important; - } - - .m-sm-auto { - margin: auto !important; - } - - .mx-sm-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-sm-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-sm-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-sm-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-sm-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-sm-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-sm-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-sm-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-sm-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-sm-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-sm-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-sm-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-sm-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-sm-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-sm-0 { - margin-top: 0 !important; - } - - .mt-sm-1 { - margin-top: 0.25rem !important; - } - - .mt-sm-2 { - margin-top: 0.5rem !important; - } - - .mt-sm-3 { - margin-top: 1rem !important; - } - - .mt-sm-4 { - margin-top: 1.5rem !important; - } - - .mt-sm-5 { - margin-top: 3rem !important; - } - - .mt-sm-auto { - margin-top: auto !important; - } - - .me-sm-0 { - margin-right: 0 !important; - } - - .me-sm-1 { - margin-right: 0.25rem !important; - } - - .me-sm-2 { - margin-right: 0.5rem !important; - } - - .me-sm-3 { - margin-right: 1rem !important; - } - - .me-sm-4 { - margin-right: 1.5rem !important; - } - - .me-sm-5 { - margin-right: 3rem !important; - } - - .me-sm-auto { - margin-right: auto !important; - } - - .mb-sm-0 { - margin-bottom: 0 !important; - } - - .mb-sm-1 { - margin-bottom: 0.25rem !important; - } - - .mb-sm-2 { - margin-bottom: 0.5rem !important; - } - - .mb-sm-3 { - margin-bottom: 1rem !important; - } - - .mb-sm-4 { - margin-bottom: 1.5rem !important; - } - - .mb-sm-5 { - margin-bottom: 3rem !important; - } - - .mb-sm-auto { - margin-bottom: auto !important; - } - - .ms-sm-0 { - margin-left: 0 !important; - } - - .ms-sm-1 { - margin-left: 0.25rem !important; - } - - .ms-sm-2 { - margin-left: 0.5rem !important; - } - - .ms-sm-3 { - margin-left: 1rem !important; - } - - .ms-sm-4 { - margin-left: 1.5rem !important; - } - - .ms-sm-5 { - margin-left: 3rem !important; - } - - .ms-sm-auto { - margin-left: auto !important; - } - - .p-sm-0 { - padding: 0 !important; - } - - .p-sm-1 { - padding: 0.25rem !important; - } - - .p-sm-2 { - padding: 0.5rem !important; - } - - .p-sm-3 { - padding: 1rem !important; - } - - .p-sm-4 { - padding: 1.5rem !important; - } - - .p-sm-5 { - padding: 3rem !important; - } - - .px-sm-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-sm-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-sm-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-sm-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-sm-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-sm-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-sm-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-sm-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-sm-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-sm-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-sm-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-sm-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-sm-0 { - padding-top: 0 !important; - } - - .pt-sm-1 { - padding-top: 0.25rem !important; - } - - .pt-sm-2 { - padding-top: 0.5rem !important; - } - - .pt-sm-3 { - padding-top: 1rem !important; - } - - .pt-sm-4 { - padding-top: 1.5rem !important; - } - - .pt-sm-5 { - padding-top: 3rem !important; - } - - .pe-sm-0 { - padding-right: 0 !important; - } - - .pe-sm-1 { - padding-right: 0.25rem !important; - } - - .pe-sm-2 { - padding-right: 0.5rem !important; - } - - .pe-sm-3 { - padding-right: 1rem !important; - } - - .pe-sm-4 { - padding-right: 1.5rem !important; - } - - .pe-sm-5 { - padding-right: 3rem !important; - } - - .pb-sm-0 { - padding-bottom: 0 !important; - } - - .pb-sm-1 { - padding-bottom: 0.25rem !important; - } - - .pb-sm-2 { - padding-bottom: 0.5rem !important; - } - - .pb-sm-3 { - padding-bottom: 1rem !important; - } - - .pb-sm-4 { - padding-bottom: 1.5rem !important; - } - - .pb-sm-5 { - padding-bottom: 3rem !important; - } - - .ps-sm-0 { - padding-left: 0 !important; - } - - .ps-sm-1 { - padding-left: 0.25rem !important; - } - - .ps-sm-2 { - padding-left: 0.5rem !important; - } - - .ps-sm-3 { - padding-left: 1rem !important; - } - - .ps-sm-4 { - padding-left: 1.5rem !important; - } - - .ps-sm-5 { - padding-left: 3rem !important; - } - - .text-sm-start { - text-align: left !important; - } - - .text-sm-end { - text-align: right !important; - } - - .text-sm-center { - text-align: center !important; - } -} -@media (min-width: 768px) { - .float-md-start { - float: left !important; - } - - .float-md-end { - float: right !important; - } - - .float-md-none { - float: none !important; - } - - .d-md-inline { - display: inline !important; - } - - .d-md-inline-block { - display: inline-block !important; - } - - .d-md-block { - display: block !important; - } - - .d-md-grid { - display: grid !important; - } - - .d-md-table { - display: table !important; - } - - .d-md-table-row { - display: table-row !important; - } - - .d-md-table-cell { - display: table-cell !important; - } - - .d-md-flex { - display: flex !important; - } - - .d-md-inline-flex { - display: inline-flex !important; - } - - .d-md-none { - display: none !important; - } - - .flex-md-fill { - flex: 1 1 auto !important; - } - - .flex-md-row { - flex-direction: row !important; - } - - .flex-md-column { - flex-direction: column !important; - } - - .flex-md-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-md-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-md-grow-0 { - flex-grow: 0 !important; - } - - .flex-md-grow-1 { - flex-grow: 1 !important; - } - - .flex-md-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-md-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-md-wrap { - flex-wrap: wrap !important; - } - - .flex-md-nowrap { - flex-wrap: nowrap !important; - } - - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-md-0 { - gap: 0 !important; - } - - .gap-md-1 { - gap: 0.25rem !important; - } - - .gap-md-2 { - gap: 0.5rem !important; - } - - .gap-md-3 { - gap: 1rem !important; - } - - .gap-md-4 { - gap: 1.5rem !important; - } - - .gap-md-5 { - gap: 3rem !important; - } - - .justify-content-md-start { - justify-content: flex-start !important; - } - - .justify-content-md-end { - justify-content: flex-end !important; - } - - .justify-content-md-center { - justify-content: center !important; - } - - .justify-content-md-between { - justify-content: space-between !important; - } - - .justify-content-md-around { - justify-content: space-around !important; - } - - .justify-content-md-evenly { - justify-content: space-evenly !important; - } - - .align-items-md-start { - align-items: flex-start !important; - } - - .align-items-md-end { - align-items: flex-end !important; - } - - .align-items-md-center { - align-items: center !important; - } - - .align-items-md-baseline { - align-items: baseline !important; - } - - .align-items-md-stretch { - align-items: stretch !important; - } - - .align-content-md-start { - align-content: flex-start !important; - } - - .align-content-md-end { - align-content: flex-end !important; - } - - .align-content-md-center { - align-content: center !important; - } - - .align-content-md-between { - align-content: space-between !important; - } - - .align-content-md-around { - align-content: space-around !important; - } - - .align-content-md-stretch { - align-content: stretch !important; - } - - .align-self-md-auto { - align-self: auto !important; - } - - .align-self-md-start { - align-self: flex-start !important; - } - - .align-self-md-end { - align-self: flex-end !important; - } - - .align-self-md-center { - align-self: center !important; - } - - .align-self-md-baseline { - align-self: baseline !important; - } - - .align-self-md-stretch { - align-self: stretch !important; - } - - .order-md-first { - order: -1 !important; - } - - .order-md-0 { - order: 0 !important; - } - - .order-md-1 { - order: 1 !important; - } - - .order-md-2 { - order: 2 !important; - } - - .order-md-3 { - order: 3 !important; - } - - .order-md-4 { - order: 4 !important; - } - - .order-md-5 { - order: 5 !important; - } - - .order-md-last { - order: 6 !important; - } - - .m-md-0 { - margin: 0 !important; - } - - .m-md-1 { - margin: 0.25rem !important; - } - - .m-md-2 { - margin: 0.5rem !important; - } - - .m-md-3 { - margin: 1rem !important; - } - - .m-md-4 { - margin: 1.5rem !important; - } - - .m-md-5 { - margin: 3rem !important; - } - - .m-md-auto { - margin: auto !important; - } - - .mx-md-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-md-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-md-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-md-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-md-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-md-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-md-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-md-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-md-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-md-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-md-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-md-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-md-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-md-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-md-0 { - margin-top: 0 !important; - } - - .mt-md-1 { - margin-top: 0.25rem !important; - } - - .mt-md-2 { - margin-top: 0.5rem !important; - } - - .mt-md-3 { - margin-top: 1rem !important; - } - - .mt-md-4 { - margin-top: 1.5rem !important; - } - - .mt-md-5 { - margin-top: 3rem !important; - } - - .mt-md-auto { - margin-top: auto !important; - } - - .me-md-0 { - margin-right: 0 !important; - } - - .me-md-1 { - margin-right: 0.25rem !important; - } - - .me-md-2 { - margin-right: 0.5rem !important; - } - - .me-md-3 { - margin-right: 1rem !important; - } - - .me-md-4 { - margin-right: 1.5rem !important; - } - - .me-md-5 { - margin-right: 3rem !important; - } - - .me-md-auto { - margin-right: auto !important; - } - - .mb-md-0 { - margin-bottom: 0 !important; - } - - .mb-md-1 { - margin-bottom: 0.25rem !important; - } - - .mb-md-2 { - margin-bottom: 0.5rem !important; - } - - .mb-md-3 { - margin-bottom: 1rem !important; - } - - .mb-md-4 { - margin-bottom: 1.5rem !important; - } - - .mb-md-5 { - margin-bottom: 3rem !important; - } - - .mb-md-auto { - margin-bottom: auto !important; - } - - .ms-md-0 { - margin-left: 0 !important; - } - - .ms-md-1 { - margin-left: 0.25rem !important; - } - - .ms-md-2 { - margin-left: 0.5rem !important; - } - - .ms-md-3 { - margin-left: 1rem !important; - } - - .ms-md-4 { - margin-left: 1.5rem !important; - } - - .ms-md-5 { - margin-left: 3rem !important; - } - - .ms-md-auto { - margin-left: auto !important; - } - - .p-md-0 { - padding: 0 !important; - } - - .p-md-1 { - padding: 0.25rem !important; - } - - .p-md-2 { - padding: 0.5rem !important; - } - - .p-md-3 { - padding: 1rem !important; - } - - .p-md-4 { - padding: 1.5rem !important; - } - - .p-md-5 { - padding: 3rem !important; - } - - .px-md-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-md-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-md-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-md-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-md-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-md-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-md-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-md-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-md-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-md-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-md-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-md-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-md-0 { - padding-top: 0 !important; - } - - .pt-md-1 { - padding-top: 0.25rem !important; - } - - .pt-md-2 { - padding-top: 0.5rem !important; - } - - .pt-md-3 { - padding-top: 1rem !important; - } - - .pt-md-4 { - padding-top: 1.5rem !important; - } - - .pt-md-5 { - padding-top: 3rem !important; - } - - .pe-md-0 { - padding-right: 0 !important; - } - - .pe-md-1 { - padding-right: 0.25rem !important; - } - - .pe-md-2 { - padding-right: 0.5rem !important; - } - - .pe-md-3 { - padding-right: 1rem !important; - } - - .pe-md-4 { - padding-right: 1.5rem !important; - } - - .pe-md-5 { - padding-right: 3rem !important; - } - - .pb-md-0 { - padding-bottom: 0 !important; - } - - .pb-md-1 { - padding-bottom: 0.25rem !important; - } - - .pb-md-2 { - padding-bottom: 0.5rem !important; - } - - .pb-md-3 { - padding-bottom: 1rem !important; - } - - .pb-md-4 { - padding-bottom: 1.5rem !important; - } - - .pb-md-5 { - padding-bottom: 3rem !important; - } - - .ps-md-0 { - padding-left: 0 !important; - } - - .ps-md-1 { - padding-left: 0.25rem !important; - } - - .ps-md-2 { - padding-left: 0.5rem !important; - } - - .ps-md-3 { - padding-left: 1rem !important; - } - - .ps-md-4 { - padding-left: 1.5rem !important; - } - - .ps-md-5 { - padding-left: 3rem !important; - } - - .text-md-start { - text-align: left !important; - } - - .text-md-end { - text-align: right !important; - } - - .text-md-center { - text-align: center !important; - } -} -@media (min-width: 992px) { - .float-lg-start { - float: left !important; - } - - .float-lg-end { - float: right !important; - } - - .float-lg-none { - float: none !important; - } - - .d-lg-inline { - display: inline !important; - } - - .d-lg-inline-block { - display: inline-block !important; - } - - .d-lg-block { - display: block !important; - } - - .d-lg-grid { - display: grid !important; - } - - .d-lg-table { - display: table !important; - } - - .d-lg-table-row { - display: table-row !important; - } - - .d-lg-table-cell { - display: table-cell !important; - } - - .d-lg-flex { - display: flex !important; - } - - .d-lg-inline-flex { - display: inline-flex !important; - } - - .d-lg-none { - display: none !important; - } - - .flex-lg-fill { - flex: 1 1 auto !important; - } - - .flex-lg-row { - flex-direction: row !important; - } - - .flex-lg-column { - flex-direction: column !important; - } - - .flex-lg-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-lg-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-lg-grow-0 { - flex-grow: 0 !important; - } - - .flex-lg-grow-1 { - flex-grow: 1 !important; - } - - .flex-lg-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-lg-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-lg-wrap { - flex-wrap: wrap !important; - } - - .flex-lg-nowrap { - flex-wrap: nowrap !important; - } - - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-lg-0 { - gap: 0 !important; - } - - .gap-lg-1 { - gap: 0.25rem !important; - } - - .gap-lg-2 { - gap: 0.5rem !important; - } - - .gap-lg-3 { - gap: 1rem !important; - } - - .gap-lg-4 { - gap: 1.5rem !important; - } - - .gap-lg-5 { - gap: 3rem !important; - } - - .justify-content-lg-start { - justify-content: flex-start !important; - } - - .justify-content-lg-end { - justify-content: flex-end !important; - } - - .justify-content-lg-center { - justify-content: center !important; - } - - .justify-content-lg-between { - justify-content: space-between !important; - } - - .justify-content-lg-around { - justify-content: space-around !important; - } - - .justify-content-lg-evenly { - justify-content: space-evenly !important; - } - - .align-items-lg-start { - align-items: flex-start !important; - } - - .align-items-lg-end { - align-items: flex-end !important; - } - - .align-items-lg-center { - align-items: center !important; - } - - .align-items-lg-baseline { - align-items: baseline !important; - } - - .align-items-lg-stretch { - align-items: stretch !important; - } - - .align-content-lg-start { - align-content: flex-start !important; - } - - .align-content-lg-end { - align-content: flex-end !important; - } - - .align-content-lg-center { - align-content: center !important; - } - - .align-content-lg-between { - align-content: space-between !important; - } - - .align-content-lg-around { - align-content: space-around !important; - } - - .align-content-lg-stretch { - align-content: stretch !important; - } - - .align-self-lg-auto { - align-self: auto !important; - } - - .align-self-lg-start { - align-self: flex-start !important; - } - - .align-self-lg-end { - align-self: flex-end !important; - } - - .align-self-lg-center { - align-self: center !important; - } - - .align-self-lg-baseline { - align-self: baseline !important; - } - - .align-self-lg-stretch { - align-self: stretch !important; - } - - .order-lg-first { - order: -1 !important; - } - - .order-lg-0 { - order: 0 !important; - } - - .order-lg-1 { - order: 1 !important; - } - - .order-lg-2 { - order: 2 !important; - } - - .order-lg-3 { - order: 3 !important; - } - - .order-lg-4 { - order: 4 !important; - } - - .order-lg-5 { - order: 5 !important; - } - - .order-lg-last { - order: 6 !important; - } - - .m-lg-0 { - margin: 0 !important; - } - - .m-lg-1 { - margin: 0.25rem !important; - } - - .m-lg-2 { - margin: 0.5rem !important; - } - - .m-lg-3 { - margin: 1rem !important; - } - - .m-lg-4 { - margin: 1.5rem !important; - } - - .m-lg-5 { - margin: 3rem !important; - } - - .m-lg-auto { - margin: auto !important; - } - - .mx-lg-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-lg-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-lg-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-lg-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-lg-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-lg-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-lg-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-lg-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-lg-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-lg-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-lg-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-lg-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-lg-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-lg-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-lg-0 { - margin-top: 0 !important; - } - - .mt-lg-1 { - margin-top: 0.25rem !important; - } - - .mt-lg-2 { - margin-top: 0.5rem !important; - } - - .mt-lg-3 { - margin-top: 1rem !important; - } - - .mt-lg-4 { - margin-top: 1.5rem !important; - } - - .mt-lg-5 { - margin-top: 3rem !important; - } - - .mt-lg-auto { - margin-top: auto !important; - } - - .me-lg-0 { - margin-right: 0 !important; - } - - .me-lg-1 { - margin-right: 0.25rem !important; - } - - .me-lg-2 { - margin-right: 0.5rem !important; - } - - .me-lg-3 { - margin-right: 1rem !important; - } - - .me-lg-4 { - margin-right: 1.5rem !important; - } - - .me-lg-5 { - margin-right: 3rem !important; - } - - .me-lg-auto { - margin-right: auto !important; - } - - .mb-lg-0 { - margin-bottom: 0 !important; - } - - .mb-lg-1 { - margin-bottom: 0.25rem !important; - } - - .mb-lg-2 { - margin-bottom: 0.5rem !important; - } - - .mb-lg-3 { - margin-bottom: 1rem !important; - } - - .mb-lg-4 { - margin-bottom: 1.5rem !important; - } - - .mb-lg-5 { - margin-bottom: 3rem !important; - } - - .mb-lg-auto { - margin-bottom: auto !important; - } - - .ms-lg-0 { - margin-left: 0 !important; - } - - .ms-lg-1 { - margin-left: 0.25rem !important; - } - - .ms-lg-2 { - margin-left: 0.5rem !important; - } - - .ms-lg-3 { - margin-left: 1rem !important; - } - - .ms-lg-4 { - margin-left: 1.5rem !important; - } - - .ms-lg-5 { - margin-left: 3rem !important; - } - - .ms-lg-auto { - margin-left: auto !important; - } - - .p-lg-0 { - padding: 0 !important; - } - - .p-lg-1 { - padding: 0.25rem !important; - } - - .p-lg-2 { - padding: 0.5rem !important; - } - - .p-lg-3 { - padding: 1rem !important; - } - - .p-lg-4 { - padding: 1.5rem !important; - } - - .p-lg-5 { - padding: 3rem !important; - } - - .px-lg-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-lg-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-lg-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-lg-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-lg-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-lg-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-lg-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-lg-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-lg-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-lg-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-lg-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-lg-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-lg-0 { - padding-top: 0 !important; - } - - .pt-lg-1 { - padding-top: 0.25rem !important; - } - - .pt-lg-2 { - padding-top: 0.5rem !important; - } - - .pt-lg-3 { - padding-top: 1rem !important; - } - - .pt-lg-4 { - padding-top: 1.5rem !important; - } - - .pt-lg-5 { - padding-top: 3rem !important; - } - - .pe-lg-0 { - padding-right: 0 !important; - } - - .pe-lg-1 { - padding-right: 0.25rem !important; - } - - .pe-lg-2 { - padding-right: 0.5rem !important; - } - - .pe-lg-3 { - padding-right: 1rem !important; - } - - .pe-lg-4 { - padding-right: 1.5rem !important; - } - - .pe-lg-5 { - padding-right: 3rem !important; - } - - .pb-lg-0 { - padding-bottom: 0 !important; - } - - .pb-lg-1 { - padding-bottom: 0.25rem !important; - } - - .pb-lg-2 { - padding-bottom: 0.5rem !important; - } - - .pb-lg-3 { - padding-bottom: 1rem !important; - } - - .pb-lg-4 { - padding-bottom: 1.5rem !important; - } - - .pb-lg-5 { - padding-bottom: 3rem !important; - } - - .ps-lg-0 { - padding-left: 0 !important; - } - - .ps-lg-1 { - padding-left: 0.25rem !important; - } - - .ps-lg-2 { - padding-left: 0.5rem !important; - } - - .ps-lg-3 { - padding-left: 1rem !important; - } - - .ps-lg-4 { - padding-left: 1.5rem !important; - } - - .ps-lg-5 { - padding-left: 3rem !important; - } - - .text-lg-start { - text-align: left !important; - } - - .text-lg-end { - text-align: right !important; - } - - .text-lg-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .float-xl-start { - float: left !important; - } - - .float-xl-end { - float: right !important; - } - - .float-xl-none { - float: none !important; - } - - .d-xl-inline { - display: inline !important; - } - - .d-xl-inline-block { - display: inline-block !important; - } - - .d-xl-block { - display: block !important; - } - - .d-xl-grid { - display: grid !important; - } - - .d-xl-table { - display: table !important; - } - - .d-xl-table-row { - display: table-row !important; - } - - .d-xl-table-cell { - display: table-cell !important; - } - - .d-xl-flex { - display: flex !important; - } - - .d-xl-inline-flex { - display: inline-flex !important; - } - - .d-xl-none { - display: none !important; - } - - .flex-xl-fill { - flex: 1 1 auto !important; - } - - .flex-xl-row { - flex-direction: row !important; - } - - .flex-xl-column { - flex-direction: column !important; - } - - .flex-xl-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-xl-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-xl-grow-0 { - flex-grow: 0 !important; - } - - .flex-xl-grow-1 { - flex-grow: 1 !important; - } - - .flex-xl-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-xl-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-xl-wrap { - flex-wrap: wrap !important; - } - - .flex-xl-nowrap { - flex-wrap: nowrap !important; - } - - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-xl-0 { - gap: 0 !important; - } - - .gap-xl-1 { - gap: 0.25rem !important; - } - - .gap-xl-2 { - gap: 0.5rem !important; - } - - .gap-xl-3 { - gap: 1rem !important; - } - - .gap-xl-4 { - gap: 1.5rem !important; - } - - .gap-xl-5 { - gap: 3rem !important; - } - - .justify-content-xl-start { - justify-content: flex-start !important; - } - - .justify-content-xl-end { - justify-content: flex-end !important; - } - - .justify-content-xl-center { - justify-content: center !important; - } - - .justify-content-xl-between { - justify-content: space-between !important; - } - - .justify-content-xl-around { - justify-content: space-around !important; - } - - .justify-content-xl-evenly { - justify-content: space-evenly !important; - } - - .align-items-xl-start { - align-items: flex-start !important; - } - - .align-items-xl-end { - align-items: flex-end !important; - } - - .align-items-xl-center { - align-items: center !important; - } - - .align-items-xl-baseline { - align-items: baseline !important; - } - - .align-items-xl-stretch { - align-items: stretch !important; - } - - .align-content-xl-start { - align-content: flex-start !important; - } - - .align-content-xl-end { - align-content: flex-end !important; - } - - .align-content-xl-center { - align-content: center !important; - } - - .align-content-xl-between { - align-content: space-between !important; - } - - .align-content-xl-around { - align-content: space-around !important; - } - - .align-content-xl-stretch { - align-content: stretch !important; - } - - .align-self-xl-auto { - align-self: auto !important; - } - - .align-self-xl-start { - align-self: flex-start !important; - } - - .align-self-xl-end { - align-self: flex-end !important; - } - - .align-self-xl-center { - align-self: center !important; - } - - .align-self-xl-baseline { - align-self: baseline !important; - } - - .align-self-xl-stretch { - align-self: stretch !important; - } - - .order-xl-first { - order: -1 !important; - } - - .order-xl-0 { - order: 0 !important; - } - - .order-xl-1 { - order: 1 !important; - } - - .order-xl-2 { - order: 2 !important; - } - - .order-xl-3 { - order: 3 !important; - } - - .order-xl-4 { - order: 4 !important; - } - - .order-xl-5 { - order: 5 !important; - } - - .order-xl-last { - order: 6 !important; - } - - .m-xl-0 { - margin: 0 !important; - } - - .m-xl-1 { - margin: 0.25rem !important; - } - - .m-xl-2 { - margin: 0.5rem !important; - } - - .m-xl-3 { - margin: 1rem !important; - } - - .m-xl-4 { - margin: 1.5rem !important; - } - - .m-xl-5 { - margin: 3rem !important; - } - - .m-xl-auto { - margin: auto !important; - } - - .mx-xl-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-xl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-xl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-xl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-xl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-xl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-xl-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-xl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-xl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-xl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-xl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-xl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-xl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-xl-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-xl-0 { - margin-top: 0 !important; - } - - .mt-xl-1 { - margin-top: 0.25rem !important; - } - - .mt-xl-2 { - margin-top: 0.5rem !important; - } - - .mt-xl-3 { - margin-top: 1rem !important; - } - - .mt-xl-4 { - margin-top: 1.5rem !important; - } - - .mt-xl-5 { - margin-top: 3rem !important; - } - - .mt-xl-auto { - margin-top: auto !important; - } - - .me-xl-0 { - margin-right: 0 !important; - } - - .me-xl-1 { - margin-right: 0.25rem !important; - } - - .me-xl-2 { - margin-right: 0.5rem !important; - } - - .me-xl-3 { - margin-right: 1rem !important; - } - - .me-xl-4 { - margin-right: 1.5rem !important; - } - - .me-xl-5 { - margin-right: 3rem !important; - } - - .me-xl-auto { - margin-right: auto !important; - } - - .mb-xl-0 { - margin-bottom: 0 !important; - } - - .mb-xl-1 { - margin-bottom: 0.25rem !important; - } - - .mb-xl-2 { - margin-bottom: 0.5rem !important; - } - - .mb-xl-3 { - margin-bottom: 1rem !important; - } - - .mb-xl-4 { - margin-bottom: 1.5rem !important; - } - - .mb-xl-5 { - margin-bottom: 3rem !important; - } - - .mb-xl-auto { - margin-bottom: auto !important; - } - - .ms-xl-0 { - margin-left: 0 !important; - } - - .ms-xl-1 { - margin-left: 0.25rem !important; - } - - .ms-xl-2 { - margin-left: 0.5rem !important; - } - - .ms-xl-3 { - margin-left: 1rem !important; - } - - .ms-xl-4 { - margin-left: 1.5rem !important; - } - - .ms-xl-5 { - margin-left: 3rem !important; - } - - .ms-xl-auto { - margin-left: auto !important; - } - - .p-xl-0 { - padding: 0 !important; - } - - .p-xl-1 { - padding: 0.25rem !important; - } - - .p-xl-2 { - padding: 0.5rem !important; - } - - .p-xl-3 { - padding: 1rem !important; - } - - .p-xl-4 { - padding: 1.5rem !important; - } - - .p-xl-5 { - padding: 3rem !important; - } - - .px-xl-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-xl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-xl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-xl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-xl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-xl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-xl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-xl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-xl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-xl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-xl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-xl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-xl-0 { - padding-top: 0 !important; - } - - .pt-xl-1 { - padding-top: 0.25rem !important; - } - - .pt-xl-2 { - padding-top: 0.5rem !important; - } - - .pt-xl-3 { - padding-top: 1rem !important; - } - - .pt-xl-4 { - padding-top: 1.5rem !important; - } - - .pt-xl-5 { - padding-top: 3rem !important; - } - - .pe-xl-0 { - padding-right: 0 !important; - } - - .pe-xl-1 { - padding-right: 0.25rem !important; - } - - .pe-xl-2 { - padding-right: 0.5rem !important; - } - - .pe-xl-3 { - padding-right: 1rem !important; - } - - .pe-xl-4 { - padding-right: 1.5rem !important; - } - - .pe-xl-5 { - padding-right: 3rem !important; - } - - .pb-xl-0 { - padding-bottom: 0 !important; - } - - .pb-xl-1 { - padding-bottom: 0.25rem !important; - } - - .pb-xl-2 { - padding-bottom: 0.5rem !important; - } - - .pb-xl-3 { - padding-bottom: 1rem !important; - } - - .pb-xl-4 { - padding-bottom: 1.5rem !important; - } - - .pb-xl-5 { - padding-bottom: 3rem !important; - } - - .ps-xl-0 { - padding-left: 0 !important; - } - - .ps-xl-1 { - padding-left: 0.25rem !important; - } - - .ps-xl-2 { - padding-left: 0.5rem !important; - } - - .ps-xl-3 { - padding-left: 1rem !important; - } - - .ps-xl-4 { - padding-left: 1.5rem !important; - } - - .ps-xl-5 { - padding-left: 3rem !important; - } - - .text-xl-start { - text-align: left !important; - } - - .text-xl-end { - text-align: right !important; - } - - .text-xl-center { - text-align: center !important; - } -} -@media (min-width: 1400px) { - .float-xxl-start { - float: left !important; - } - - .float-xxl-end { - float: right !important; - } - - .float-xxl-none { - float: none !important; - } - - .d-xxl-inline { - display: inline !important; - } - - .d-xxl-inline-block { - display: inline-block !important; - } - - .d-xxl-block { - display: block !important; - } - - .d-xxl-grid { - display: grid !important; - } - - .d-xxl-table { - display: table !important; - } - - .d-xxl-table-row { - display: table-row !important; - } - - .d-xxl-table-cell { - display: table-cell !important; - } - - .d-xxl-flex { - display: flex !important; - } - - .d-xxl-inline-flex { - display: inline-flex !important; - } - - .d-xxl-none { - display: none !important; - } - - .flex-xxl-fill { - flex: 1 1 auto !important; - } - - .flex-xxl-row { - flex-direction: row !important; - } - - .flex-xxl-column { - flex-direction: column !important; - } - - .flex-xxl-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-xxl-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-xxl-grow-0 { - flex-grow: 0 !important; - } - - .flex-xxl-grow-1 { - flex-grow: 1 !important; - } - - .flex-xxl-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-xxl-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-xxl-wrap { - flex-wrap: wrap !important; - } - - .flex-xxl-nowrap { - flex-wrap: nowrap !important; - } - - .flex-xxl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-xxl-0 { - gap: 0 !important; - } - - .gap-xxl-1 { - gap: 0.25rem !important; - } - - .gap-xxl-2 { - gap: 0.5rem !important; - } - - .gap-xxl-3 { - gap: 1rem !important; - } - - .gap-xxl-4 { - gap: 1.5rem !important; - } - - .gap-xxl-5 { - gap: 3rem !important; - } - - .justify-content-xxl-start { - justify-content: flex-start !important; - } - - .justify-content-xxl-end { - justify-content: flex-end !important; - } - - .justify-content-xxl-center { - justify-content: center !important; - } - - .justify-content-xxl-between { - justify-content: space-between !important; - } - - .justify-content-xxl-around { - justify-content: space-around !important; - } - - .justify-content-xxl-evenly { - justify-content: space-evenly !important; - } - - .align-items-xxl-start { - align-items: flex-start !important; - } - - .align-items-xxl-end { - align-items: flex-end !important; - } - - .align-items-xxl-center { - align-items: center !important; - } - - .align-items-xxl-baseline { - align-items: baseline !important; - } - - .align-items-xxl-stretch { - align-items: stretch !important; - } - - .align-content-xxl-start { - align-content: flex-start !important; - } - - .align-content-xxl-end { - align-content: flex-end !important; - } - - .align-content-xxl-center { - align-content: center !important; - } - - .align-content-xxl-between { - align-content: space-between !important; - } - - .align-content-xxl-around { - align-content: space-around !important; - } - - .align-content-xxl-stretch { - align-content: stretch !important; - } - - .align-self-xxl-auto { - align-self: auto !important; - } - - .align-self-xxl-start { - align-self: flex-start !important; - } - - .align-self-xxl-end { - align-self: flex-end !important; - } - - .align-self-xxl-center { - align-self: center !important; - } - - .align-self-xxl-baseline { - align-self: baseline !important; - } - - .align-self-xxl-stretch { - align-self: stretch !important; - } - - .order-xxl-first { - order: -1 !important; - } - - .order-xxl-0 { - order: 0 !important; - } - - .order-xxl-1 { - order: 1 !important; - } - - .order-xxl-2 { - order: 2 !important; - } - - .order-xxl-3 { - order: 3 !important; - } - - .order-xxl-4 { - order: 4 !important; - } - - .order-xxl-5 { - order: 5 !important; - } - - .order-xxl-last { - order: 6 !important; - } - - .m-xxl-0 { - margin: 0 !important; - } - - .m-xxl-1 { - margin: 0.25rem !important; - } - - .m-xxl-2 { - margin: 0.5rem !important; - } - - .m-xxl-3 { - margin: 1rem !important; - } - - .m-xxl-4 { - margin: 1.5rem !important; - } - - .m-xxl-5 { - margin: 3rem !important; - } - - .m-xxl-auto { - margin: auto !important; - } - - .mx-xxl-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-xxl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-xxl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-xxl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-xxl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-xxl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-xxl-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-xxl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-xxl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-xxl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-xxl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-xxl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-xxl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-xxl-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-xxl-0 { - margin-top: 0 !important; - } - - .mt-xxl-1 { - margin-top: 0.25rem !important; - } - - .mt-xxl-2 { - margin-top: 0.5rem !important; - } - - .mt-xxl-3 { - margin-top: 1rem !important; - } - - .mt-xxl-4 { - margin-top: 1.5rem !important; - } - - .mt-xxl-5 { - margin-top: 3rem !important; - } - - .mt-xxl-auto { - margin-top: auto !important; - } - - .me-xxl-0 { - margin-right: 0 !important; - } - - .me-xxl-1 { - margin-right: 0.25rem !important; - } - - .me-xxl-2 { - margin-right: 0.5rem !important; - } - - .me-xxl-3 { - margin-right: 1rem !important; - } - - .me-xxl-4 { - margin-right: 1.5rem !important; - } - - .me-xxl-5 { - margin-right: 3rem !important; - } - - .me-xxl-auto { - margin-right: auto !important; - } - - .mb-xxl-0 { - margin-bottom: 0 !important; - } - - .mb-xxl-1 { - margin-bottom: 0.25rem !important; - } - - .mb-xxl-2 { - margin-bottom: 0.5rem !important; - } - - .mb-xxl-3 { - margin-bottom: 1rem !important; - } - - .mb-xxl-4 { - margin-bottom: 1.5rem !important; - } - - .mb-xxl-5 { - margin-bottom: 3rem !important; - } - - .mb-xxl-auto { - margin-bottom: auto !important; - } - - .ms-xxl-0 { - margin-left: 0 !important; - } - - .ms-xxl-1 { - margin-left: 0.25rem !important; - } - - .ms-xxl-2 { - margin-left: 0.5rem !important; - } - - .ms-xxl-3 { - margin-left: 1rem !important; - } - - .ms-xxl-4 { - margin-left: 1.5rem !important; - } - - .ms-xxl-5 { - margin-left: 3rem !important; - } - - .ms-xxl-auto { - margin-left: auto !important; - } - - .p-xxl-0 { - padding: 0 !important; - } - - .p-xxl-1 { - padding: 0.25rem !important; - } - - .p-xxl-2 { - padding: 0.5rem !important; - } - - .p-xxl-3 { - padding: 1rem !important; - } - - .p-xxl-4 { - padding: 1.5rem !important; - } - - .p-xxl-5 { - padding: 3rem !important; - } - - .px-xxl-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-xxl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-xxl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-xxl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-xxl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-xxl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-xxl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-xxl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-xxl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-xxl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-xxl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-xxl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-xxl-0 { - padding-top: 0 !important; - } - - .pt-xxl-1 { - padding-top: 0.25rem !important; - } - - .pt-xxl-2 { - padding-top: 0.5rem !important; - } - - .pt-xxl-3 { - padding-top: 1rem !important; - } - - .pt-xxl-4 { - padding-top: 1.5rem !important; - } - - .pt-xxl-5 { - padding-top: 3rem !important; - } - - .pe-xxl-0 { - padding-right: 0 !important; - } - - .pe-xxl-1 { - padding-right: 0.25rem !important; - } - - .pe-xxl-2 { - padding-right: 0.5rem !important; - } - - .pe-xxl-3 { - padding-right: 1rem !important; - } - - .pe-xxl-4 { - padding-right: 1.5rem !important; - } - - .pe-xxl-5 { - padding-right: 3rem !important; - } - - .pb-xxl-0 { - padding-bottom: 0 !important; - } - - .pb-xxl-1 { - padding-bottom: 0.25rem !important; - } - - .pb-xxl-2 { - padding-bottom: 0.5rem !important; - } - - .pb-xxl-3 { - padding-bottom: 1rem !important; - } - - .pb-xxl-4 { - padding-bottom: 1.5rem !important; - } - - .pb-xxl-5 { - padding-bottom: 3rem !important; - } - - .ps-xxl-0 { - padding-left: 0 !important; - } - - .ps-xxl-1 { - padding-left: 0.25rem !important; - } - - .ps-xxl-2 { - padding-left: 0.5rem !important; - } - - .ps-xxl-3 { - padding-left: 1rem !important; - } - - .ps-xxl-4 { - padding-left: 1.5rem !important; - } - - .ps-xxl-5 { - padding-left: 3rem !important; - } - - .text-xxl-start { - text-align: left !important; - } - - .text-xxl-end { - text-align: right !important; - } - - .text-xxl-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .fs-1 { - font-size: 2.5rem !important; - } - - .fs-2 { - font-size: 2rem !important; - } - - .fs-3 { - font-size: 1.75rem !important; - } - - .fs-4 { - font-size: 1.5rem !important; - } -} -@media print { - .d-print-inline { - display: inline !important; - } - - .d-print-inline-block { - display: inline-block !important; - } - - .d-print-block { - display: block !important; - } - - .d-print-grid { - display: grid !important; - } - - .d-print-table { - display: table !important; - } - - .d-print-table-row { - display: table-row !important; - } - - .d-print-table-cell { - display: table-cell !important; - } - - .d-print-flex { - display: flex !important; - } - - .d-print-inline-flex { - display: inline-flex !important; - } - - .d-print-none { - display: none !important; - } -}" -`; - -exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -/*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --bs-blue: #0d6efd; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #d63384; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-gray-100: #f8f9fa; - --bs-gray-200: #e9ecef; - --bs-gray-300: #dee2e6; - --bs-gray-400: #ced4da; - --bs-gray-500: #adb5bd; - --bs-gray-600: #6c757d; - --bs-gray-700: #495057; - --bs-gray-800: #343a40; - --bs-gray-900: #212529; - --bs-primary: #0d6efd; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-primary-rgb: 13, 110, 253; - --bs-secondary-rgb: 108, 117, 125; - --bs-success-rgb: 25, 135, 84; - --bs-info-rgb: 13, 202, 240; - --bs-warning-rgb: 255, 193, 7; - --bs-danger-rgb: 220, 53, 69; - --bs-light-rgb: 248, 249, 250; - --bs-dark-rgb: 33, 37, 41; - --bs-white-rgb: 255, 255, 255; - --bs-black-rgb: 0, 0, 0; - --bs-body-color-rgb: 33, 37, 41; - --bs-body-bg-rgb: 255, 255, 255; - --bs-font-sans-serif: system-ui, -apple-system, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); - --bs-body-font-family: var(--bs-font-sans-serif); - --bs-body-font-size: 1rem; - --bs-body-font-weight: 400; - --bs-body-line-height: 1.5; - --bs-body-color: #212529; - --bs-body-bg: #fff; -} - -*, -*::before, -*::after { - box-sizing: border-box; -} - -@media (prefers-reduced-motion: no-preference) { - :root { - scroll-behavior: smooth; - } -} - -body { - margin: 0; - font-family: var(--bs-body-font-family); - font-size: var(--bs-body-font-size); - font-weight: var(--bs-body-font-weight); - line-height: var(--bs-body-line-height); - color: var(--bs-body-color); - text-align: var(--bs-body-text-align); - background-color: var(--bs-body-bg); - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.25; -} - -hr:not([size]) { - height: 1px; -} - -h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { - margin-top: 0; - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; -} - -h1, .h1 { - font-size: calc(1.375rem + 1.5vw); -} -@media (min-width: 1200px) { - h1, .h1 { - font-size: 2.5rem; - } -} - -h2, .h2 { - font-size: calc(1.325rem + 0.9vw); -} -@media (min-width: 1200px) { - h2, .h2 { - font-size: 2rem; - } -} - -h3, .h3 { - font-size: calc(1.3rem + 0.6vw); -} -@media (min-width: 1200px) { - h3, .h3 { - font-size: 1.75rem; - } -} - -h4, .h4 { - font-size: calc(1.275rem + 0.3vw); -} -@media (min-width: 1200px) { - h4, .h4 { - font-size: 1.5rem; - } -} - -h5, .h5 { - font-size: 1.25rem; -} - -h6, .h6 { - font-size: 1rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-bs-original-title] { - text-decoration: underline dotted; - cursor: help; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul { - padding-left: 2rem; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: 0.5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -b, -strong { - font-weight: bolder; -} - -small, .small { - font-size: 0.875em; -} - -mark, .mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -sub, -sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -a { - color: #0d6efd; - text-decoration: underline; -} -a:hover { - color: #0a58ca; -} - -a:not([href]):not([class]), a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; -} - -pre, -code, -kbd, -samp { - font-family: var(--bs-font-monospace); - font-size: 1em; - direction: ltr /* rtl:ignore */; - unicode-bidi: bidi-override; -} - -pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -code { - font-size: 0.875em; - color: #d63384; - word-wrap: break-word; -} -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; -} -kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; -} - -figure { - margin: 0 0 1rem; -} - -img, -svg { - vertical-align: middle; -} - -table { - caption-side: bottom; - border-collapse: collapse; -} - -caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: #6c757d; - text-align: left; -} - -th { - text-align: inherit; - text-align: -webkit-match-parent; -} - -thead, -tbody, -tfoot, -tr, -td, -th { - border-color: inherit; - border-style: solid; - border-width: 0; -} - -label { - display: inline-block; -} - -button { - border-radius: 0; -} - -button:focus:not(:focus-visible) { - outline: 0; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -select { - text-transform: none; -} - -[role=button] { - cursor: pointer; -} - -select { - word-wrap: normal; -} -select:disabled { - opacity: 1; -} - -[list]::-webkit-calendar-picker-indicator { - display: none; -} - -button, -[type=button], -[type=reset], -[type=submit] { - -webkit-appearance: button; -} -button:not(:disabled), -[type=button]:not(:disabled), -[type=reset]:not(:disabled), -[type=submit]:not(:disabled) { - cursor: pointer; -} - -::-moz-focus-inner { - padding: 0; - border-style: none; -} - -textarea { - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - float: left; - width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: calc(1.275rem + 0.3vw); - line-height: inherit; -} -@media (min-width: 1200px) { - legend { - font-size: 1.5rem; - } -} -legend + * { - clear: left; -} - -::-webkit-datetime-edit-fields-wrapper, -::-webkit-datetime-edit-text, -::-webkit-datetime-edit-minute, -::-webkit-datetime-edit-hour-field, -::-webkit-datetime-edit-day-field, -::-webkit-datetime-edit-month-field, -::-webkit-datetime-edit-year-field { - padding: 0; -} - -::-webkit-inner-spin-button { - height: auto; -} - -[type=search] { - outline-offset: -2px; - -webkit-appearance: textfield; -} - -/* rtl:raw: -[type=\\"tel\\"], -[type=\\"url\\"], -[type=\\"email\\"], -[type=\\"number\\"] { - direction: ltr; -} -*/ -::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-color-swatch-wrapper { - padding: 0; -} - -::file-selector-button { - font: inherit; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -iframe { - border: 0; -} - -summary { - display: list-item; - cursor: pointer; -} - -progress { - vertical-align: baseline; -} - -[hidden] { - display: none !important; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: calc(1.625rem + 4.5vw); - font-weight: 300; - line-height: 1.2; -} -@media (min-width: 1200px) { - .display-1 { - font-size: 5rem; - } -} - -.display-2 { - font-size: calc(1.575rem + 3.9vw); - font-weight: 300; - line-height: 1.2; -} -@media (min-width: 1200px) { - .display-2 { - font-size: 4.5rem; - } -} - -.display-3 { - font-size: calc(1.525rem + 3.3vw); - font-weight: 300; - line-height: 1.2; -} -@media (min-width: 1200px) { - .display-3 { - font-size: 4rem; - } -} - -.display-4 { - font-size: calc(1.475rem + 2.7vw); - font-weight: 300; - line-height: 1.2; -} -@media (min-width: 1200px) { - .display-4 { - font-size: 3.5rem; - } -} - -.display-5 { - font-size: calc(1.425rem + 2.1vw); - font-weight: 300; - line-height: 1.2; -} -@media (min-width: 1200px) { - .display-5 { - font-size: 3rem; - } -} - -.display-6 { - font-size: calc(1.375rem + 1.5vw); - font-weight: 300; - line-height: 1.2; -} -@media (min-width: 1200px) { - .display-6 { - font-size: 2.5rem; - } -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 0.875em; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} -.blockquote > :last-child { - margin-bottom: 0; -} - -.blockquote-footer { - margin-top: -1rem; - margin-bottom: 1rem; - font-size: 0.875em; - color: #6c757d; -} -.blockquote-footer::before { - content: \\"— \\"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 0.875em; - color: #6c757d; -} - -.container, -.container-fluid, -.container-xxl, -.container-xl, -.container-lg, -.container-md, -.container-sm { - width: 100%; - padding-right: var(--bs-gutter-x, 0.75rem); - padding-left: var(--bs-gutter-x, 0.75rem); - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 576px) { - .container-sm, .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container-md, .container-sm, .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container-lg, .container-md, .container-sm, .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container-xl, .container-lg, .container-md, .container-sm, .container { - max-width: 1140px; - } -} -@media (min-width: 1400px) { - .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { - max-width: 1320px; - } -} -.row { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - display: flex; - flex-wrap: wrap; - margin-top: calc(-1 * var(--bs-gutter-y)); - margin-right: calc(-0.5 * var(--bs-gutter-x)); - margin-left: calc(-0.5 * var(--bs-gutter-x)); -} -.row > * { - flex-shrink: 0; - width: 100%; - max-width: 100%; - padding-right: calc(var(--bs-gutter-x) * 0.5); - padding-left: calc(var(--bs-gutter-x) * 0.5); - margin-top: var(--bs-gutter-y); -} - -.col { - flex: 1 0 0%; -} - -.row-cols-auto > * { - flex: 0 0 auto; - width: auto; -} - -.row-cols-1 > * { - flex: 0 0 auto; - width: 100%; -} - -.row-cols-2 > * { - flex: 0 0 auto; - width: 50%; -} - -.row-cols-3 > * { - flex: 0 0 auto; - width: 33.3333333333%; -} - -.row-cols-4 > * { - flex: 0 0 auto; - width: 25%; -} - -.row-cols-5 > * { - flex: 0 0 auto; - width: 20%; -} - -.row-cols-6 > * { - flex: 0 0 auto; - width: 16.6666666667%; -} - -.col-auto { - flex: 0 0 auto; - width: auto; -} - -.col-1 { - flex: 0 0 auto; - width: 8.33333333%; -} - -.col-2 { - flex: 0 0 auto; - width: 16.66666667%; -} - -.col-3 { - flex: 0 0 auto; - width: 25%; -} - -.col-4 { - flex: 0 0 auto; - width: 33.33333333%; -} - -.col-5 { - flex: 0 0 auto; - width: 41.66666667%; -} - -.col-6 { - flex: 0 0 auto; - width: 50%; -} - -.col-7 { - flex: 0 0 auto; - width: 58.33333333%; -} - -.col-8 { - flex: 0 0 auto; - width: 66.66666667%; -} - -.col-9 { - flex: 0 0 auto; - width: 75%; -} - -.col-10 { - flex: 0 0 auto; - width: 83.33333333%; -} - -.col-11 { - flex: 0 0 auto; - width: 91.66666667%; -} - -.col-12 { - flex: 0 0 auto; - width: 100%; -} - -.offset-1 { - margin-left: 8.33333333%; -} - -.offset-2 { - margin-left: 16.66666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.33333333%; -} - -.offset-5 { - margin-left: 41.66666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.33333333%; -} - -.offset-8 { - margin-left: 66.66666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.33333333%; -} - -.offset-11 { - margin-left: 91.66666667%; -} - -.g-0, -.gx-0 { - --bs-gutter-x: 0; -} - -.g-0, -.gy-0 { - --bs-gutter-y: 0; -} - -.g-1, -.gx-1 { - --bs-gutter-x: 0.25rem; -} - -.g-1, -.gy-1 { - --bs-gutter-y: 0.25rem; -} - -.g-2, -.gx-2 { - --bs-gutter-x: 0.5rem; -} - -.g-2, -.gy-2 { - --bs-gutter-y: 0.5rem; -} - -.g-3, -.gx-3 { - --bs-gutter-x: 1rem; -} - -.g-3, -.gy-3 { - --bs-gutter-y: 1rem; -} - -.g-4, -.gx-4 { - --bs-gutter-x: 1.5rem; -} - -.g-4, -.gy-4 { - --bs-gutter-y: 1.5rem; -} - -.g-5, -.gx-5 { - --bs-gutter-x: 3rem; -} - -.g-5, -.gy-5 { - --bs-gutter-y: 3rem; -} - -@media (min-width: 576px) { - .col-sm { - flex: 1 0 0%; - } - - .row-cols-sm-auto > * { - flex: 0 0 auto; - width: auto; - } - - .row-cols-sm-1 > * { - flex: 0 0 auto; - width: 100%; - } - - .row-cols-sm-2 > * { - flex: 0 0 auto; - width: 50%; - } - - .row-cols-sm-3 > * { - flex: 0 0 auto; - width: 33.3333333333%; - } - - .row-cols-sm-4 > * { - flex: 0 0 auto; - width: 25%; - } - - .row-cols-sm-5 > * { - flex: 0 0 auto; - width: 20%; - } - - .row-cols-sm-6 > * { - flex: 0 0 auto; - width: 16.6666666667%; - } - - .col-sm-auto { - flex: 0 0 auto; - width: auto; - } - - .col-sm-1 { - flex: 0 0 auto; - width: 8.33333333%; - } - - .col-sm-2 { - flex: 0 0 auto; - width: 16.66666667%; - } - - .col-sm-3 { - flex: 0 0 auto; - width: 25%; - } - - .col-sm-4 { - flex: 0 0 auto; - width: 33.33333333%; - } - - .col-sm-5 { - flex: 0 0 auto; - width: 41.66666667%; - } - - .col-sm-6 { - flex: 0 0 auto; - width: 50%; - } - - .col-sm-7 { - flex: 0 0 auto; - width: 58.33333333%; - } - - .col-sm-8 { - flex: 0 0 auto; - width: 66.66666667%; - } - - .col-sm-9 { - flex: 0 0 auto; - width: 75%; - } - - .col-sm-10 { - flex: 0 0 auto; - width: 83.33333333%; - } - - .col-sm-11 { - flex: 0 0 auto; - width: 91.66666667%; - } - - .col-sm-12 { - flex: 0 0 auto; - width: 100%; - } - - .offset-sm-0 { - margin-left: 0; - } - - .offset-sm-1 { - margin-left: 8.33333333%; - } - - .offset-sm-2 { - margin-left: 16.66666667%; - } - - .offset-sm-3 { - margin-left: 25%; - } - - .offset-sm-4 { - margin-left: 33.33333333%; - } - - .offset-sm-5 { - margin-left: 41.66666667%; - } - - .offset-sm-6 { - margin-left: 50%; - } - - .offset-sm-7 { - margin-left: 58.33333333%; - } - - .offset-sm-8 { - margin-left: 66.66666667%; - } - - .offset-sm-9 { - margin-left: 75%; - } - - .offset-sm-10 { - margin-left: 83.33333333%; - } - - .offset-sm-11 { - margin-left: 91.66666667%; - } - - .g-sm-0, -.gx-sm-0 { - --bs-gutter-x: 0; - } - - .g-sm-0, -.gy-sm-0 { - --bs-gutter-y: 0; - } - - .g-sm-1, -.gx-sm-1 { - --bs-gutter-x: 0.25rem; - } - - .g-sm-1, -.gy-sm-1 { - --bs-gutter-y: 0.25rem; - } - - .g-sm-2, -.gx-sm-2 { - --bs-gutter-x: 0.5rem; - } - - .g-sm-2, -.gy-sm-2 { - --bs-gutter-y: 0.5rem; - } - - .g-sm-3, -.gx-sm-3 { - --bs-gutter-x: 1rem; - } - - .g-sm-3, -.gy-sm-3 { - --bs-gutter-y: 1rem; - } - - .g-sm-4, -.gx-sm-4 { - --bs-gutter-x: 1.5rem; - } - - .g-sm-4, -.gy-sm-4 { - --bs-gutter-y: 1.5rem; - } - - .g-sm-5, -.gx-sm-5 { - --bs-gutter-x: 3rem; - } - - .g-sm-5, -.gy-sm-5 { - --bs-gutter-y: 3rem; - } -} -@media (min-width: 768px) { - .col-md { - flex: 1 0 0%; - } - - .row-cols-md-auto > * { - flex: 0 0 auto; - width: auto; - } - - .row-cols-md-1 > * { - flex: 0 0 auto; - width: 100%; - } - - .row-cols-md-2 > * { - flex: 0 0 auto; - width: 50%; - } - - .row-cols-md-3 > * { - flex: 0 0 auto; - width: 33.3333333333%; - } - - .row-cols-md-4 > * { - flex: 0 0 auto; - width: 25%; - } - - .row-cols-md-5 > * { - flex: 0 0 auto; - width: 20%; - } - - .row-cols-md-6 > * { - flex: 0 0 auto; - width: 16.6666666667%; - } - - .col-md-auto { - flex: 0 0 auto; - width: auto; - } - - .col-md-1 { - flex: 0 0 auto; - width: 8.33333333%; - } - - .col-md-2 { - flex: 0 0 auto; - width: 16.66666667%; - } - - .col-md-3 { - flex: 0 0 auto; - width: 25%; - } - - .col-md-4 { - flex: 0 0 auto; - width: 33.33333333%; - } - - .col-md-5 { - flex: 0 0 auto; - width: 41.66666667%; - } - - .col-md-6 { - flex: 0 0 auto; - width: 50%; - } - - .col-md-7 { - flex: 0 0 auto; - width: 58.33333333%; - } - - .col-md-8 { - flex: 0 0 auto; - width: 66.66666667%; - } - - .col-md-9 { - flex: 0 0 auto; - width: 75%; - } - - .col-md-10 { - flex: 0 0 auto; - width: 83.33333333%; - } - - .col-md-11 { - flex: 0 0 auto; - width: 91.66666667%; - } - - .col-md-12 { - flex: 0 0 auto; - width: 100%; - } - - .offset-md-0 { - margin-left: 0; - } - - .offset-md-1 { - margin-left: 8.33333333%; - } - - .offset-md-2 { - margin-left: 16.66666667%; - } - - .offset-md-3 { - margin-left: 25%; - } - - .offset-md-4 { - margin-left: 33.33333333%; - } - - .offset-md-5 { - margin-left: 41.66666667%; - } - - .offset-md-6 { - margin-left: 50%; - } - - .offset-md-7 { - margin-left: 58.33333333%; - } - - .offset-md-8 { - margin-left: 66.66666667%; - } - - .offset-md-9 { - margin-left: 75%; - } - - .offset-md-10 { - margin-left: 83.33333333%; - } - - .offset-md-11 { - margin-left: 91.66666667%; - } - - .g-md-0, -.gx-md-0 { - --bs-gutter-x: 0; - } - - .g-md-0, -.gy-md-0 { - --bs-gutter-y: 0; - } - - .g-md-1, -.gx-md-1 { - --bs-gutter-x: 0.25rem; - } - - .g-md-1, -.gy-md-1 { - --bs-gutter-y: 0.25rem; - } - - .g-md-2, -.gx-md-2 { - --bs-gutter-x: 0.5rem; - } - - .g-md-2, -.gy-md-2 { - --bs-gutter-y: 0.5rem; - } - - .g-md-3, -.gx-md-3 { - --bs-gutter-x: 1rem; - } - - .g-md-3, -.gy-md-3 { - --bs-gutter-y: 1rem; - } - - .g-md-4, -.gx-md-4 { - --bs-gutter-x: 1.5rem; - } - - .g-md-4, -.gy-md-4 { - --bs-gutter-y: 1.5rem; - } - - .g-md-5, -.gx-md-5 { - --bs-gutter-x: 3rem; - } - - .g-md-5, -.gy-md-5 { - --bs-gutter-y: 3rem; - } -} -@media (min-width: 992px) { - .col-lg { - flex: 1 0 0%; - } - - .row-cols-lg-auto > * { - flex: 0 0 auto; - width: auto; - } - - .row-cols-lg-1 > * { - flex: 0 0 auto; - width: 100%; - } - - .row-cols-lg-2 > * { - flex: 0 0 auto; - width: 50%; - } - - .row-cols-lg-3 > * { - flex: 0 0 auto; - width: 33.3333333333%; - } - - .row-cols-lg-4 > * { - flex: 0 0 auto; - width: 25%; - } - - .row-cols-lg-5 > * { - flex: 0 0 auto; - width: 20%; - } - - .row-cols-lg-6 > * { - flex: 0 0 auto; - width: 16.6666666667%; - } - - .col-lg-auto { - flex: 0 0 auto; - width: auto; - } - - .col-lg-1 { - flex: 0 0 auto; - width: 8.33333333%; - } - - .col-lg-2 { - flex: 0 0 auto; - width: 16.66666667%; - } - - .col-lg-3 { - flex: 0 0 auto; - width: 25%; - } - - .col-lg-4 { - flex: 0 0 auto; - width: 33.33333333%; - } - - .col-lg-5 { - flex: 0 0 auto; - width: 41.66666667%; - } - - .col-lg-6 { - flex: 0 0 auto; - width: 50%; - } - - .col-lg-7 { - flex: 0 0 auto; - width: 58.33333333%; - } - - .col-lg-8 { - flex: 0 0 auto; - width: 66.66666667%; - } - - .col-lg-9 { - flex: 0 0 auto; - width: 75%; - } - - .col-lg-10 { - flex: 0 0 auto; - width: 83.33333333%; - } - - .col-lg-11 { - flex: 0 0 auto; - width: 91.66666667%; - } - - .col-lg-12 { - flex: 0 0 auto; - width: 100%; - } - - .offset-lg-0 { - margin-left: 0; - } - - .offset-lg-1 { - margin-left: 8.33333333%; - } - - .offset-lg-2 { - margin-left: 16.66666667%; - } - - .offset-lg-3 { - margin-left: 25%; - } - - .offset-lg-4 { - margin-left: 33.33333333%; - } - - .offset-lg-5 { - margin-left: 41.66666667%; - } - - .offset-lg-6 { - margin-left: 50%; - } - - .offset-lg-7 { - margin-left: 58.33333333%; - } - - .offset-lg-8 { - margin-left: 66.66666667%; - } - - .offset-lg-9 { - margin-left: 75%; - } - - .offset-lg-10 { - margin-left: 83.33333333%; - } - - .offset-lg-11 { - margin-left: 91.66666667%; - } - - .g-lg-0, -.gx-lg-0 { - --bs-gutter-x: 0; - } - - .g-lg-0, -.gy-lg-0 { - --bs-gutter-y: 0; - } - - .g-lg-1, -.gx-lg-1 { - --bs-gutter-x: 0.25rem; - } - - .g-lg-1, -.gy-lg-1 { - --bs-gutter-y: 0.25rem; - } - - .g-lg-2, -.gx-lg-2 { - --bs-gutter-x: 0.5rem; - } - - .g-lg-2, -.gy-lg-2 { - --bs-gutter-y: 0.5rem; - } - - .g-lg-3, -.gx-lg-3 { - --bs-gutter-x: 1rem; - } - - .g-lg-3, -.gy-lg-3 { - --bs-gutter-y: 1rem; - } - - .g-lg-4, -.gx-lg-4 { - --bs-gutter-x: 1.5rem; - } - - .g-lg-4, -.gy-lg-4 { - --bs-gutter-y: 1.5rem; - } - - .g-lg-5, -.gx-lg-5 { - --bs-gutter-x: 3rem; - } - - .g-lg-5, -.gy-lg-5 { - --bs-gutter-y: 3rem; - } -} -@media (min-width: 1200px) { - .col-xl { - flex: 1 0 0%; - } - - .row-cols-xl-auto > * { - flex: 0 0 auto; - width: auto; - } - - .row-cols-xl-1 > * { - flex: 0 0 auto; - width: 100%; - } - - .row-cols-xl-2 > * { - flex: 0 0 auto; - width: 50%; - } - - .row-cols-xl-3 > * { - flex: 0 0 auto; - width: 33.3333333333%; - } - - .row-cols-xl-4 > * { - flex: 0 0 auto; - width: 25%; - } - - .row-cols-xl-5 > * { - flex: 0 0 auto; - width: 20%; - } - - .row-cols-xl-6 > * { - flex: 0 0 auto; - width: 16.6666666667%; - } - - .col-xl-auto { - flex: 0 0 auto; - width: auto; - } - - .col-xl-1 { - flex: 0 0 auto; - width: 8.33333333%; - } - - .col-xl-2 { - flex: 0 0 auto; - width: 16.66666667%; - } - - .col-xl-3 { - flex: 0 0 auto; - width: 25%; - } - - .col-xl-4 { - flex: 0 0 auto; - width: 33.33333333%; - } - - .col-xl-5 { - flex: 0 0 auto; - width: 41.66666667%; - } - - .col-xl-6 { - flex: 0 0 auto; - width: 50%; - } - - .col-xl-7 { - flex: 0 0 auto; - width: 58.33333333%; - } - - .col-xl-8 { - flex: 0 0 auto; - width: 66.66666667%; - } - - .col-xl-9 { - flex: 0 0 auto; - width: 75%; - } - - .col-xl-10 { - flex: 0 0 auto; - width: 83.33333333%; - } - - .col-xl-11 { - flex: 0 0 auto; - width: 91.66666667%; - } - - .col-xl-12 { - flex: 0 0 auto; - width: 100%; - } - - .offset-xl-0 { - margin-left: 0; - } - - .offset-xl-1 { - margin-left: 8.33333333%; - } - - .offset-xl-2 { - margin-left: 16.66666667%; - } - - .offset-xl-3 { - margin-left: 25%; - } - - .offset-xl-4 { - margin-left: 33.33333333%; - } - - .offset-xl-5 { - margin-left: 41.66666667%; - } - - .offset-xl-6 { - margin-left: 50%; - } - - .offset-xl-7 { - margin-left: 58.33333333%; - } - - .offset-xl-8 { - margin-left: 66.66666667%; - } - - .offset-xl-9 { - margin-left: 75%; - } - - .offset-xl-10 { - margin-left: 83.33333333%; - } - - .offset-xl-11 { - margin-left: 91.66666667%; - } - - .g-xl-0, -.gx-xl-0 { - --bs-gutter-x: 0; - } - - .g-xl-0, -.gy-xl-0 { - --bs-gutter-y: 0; - } - - .g-xl-1, -.gx-xl-1 { - --bs-gutter-x: 0.25rem; - } - - .g-xl-1, -.gy-xl-1 { - --bs-gutter-y: 0.25rem; - } - - .g-xl-2, -.gx-xl-2 { - --bs-gutter-x: 0.5rem; - } - - .g-xl-2, -.gy-xl-2 { - --bs-gutter-y: 0.5rem; - } - - .g-xl-3, -.gx-xl-3 { - --bs-gutter-x: 1rem; - } - - .g-xl-3, -.gy-xl-3 { - --bs-gutter-y: 1rem; - } - - .g-xl-4, -.gx-xl-4 { - --bs-gutter-x: 1.5rem; - } - - .g-xl-4, -.gy-xl-4 { - --bs-gutter-y: 1.5rem; - } - - .g-xl-5, -.gx-xl-5 { - --bs-gutter-x: 3rem; - } - - .g-xl-5, -.gy-xl-5 { - --bs-gutter-y: 3rem; - } -} -@media (min-width: 1400px) { - .col-xxl { - flex: 1 0 0%; - } - - .row-cols-xxl-auto > * { - flex: 0 0 auto; - width: auto; - } - - .row-cols-xxl-1 > * { - flex: 0 0 auto; - width: 100%; - } - - .row-cols-xxl-2 > * { - flex: 0 0 auto; - width: 50%; - } - - .row-cols-xxl-3 > * { - flex: 0 0 auto; - width: 33.3333333333%; - } - - .row-cols-xxl-4 > * { - flex: 0 0 auto; - width: 25%; - } - - .row-cols-xxl-5 > * { - flex: 0 0 auto; - width: 20%; - } - - .row-cols-xxl-6 > * { - flex: 0 0 auto; - width: 16.6666666667%; - } - - .col-xxl-auto { - flex: 0 0 auto; - width: auto; - } - - .col-xxl-1 { - flex: 0 0 auto; - width: 8.33333333%; - } - - .col-xxl-2 { - flex: 0 0 auto; - width: 16.66666667%; - } - - .col-xxl-3 { - flex: 0 0 auto; - width: 25%; - } - - .col-xxl-4 { - flex: 0 0 auto; - width: 33.33333333%; - } - - .col-xxl-5 { - flex: 0 0 auto; - width: 41.66666667%; - } - - .col-xxl-6 { - flex: 0 0 auto; - width: 50%; - } - - .col-xxl-7 { - flex: 0 0 auto; - width: 58.33333333%; - } - - .col-xxl-8 { - flex: 0 0 auto; - width: 66.66666667%; - } - - .col-xxl-9 { - flex: 0 0 auto; - width: 75%; - } - - .col-xxl-10 { - flex: 0 0 auto; - width: 83.33333333%; - } - - .col-xxl-11 { - flex: 0 0 auto; - width: 91.66666667%; - } - - .col-xxl-12 { - flex: 0 0 auto; - width: 100%; - } - - .offset-xxl-0 { - margin-left: 0; - } - - .offset-xxl-1 { - margin-left: 8.33333333%; - } - - .offset-xxl-2 { - margin-left: 16.66666667%; - } - - .offset-xxl-3 { - margin-left: 25%; - } - - .offset-xxl-4 { - margin-left: 33.33333333%; - } - - .offset-xxl-5 { - margin-left: 41.66666667%; - } - - .offset-xxl-6 { - margin-left: 50%; - } - - .offset-xxl-7 { - margin-left: 58.33333333%; - } - - .offset-xxl-8 { - margin-left: 66.66666667%; - } - - .offset-xxl-9 { - margin-left: 75%; - } - - .offset-xxl-10 { - margin-left: 83.33333333%; - } - - .offset-xxl-11 { - margin-left: 91.66666667%; - } - - .g-xxl-0, -.gx-xxl-0 { - --bs-gutter-x: 0; - } - - .g-xxl-0, -.gy-xxl-0 { - --bs-gutter-y: 0; - } - - .g-xxl-1, -.gx-xxl-1 { - --bs-gutter-x: 0.25rem; - } - - .g-xxl-1, -.gy-xxl-1 { - --bs-gutter-y: 0.25rem; - } - - .g-xxl-2, -.gx-xxl-2 { - --bs-gutter-x: 0.5rem; - } - - .g-xxl-2, -.gy-xxl-2 { - --bs-gutter-y: 0.5rem; - } - - .g-xxl-3, -.gx-xxl-3 { - --bs-gutter-x: 1rem; - } - - .g-xxl-3, -.gy-xxl-3 { - --bs-gutter-y: 1rem; - } - - .g-xxl-4, -.gx-xxl-4 { - --bs-gutter-x: 1.5rem; - } - - .g-xxl-4, -.gy-xxl-4 { - --bs-gutter-y: 1.5rem; - } - - .g-xxl-5, -.gx-xxl-5 { - --bs-gutter-x: 3rem; - } - - .g-xxl-5, -.gy-xxl-5 { - --bs-gutter-y: 3rem; - } -} -.table { - --bs-table-bg: transparent; - --bs-table-accent-bg: transparent; - --bs-table-striped-color: #212529; - --bs-table-striped-bg: rgba(0, 0, 0, 0.05); - --bs-table-active-color: #212529; - --bs-table-active-bg: rgba(0, 0, 0, 0.1); - --bs-table-hover-color: #212529; - --bs-table-hover-bg: rgba(0, 0, 0, 0.075); - width: 100%; - margin-bottom: 1rem; - color: #212529; - vertical-align: top; - border-color: #dee2e6; -} -.table > :not(caption) > * > * { - padding: 0.5rem 0.5rem; - background-color: var(--bs-table-bg); - border-bottom-width: 1px; - box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); -} -.table > tbody { - vertical-align: inherit; -} -.table > thead { - vertical-align: bottom; -} -.table > :not(:first-child) { - border-top: 2px solid currentColor; -} - -.caption-top { - caption-side: top; -} - -.table-sm > :not(caption) > * > * { - padding: 0.25rem 0.25rem; -} - -.table-bordered > :not(caption) > * { - border-width: 1px 0; -} -.table-bordered > :not(caption) > * > * { - border-width: 0 1px; -} - -.table-borderless > :not(caption) > * > * { - border-bottom-width: 0; -} -.table-borderless > :not(:first-child) { - border-top-width: 0; -} - -.table-striped > tbody > tr:nth-of-type(odd) > * { - --bs-table-accent-bg: var(--bs-table-striped-bg); - color: var(--bs-table-striped-color); -} - -.table-active { - --bs-table-accent-bg: var(--bs-table-active-bg); - color: var(--bs-table-active-color); -} - -.table-hover > tbody > tr:hover > * { - --bs-table-accent-bg: var(--bs-table-hover-bg); - color: var(--bs-table-hover-color); -} - -.table-primary { - --bs-table-bg: #cfe2ff; - --bs-table-striped-bg: #c5d7f2; - --bs-table-striped-color: #000; - --bs-table-active-bg: #bacbe6; - --bs-table-active-color: #000; - --bs-table-hover-bg: #bfd1ec; - --bs-table-hover-color: #000; - color: #000; - border-color: #bacbe6; -} - -.table-secondary { - --bs-table-bg: #e2e3e5; - --bs-table-striped-bg: #d7d8da; - --bs-table-striped-color: #000; - --bs-table-active-bg: #cbccce; - --bs-table-active-color: #000; - --bs-table-hover-bg: #d1d2d4; - --bs-table-hover-color: #000; - color: #000; - border-color: #cbccce; -} - -.table-success { - --bs-table-bg: #d1e7dd; - --bs-table-striped-bg: #c7dbd2; - --bs-table-striped-color: #000; - --bs-table-active-bg: #bcd0c7; - --bs-table-active-color: #000; - --bs-table-hover-bg: #c1d6cc; - --bs-table-hover-color: #000; - color: #000; - border-color: #bcd0c7; -} - -.table-info { - --bs-table-bg: #cff4fc; - --bs-table-striped-bg: #c5e8ef; - --bs-table-striped-color: #000; - --bs-table-active-bg: #badce3; - --bs-table-active-color: #000; - --bs-table-hover-bg: #bfe2e9; - --bs-table-hover-color: #000; - color: #000; - border-color: #badce3; -} - -.table-warning { - --bs-table-bg: #fff3cd; - --bs-table-striped-bg: #f2e7c3; - --bs-table-striped-color: #000; - --bs-table-active-bg: #e6dbb9; - --bs-table-active-color: #000; - --bs-table-hover-bg: #ece1be; - --bs-table-hover-color: #000; - color: #000; - border-color: #e6dbb9; -} - -.table-danger { - --bs-table-bg: #f8d7da; - --bs-table-striped-bg: #eccccf; - --bs-table-striped-color: #000; - --bs-table-active-bg: #dfc2c4; - --bs-table-active-color: #000; - --bs-table-hover-bg: #e5c7ca; - --bs-table-hover-color: #000; - color: #000; - border-color: #dfc2c4; -} - -.table-light { - --bs-table-bg: #f8f9fa; - --bs-table-striped-bg: #ecedee; - --bs-table-striped-color: #000; - --bs-table-active-bg: #dfe0e1; - --bs-table-active-color: #000; - --bs-table-hover-bg: #e5e6e7; - --bs-table-hover-color: #000; - color: #000; - border-color: #dfe0e1; -} - -.table-dark { - --bs-table-bg: #212529; - --bs-table-striped-bg: #2c3034; - --bs-table-striped-color: #fff; - --bs-table-active-bg: #373b3e; - --bs-table-active-color: #fff; - --bs-table-hover-bg: #323539; - --bs-table-hover-color: #fff; - color: #fff; - border-color: #373b3e; -} - -.table-responsive { - overflow-x: auto; - -webkit-overflow-scrolling: touch; -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } -} -@media (max-width: 767.98px) { - .table-responsive-md { - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } -} -@media (max-width: 991.98px) { - .table-responsive-lg { - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } -} -@media (max-width: 1199.98px) { - .table-responsive-xl { - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } -} -@media (max-width: 1399.98px) { - .table-responsive-xxl { - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } -} -.form-label { - margin-bottom: 0.5rem; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; -} - -.form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: #6c757d; -} - -.form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - appearance: none; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; - } -} -.form-control[type=file] { - overflow: hidden; -} -.form-control[type=file]:not(:disabled):not([readonly]) { - cursor: pointer; -} -.form-control:focus { - color: #212529; - background-color: #fff; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} -.form-control::-webkit-date-and-time-value { - height: 1.5em; -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} -.form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-control::file-selector-button { - transition: none; - } -} -.form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: #dde0e3; -} -.form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-control::-webkit-file-upload-button { - transition: none; - } -} -.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: #dde0e3; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; -} -.form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; -} -.form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; -} - -.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; -} -.form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; -} -.form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; -} - -textarea.form-control { - min-height: calc(1.5em + 0.75rem + 2px); -} -textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); -} -textarea.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); -} - -.form-control-color { - width: 3rem; - height: auto; - padding: 0.375rem; -} -.form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; -} -.form-control-color::-moz-color-swatch { - height: 1.5em; - border-radius: 0.25rem; -} -.form-control-color::-webkit-color-swatch { - height: 1.5em; - border-radius: 0.25rem; -} - -.form-select { - display: block; - width: 100%; - padding: 0.375rem 2.25rem 0.375rem 0.75rem; - -moz-padding-start: calc(0.75rem - 3px); - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .form-select { - transition: none; - } -} -.form-select:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} -.form-select[multiple], .form-select[size]:not([size=\\"1\\"]) { - padding-right: 0.75rem; - background-image: none; -} -.form-select:disabled { - background-color: #e9ecef; -} -.form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #212529; -} - -.form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; -} - -.form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; -} - -.form-check { - display: block; - min-height: 1.5rem; - padding-left: 1.5em; - margin-bottom: 0.125rem; -} -.form-check .form-check-input { - float: left; - margin-left: -1.5em; -} - -.form-check-input { - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - background-color: #fff; - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: 1px solid rgba(0, 0, 0, 0.25); - appearance: none; - color-adjust: exact; -} -.form-check-input[type=checkbox] { - border-radius: 0.25em; -} -.form-check-input[type=radio] { - border-radius: 50%; -} -.form-check-input:active { - filter: brightness(90%); -} -.form-check-input:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} -.form-check-input:checked { - background-color: #0d6efd; - border-color: #0d6efd; -} -.form-check-input:checked[type=checkbox] { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\\"); -} -.form-check-input:checked[type=radio] { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\\"); -} -.form-check-input[type=checkbox]:indeterminate { - background-color: #0d6efd; - border-color: #0d6efd; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\\"); -} -.form-check-input:disabled { - pointer-events: none; - filter: none; - opacity: 0.5; -} -.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { - opacity: 0.5; -} - -.form-switch { - padding-left: 2.5em; -} -.form-switch .form-check-input { - width: 2em; - margin-left: -2.5em; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\\"); - background-position: left center; - border-radius: 2em; - transition: background-position 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-switch .form-check-input { - transition: none; - } -} -.form-switch .form-check-input:focus { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\\"); -} -.form-switch .form-check-input:checked { - background-position: right center; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\\"); -} - -.form-check-inline { - display: inline-block; - margin-right: 1rem; -} - -.btn-check { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.btn-check[disabled] + .btn, .btn-check:disabled + .btn { - pointer-events: none; - filter: none; - opacity: 0.65; -} - -.form-range { - width: 100%; - height: 1.5rem; - padding: 0; - background-color: transparent; - appearance: none; -} -.form-range:focus { - outline: 0; -} -.form-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} -.form-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} -.form-range::-moz-focus-outer { - border: 0; -} -.form-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .form-range::-webkit-slider-thumb { - transition: none; - } -} -.form-range::-webkit-slider-thumb:active { - background-color: #b6d4fe; -} -.form-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} -.form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .form-range::-moz-range-thumb { - transition: none; - } -} -.form-range::-moz-range-thumb:active { - background-color: #b6d4fe; -} -.form-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} -.form-range:disabled { - pointer-events: none; -} -.form-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; -} -.form-range:disabled::-moz-range-thumb { - background-color: #adb5bd; -} - -.form-floating { - position: relative; -} -.form-floating > .form-control, -.form-floating > .form-select { - height: calc(3.5rem + 2px); - line-height: 1.25; -} -.form-floating > label { - position: absolute; - top: 0; - left: 0; - height: 100%; - padding: 1rem 0.75rem; - pointer-events: none; - border: 1px solid transparent; - transform-origin: 0 0; - transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-floating > label { - transition: none; - } -} -.form-floating > .form-control { - padding: 1rem 0.75rem; -} -.form-floating > .form-control::placeholder { - color: transparent; -} -.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; -} -.form-floating > .form-control:-webkit-autofill { - padding-top: 1.625rem; - padding-bottom: 0.625rem; -} -.form-floating > .form-select { - padding-top: 1.625rem; - padding-bottom: 0.625rem; -} -.form-floating > .form-control:focus ~ label, -.form-floating > .form-control:not(:placeholder-shown) ~ label, -.form-floating > .form-select ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); -} -.form-floating > .form-control:-webkit-autofill ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); -} - -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; -} -.input-group > .form-control, -.input-group > .form-select { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; -} -.input-group > .form-control:focus, -.input-group > .form-select:focus { - z-index: 3; -} -.input-group .btn { - position: relative; - z-index: 2; -} -.input-group .btn:focus { - z-index: 3; -} - -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} - -.input-group-lg > .form-control, -.input-group-lg > .form-select, -.input-group-lg > .input-group-text, -.input-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; -} - -.input-group-sm > .form-control, -.input-group-sm > .form-select, -.input-group-sm > .input-group-text, -.input-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; -} - -.input-group-lg > .form-select, -.input-group-sm > .form-select { - padding-right: 3rem; -} - -.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), -.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu), -.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #198754; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(25, 135, 84, 0.9); - border-radius: 0.25rem; -} - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #198754; - padding-right: calc(1.5em + 0.75rem); - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); -} - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); -} - -.was-validated .form-select:valid, .form-select.is-valid { - border-color: #198754; -} -.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size=\\"1\\"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size=\\"1\\"] { - padding-right: 4.125rem; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-position: right 0.75rem center, center right 2.25rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-select:valid:focus, .form-select.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); -} - -.was-validated .form-check-input:valid, .form-check-input.is-valid { - border-color: #198754; -} -.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { - background-color: #198754; -} -.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); -} -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #198754; -} - -.form-check-inline .form-check-input ~ .valid-feedback { - margin-left: 0.5em; -} - -.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, -.was-validated .input-group .form-select:valid, -.input-group .form-select.is-valid { - z-index: 1; -} -.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, -.was-validated .input-group .form-select:valid:focus, -.input-group .form-select.is-valid:focus { - z-index: 3; -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #dc3545; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; -} - -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); -} - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); -} - -.was-validated .form-select:invalid, .form-select.is-invalid { - border-color: #dc3545; -} -.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size=\\"1\\"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size=\\"1\\"] { - padding-right: 4.125rem; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-position: right 0.75rem center, center right 2.25rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); -} - -.was-validated .form-check-input:invalid, .form-check-input.is-invalid { - border-color: #dc3545; -} -.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { - background-color: #dc3545; -} -.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); -} -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; -} - -.form-check-inline .form-check-input ~ .invalid-feedback { - margin-left: 0.5em; -} - -.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, -.was-validated .input-group .form-select:invalid, -.input-group .form-select.is-invalid { - z-index: 2; -} -.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, -.was-validated .input-group .form-select:invalid:focus, -.input-group .form-select.is-invalid:focus { - z-index: 3; -} - -.btn { - display: inline-block; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - text-decoration: none; - vertical-align: middle; - cursor: pointer; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .btn { - transition: none; - } -} -.btn:hover { - color: #212529; -} -.btn-check:focus + .btn, .btn:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} -.btn:disabled, .btn.disabled, fieldset:disabled .btn { - pointer-events: none; - opacity: 0.65; -} - -.btn-primary { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; -} -.btn-primary:hover { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; -} -.btn-check:focus + .btn-primary, .btn-primary:focus { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); -} -.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0a58ca; - border-color: #0a53be; -} -.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); -} -.btn-primary:disabled, .btn-primary.disabled { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:hover { - color: #fff; - background-color: #5c636a; - border-color: #565e64; -} -.btn-check:focus + .btn-secondary, .btn-secondary:focus { - color: #fff; - background-color: #5c636a; - border-color: #565e64; - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); -} -.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #565e64; - border-color: #51585e; -} -.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); -} -.btn-secondary:disabled, .btn-secondary.disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-success { - color: #fff; - background-color: #198754; - border-color: #198754; -} -.btn-success:hover { - color: #fff; - background-color: #157347; - border-color: #146c43; -} -.btn-check:focus + .btn-success, .btn-success:focus { - color: #fff; - background-color: #157347; - border-color: #146c43; - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); -} -.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #146c43; - border-color: #13653f; -} -.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); -} -.btn-success:disabled, .btn-success.disabled { - color: #fff; - background-color: #198754; - border-color: #198754; -} - -.btn-info { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; -} -.btn-info:hover { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; -} -.btn-check:focus + .btn-info, .btn-info:focus { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); -} -.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle { - color: #000; - background-color: #3dd5f3; - border-color: #25cff2; -} -.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); -} -.btn-info:disabled, .btn-info.disabled { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; -} - -.btn-warning { - color: #000; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:hover { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; -} -.btn-check:focus + .btn-warning, .btn-warning:focus { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); -} -.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle { - color: #000; - background-color: #ffcd39; - border-color: #ffc720; -} -.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); -} -.btn-warning:disabled, .btn-warning.disabled { - color: #000; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:hover { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; -} -.btn-check:focus + .btn-danger, .btn-danger:focus { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); -} -.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b02a37; - border-color: #a52834; -} -.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); -} -.btn-danger:disabled, .btn-danger.disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-light { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:hover { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; -} -.btn-check:focus + .btn-light, .btn-light:focus { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); -} -.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; -} -.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); -} -.btn-light:disabled, .btn-light.disabled { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-dark { - color: #fff; - background-color: #212529; - border-color: #212529; -} -.btn-dark:hover { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; -} -.btn-check:focus + .btn-dark, .btn-dark:focus { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); -} -.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1a1e21; - border-color: #191c1f; -} -.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); -} -.btn-dark:disabled, .btn-dark.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; -} - -.btn-outline-primary { - color: #0d6efd; - border-color: #0d6efd; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; -} -.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); -} -.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; -} -.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); -} -.btn-outline-primary:disabled, .btn-outline-primary.disabled { - color: #0d6efd; - background-color: transparent; -} - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); -} -.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); -} -.btn-outline-secondary:disabled, .btn-outline-secondary.disabled { - color: #6c757d; - background-color: transparent; -} - -.btn-outline-success { - color: #198754; - border-color: #198754; -} -.btn-outline-success:hover { - color: #fff; - background-color: #198754; - border-color: #198754; -} -.btn-check:focus + .btn-outline-success, .btn-outline-success:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); -} -.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show { - color: #fff; - background-color: #198754; - border-color: #198754; -} -.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); -} -.btn-outline-success:disabled, .btn-outline-success.disabled { - color: #198754; - background-color: transparent; -} - -.btn-outline-info { - color: #0dcaf0; - border-color: #0dcaf0; -} -.btn-outline-info:hover { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; -} -.btn-check:focus + .btn-outline-info, .btn-outline-info:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); -} -.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; -} -.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); -} -.btn-outline-info:disabled, .btn-outline-info.disabled { - color: #0dcaf0; - background-color: transparent; -} - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:hover { - color: #000; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); -} -.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show { - color: #000; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); -} -.btn-outline-warning:disabled, .btn-outline-warning.disabled { - color: #ffc107; - background-color: transparent; -} - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); -} -.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); -} -.btn-outline-danger:disabled, .btn-outline-danger.disabled { - color: #dc3545; - background-color: transparent; -} - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:hover { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-check:focus + .btn-outline-light, .btn-outline-light:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); -} -.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); -} -.btn-outline-light:disabled, .btn-outline-light.disabled { - color: #f8f9fa; - background-color: transparent; -} - -.btn-outline-dark { - color: #212529; - border-color: #212529; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #212529; - border-color: #212529; -} -.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); -} -.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show { - color: #fff; - background-color: #212529; - border-color: #212529; -} -.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); -} -.btn-outline-dark:disabled, .btn-outline-dark.disabled { - color: #212529; - background-color: transparent; -} - -.btn-link { - font-weight: 400; - color: #0d6efd; - text-decoration: underline; -} -.btn-link:hover { - color: #0a58ca; -} -.btn-link:disabled, .btn-link.disabled { - color: #6c757d; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; -} - -.fade { - transition: opacity 0.15s linear; -} -@media (prefers-reduced-motion: reduce) { - .fade { - transition: none; - } -} -.fade:not(.show) { - opacity: 0; -} - -.collapse:not(.show) { - display: none; -} - -.collapsing { - height: 0; - overflow: hidden; - transition: height 0.35s ease; -} -@media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; - } -} -.collapsing.collapse-horizontal { - width: 0; - height: auto; - transition: width 0.35s ease; -} -@media (prefers-reduced-motion: reduce) { - .collapsing.collapse-horizontal { - transition: none; - } -} - -.dropup, -.dropend, -.dropdown, -.dropstart { - position: relative; -} - -.dropdown-toggle { - white-space: nowrap; -} -.dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - z-index: 1000; - display: none; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} -.dropdown-menu[data-bs-popper] { - top: 100%; - left: 0; - margin-top: 0.125rem; -} - -.dropdown-menu-start { - --bs-position: start; -} -.dropdown-menu-start[data-bs-popper] { - right: auto; - left: 0; -} - -.dropdown-menu-end { - --bs-position: end; -} -.dropdown-menu-end[data-bs-popper] { - right: 0; - left: auto; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-start { - --bs-position: start; - } - .dropdown-menu-sm-start[data-bs-popper] { - right: auto; - left: 0; - } - - .dropdown-menu-sm-end { - --bs-position: end; - } - .dropdown-menu-sm-end[data-bs-popper] { - right: 0; - left: auto; - } -} -@media (min-width: 768px) { - .dropdown-menu-md-start { - --bs-position: start; - } - .dropdown-menu-md-start[data-bs-popper] { - right: auto; - left: 0; - } - - .dropdown-menu-md-end { - --bs-position: end; - } - .dropdown-menu-md-end[data-bs-popper] { - right: 0; - left: auto; - } -} -@media (min-width: 992px) { - .dropdown-menu-lg-start { - --bs-position: start; - } - .dropdown-menu-lg-start[data-bs-popper] { - right: auto; - left: 0; - } - - .dropdown-menu-lg-end { - --bs-position: end; - } - .dropdown-menu-lg-end[data-bs-popper] { - right: 0; - left: auto; - } -} -@media (min-width: 1200px) { - .dropdown-menu-xl-start { - --bs-position: start; - } - .dropdown-menu-xl-start[data-bs-popper] { - right: auto; - left: 0; - } - - .dropdown-menu-xl-end { - --bs-position: end; - } - .dropdown-menu-xl-end[data-bs-popper] { - right: 0; - left: auto; - } -} -@media (min-width: 1400px) { - .dropdown-menu-xxl-start { - --bs-position: start; - } - .dropdown-menu-xxl-start[data-bs-popper] { - right: auto; - left: 0; - } - - .dropdown-menu-xxl-end { - --bs-position: end; - } - .dropdown-menu-xxl-end[data-bs-popper] { - right: 0; - left: auto; - } -} -.dropup .dropdown-menu[data-bs-popper] { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; -} -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropend .dropdown-menu[data-bs-popper] { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; -} -.dropend .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} -.dropend .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropend .dropdown-toggle::after { - vertical-align: 0; -} - -.dropstart .dropdown-menu[data-bs-popper] { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; -} -.dropstart .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; -} -.dropstart .dropdown-toggle::after { - display: none; -} -.dropstart .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} -.dropstart .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropstart .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid rgba(0, 0, 0, 0.15); -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - text-decoration: none; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:hover, .dropdown-item:focus { - color: #1e2125; - background-color: #e9ecef; -} -.dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #0d6efd; -} -.dropdown-item.disabled, .dropdown-item:disabled { - color: #adb5bd; - pointer-events: none; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; -} - -.dropdown-item-text { - display: block; - padding: 0.25rem 1rem; - color: #212529; -} - -.dropdown-menu-dark { - color: #dee2e6; - background-color: #343a40; - border-color: rgba(0, 0, 0, 0.15); -} -.dropdown-menu-dark .dropdown-item { - color: #dee2e6; -} -.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus { - color: #fff; - background-color: rgba(255, 255, 255, 0.15); -} -.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active { - color: #fff; - background-color: #0d6efd; -} -.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled { - color: #adb5bd; -} -.dropdown-menu-dark .dropdown-divider { - border-color: rgba(0, 0, 0, 0.15); -} -.dropdown-menu-dark .dropdown-item-text { - color: #dee2e6; -} -.dropdown-menu-dark .dropdown-header { - color: #adb5bd; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; -} -.btn-group > .btn-check:checked + .btn, -.btn-group > .btn-check:focus + .btn, -.btn-group > .btn:hover, -.btn-group > .btn:focus, -.btn-group > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn-check:checked + .btn, -.btn-group-vertical > .btn-check:focus + .btn, -.btn-group-vertical > .btn:hover, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; -} -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:nth-child(n+3), -.btn-group > :not(.btn-check) + .btn, -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after { - margin-left: 0; -} -.dropstart .dropdown-toggle-split::before { - margin-right: 0; -} - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { - width: 100%; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; -} -.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn ~ .btn, -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; - color: #0d6efd; - text-decoration: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .nav-link { - transition: none; - } -} -.nav-link:hover, .nav-link:focus { - color: #0a58ca; -} -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6; -} -.nav-tabs .nav-link { - margin-bottom: -1px; - background: none; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; - isolation: isolate; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - background: none; - border: 0; - border-radius: 0.25rem; -} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #0d6efd; -} - -.nav-fill > .nav-link, -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; -} - -.nav-justified > .nav-link, -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; -} - -.nav-fill .nav-item .nav-link, -.nav-justified .nav-item .nav-link { - width: 100%; -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} -.navbar > .container, -.navbar > .container-fluid, -.navbar > .container-sm, -.navbar > .container-md, -.navbar > .container-lg, -.navbar > .container-xl, -.navbar > .container-xxl { - display: flex; - flex-wrap: inherit; - align-items: center; - justify-content: space-between; -} -.navbar-brand { - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - text-decoration: none; - white-space: nowrap; -} -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; -} - -.navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; - transition: box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .navbar-toggler { - transition: none; - } -} -.navbar-toggler:hover { - text-decoration: none; -} -.navbar-toggler:focus { - text-decoration: none; - outline: 0; - box-shadow: 0 0 0 0.25rem; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-repeat: no-repeat; - background-position: center; - background-size: 100%; -} - -.navbar-nav-scroll { - max-height: var(--bs-scroll-height, 75vh); - overflow-y: auto; -} - -@media (min-width: 576px) { - .navbar-expand-sm { - flex-wrap: nowrap; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible; - } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } - .navbar-expand-sm .offcanvas-header { - display: none; - } - .navbar-expand-sm .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; - } - .navbar-expand-sm .offcanvas-top, -.navbar-expand-sm .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; - } - .navbar-expand-sm .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - } -} -@media (min-width: 768px) { - .navbar-expand-md { - flex-wrap: nowrap; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md .navbar-nav-scroll { - overflow: visible; - } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } - .navbar-expand-md .offcanvas-header { - display: none; - } - .navbar-expand-md .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; - } - .navbar-expand-md .offcanvas-top, -.navbar-expand-md .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; - } - .navbar-expand-md .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - } -} -@media (min-width: 992px) { - .navbar-expand-lg { - flex-wrap: nowrap; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible; - } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } - .navbar-expand-lg .offcanvas-header { - display: none; - } - .navbar-expand-lg .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; - } - .navbar-expand-lg .offcanvas-top, -.navbar-expand-lg .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; - } - .navbar-expand-lg .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - } -} -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-wrap: nowrap; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible; - } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } - .navbar-expand-xl .offcanvas-header { - display: none; - } - .navbar-expand-xl .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; - } - .navbar-expand-xl .offcanvas-top, -.navbar-expand-xl .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; - } - .navbar-expand-xl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - } -} -@media (min-width: 1400px) { - .navbar-expand-xxl { - flex-wrap: nowrap; - justify-content: flex-start; - } - .navbar-expand-xxl .navbar-nav { - flex-direction: row; - } - .navbar-expand-xxl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xxl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xxl .navbar-nav-scroll { - overflow: visible; - } - .navbar-expand-xxl .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-xxl .navbar-toggler { - display: none; - } - .navbar-expand-xxl .offcanvas-header { - display: none; - } - .navbar-expand-xxl .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; - } - .navbar-expand-xxl .offcanvas-top, -.navbar-expand-xxl .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; - } - .navbar-expand-xxl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - } -} -.navbar-expand { - flex-wrap: nowrap; - justify-content: flex-start; -} -.navbar-expand .navbar-nav { - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand .navbar-nav-scroll { - overflow: visible; -} -.navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} -.navbar-expand .offcanvas-header { - display: none; -} -.navbar-expand .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; -} -.navbar-expand .offcanvas-top, -.navbar-expand .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; -} -.navbar-expand .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.55); -} -.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.55); - border-color: rgba(0, 0, 0, 0.1); -} -.navbar-light .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); -} -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.55); -} -.navbar-light .navbar-text a, -.navbar-light .navbar-text a:hover, -.navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} -.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; -} -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.55); -} -.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(255, 255, 255, 0.1); -} -.navbar-dark .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); -} -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.55); -} -.navbar-dark .navbar-text a, -.navbar-dark .navbar-text a:hover, -.navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; -} -.card > hr { - margin-right: 0; - margin-left: 0; -} -.card > .list-group { - border-top: inherit; - border-bottom: inherit; -} -.card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} -.card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} -.card > .card-header + .list-group, -.card > .list-group + .card-footer { - border-top: 0; -} - -.card-body { - flex: 1 1 auto; - padding: 1rem 1rem; -} - -.card-title { - margin-bottom: 0.5rem; -} - -.card-subtitle { - margin-top: -0.25rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link + .card-link { - margin-left: 1rem; -} - -.card-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} -.card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; -} - -.card-footer { - padding: 0.5rem 1rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} -.card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); -} - -.card-header-tabs { - margin-right: -0.5rem; - margin-bottom: -0.5rem; - margin-left: -0.5rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1rem; - border-radius: calc(0.25rem - 1px); -} - -.card-img, -.card-img-top, -.card-img-bottom { - width: 100%; -} - -.card-img, -.card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.card-group > .card { - margin-bottom: 0.75rem; -} -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; - } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-top, -.card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-bottom, -.card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-top, -.card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-bottom, -.card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; - } -} - -.accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 1.25rem; - font-size: 1rem; - color: #212529; - text-align: left; - background-color: #fff; - border: 0; - border-radius: 0; - overflow-anchor: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; -} -@media (prefers-reduced-motion: reduce) { - .accordion-button { - transition: none; - } -} -.accordion-button:not(.collapsed) { - color: #0c63e4; - background-color: #e7f1ff; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); -} -.accordion-button:not(.collapsed)::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); - transform: rotate(-180deg); -} -.accordion-button::after { - flex-shrink: 0; - width: 1.25rem; - height: 1.25rem; - margin-left: auto; - content: \\"\\"; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-size: 1.25rem; - transition: transform 0.2s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .accordion-button::after { - transition: none; - } -} -.accordion-button:hover { - z-index: 2; -} -.accordion-button:focus { - z-index: 3; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} - -.accordion-header { - margin-bottom: 0; -} - -.accordion-item { - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.accordion-item:first-of-type { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.accordion-item:first-of-type .accordion-button { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} -.accordion-item:not(:first-of-type) { - border-top: 0; -} -.accordion-item:last-of-type { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} -.accordion-item:last-of-type .accordion-collapse { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.accordion-body { - padding: 1rem 1.25rem; -} - -.accordion-flush .accordion-collapse { - border-width: 0; -} -.accordion-flush .accordion-item { - border-right: 0; - border-left: 0; - border-radius: 0; -} -.accordion-flush .accordion-item:first-child { - border-top: 0; -} -.accordion-flush .accordion-item:last-child { - border-bottom: 0; -} -.accordion-flush .accordion-item .accordion-button { - border-radius: 0; -} - -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0 0; - margin-bottom: 1rem; - list-style: none; -} - -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; -} -.breadcrumb-item + .breadcrumb-item::before { - float: left; - padding-right: 0.5rem; - color: #6c757d; - content: var(--bs-breadcrumb-divider, \\"/\\") /* rtl: var(--bs-breadcrumb-divider, \\"/\\") */; -} -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: flex; - padding-left: 0; - list-style: none; -} - -.page-link { - position: relative; - display: block; - color: #0d6efd; - text-decoration: none; - background-color: #fff; - border: 1px solid #dee2e6; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .page-link { - transition: none; - } -} -.page-link:hover { - z-index: 2; - color: #0a58ca; - background-color: #e9ecef; - border-color: #dee2e6; -} -.page-link:focus { - z-index: 3; - color: #0a58ca; - background-color: #e9ecef; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} - -.page-item:not(:first-child) .page-link { - margin-left: -1px; -} -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; -} -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - background-color: #fff; - border-color: #dee2e6; -} - -.page-link { - padding: 0.375rem 0.75rem; -} - -.page-item:first-child .page-link { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; -} -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; -} -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; -} -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; -} - -.badge { - display: inline-block; - padding: 0.35em 0.65em; - font-size: 0.75em; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; -} -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.alert { - position: relative; - padding: 1rem 1rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 3rem; -} -.alert-dismissible .btn-close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: 1.25rem 1rem; -} - -.alert-primary { - color: #084298; - background-color: #cfe2ff; - border-color: #b6d4fe; -} -.alert-primary .alert-link { - color: #06357a; -} - -.alert-secondary { - color: #41464b; - background-color: #e2e3e5; - border-color: #d3d6d8; -} -.alert-secondary .alert-link { - color: #34383c; -} - -.alert-success { - color: #0f5132; - background-color: #d1e7dd; - border-color: #badbcc; -} -.alert-success .alert-link { - color: #0c4128; -} - -.alert-info { - color: #055160; - background-color: #cff4fc; - border-color: #b6effb; -} -.alert-info .alert-link { - color: #04414d; -} - -.alert-warning { - color: #664d03; - background-color: #fff3cd; - border-color: #ffecb5; -} -.alert-warning .alert-link { - color: #523e02; -} - -.alert-danger { - color: #842029; - background-color: #f8d7da; - border-color: #f5c2c7; -} -.alert-danger .alert-link { - color: #6a1a21; -} - -.alert-light { - color: #636464; - background-color: #fefefe; - border-color: #fdfdfe; -} -.alert-light .alert-link { - color: #4f5050; -} - -.alert-dark { - color: #141619; - background-color: #d3d3d4; - border-color: #bcbebf; -} -.alert-dark .alert-link { - color: #101214; -} - -@keyframes progress-bar-stripes { - 0% { - background-position-x: 1rem; - } -} -.progress { - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #0d6efd; - transition: width 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; - } -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - animation: 1s linear infinite progress-bar-stripes; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; - } -} - -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; -} - -.list-group-numbered { - list-style-type: none; - counter-reset: section; -} -.list-group-numbered > li::before { - content: counters(section, \\".\\") \\". \\"; - counter-increment: section; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} -.list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.5rem 1rem; - color: #212529; - text-decoration: none; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} -.list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; -} -.list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; -} -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; -} -.list-group-item + .list-group-item { - border-top-width: 0; -} -.list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; -} - -.list-group-horizontal { - flex-direction: row; -} -.list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; -} -.list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; -} -.list-group-horizontal > .list-group-item.active { - margin-top: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; -} - -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; - } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; - } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; - } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; - } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 1400px) { - .list-group-horizontal-xxl { - flex-direction: row; - } - .list-group-horizontal-xxl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-xxl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-xxl > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-xxl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -.list-group-flush { - border-radius: 0; -} -.list-group-flush > .list-group-item { - border-width: 0 0 1px; -} -.list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; -} - -.list-group-item-primary { - color: #084298; - background-color: #cfe2ff; -} -.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #084298; - background-color: #bacbe6; -} -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #084298; - border-color: #084298; -} - -.list-group-item-secondary { - color: #41464b; - background-color: #e2e3e5; -} -.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #41464b; - background-color: #cbccce; -} -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #41464b; - border-color: #41464b; -} - -.list-group-item-success { - color: #0f5132; - background-color: #d1e7dd; -} -.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #0f5132; - background-color: #bcd0c7; -} -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #0f5132; - border-color: #0f5132; -} - -.list-group-item-info { - color: #055160; - background-color: #cff4fc; -} -.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #055160; - background-color: #badce3; -} -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #055160; - border-color: #055160; -} - -.list-group-item-warning { - color: #664d03; - background-color: #fff3cd; -} -.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #664d03; - background-color: #e6dbb9; -} -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #664d03; - border-color: #664d03; -} - -.list-group-item-danger { - color: #842029; - background-color: #f8d7da; -} -.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #842029; - background-color: #dfc2c4; -} -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #842029; - border-color: #842029; -} - -.list-group-item-light { - color: #636464; - background-color: #fefefe; -} -.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #636464; - background-color: #e5e5e5; -} -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #636464; - border-color: #636464; -} - -.list-group-item-dark { - color: #141619; - background-color: #d3d3d4; -} -.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #141619; - background-color: #bebebf; -} -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #141619; - border-color: #141619; -} - -.btn-close { - box-sizing: content-box; - width: 1em; - height: 1em; - padding: 0.25em 0.25em; - color: #000; - background: transparent url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\\") center/1em auto no-repeat; - border: 0; - border-radius: 0.25rem; - opacity: 0.5; -} -.btn-close:hover { - color: #000; - text-decoration: none; - opacity: 0.75; -} -.btn-close:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); - opacity: 1; -} -.btn-close:disabled, .btn-close.disabled { - pointer-events: none; - user-select: none; - opacity: 0.25; -} - -.btn-close-white { - filter: invert(1) grayscale(100%) brightness(200%); -} - -.toast { - width: 350px; - max-width: 100%; - font-size: 0.875rem; - pointer-events: auto; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} -.toast.showing { - opacity: 0; -} -.toast:not(.show) { - display: none; -} - -.toast-container { - width: max-content; - max-width: 100%; - pointer-events: none; -} -.toast-container > :not(:last-child) { - margin-bottom: 0.75rem; -} - -.toast-header { - display: flex; - align-items: center; - padding: 0.5rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} -.toast-header .btn-close { - margin-right: -0.375rem; - margin-left: 0.75rem; -} - -.toast-body { - padding: 0.75rem; - word-wrap: break-word; -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1055; - display: none; - width: 100%; - height: 100%; - overflow-x: hidden; - overflow-y: auto; - outline: 0; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} -.modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); -} -@media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; - } -} -.modal.show .modal-dialog { - transform: none; -} -.modal.modal-static .modal-dialog { - transform: scale(1.02); -} - -.modal-dialog-scrollable { - height: calc(100% - 1rem); -} -.modal-dialog-scrollable .modal-content { - max-height: 100%; - overflow: hidden; -} -.modal-dialog-scrollable .modal-body { - overflow-y: auto; -} - -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); -} - -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - width: 100vw; - height: 100vh; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: flex; - flex-shrink: 0; - align-items: center; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.modal-header .btn-close { - padding: 0.5rem 0.5rem; - margin: -0.5rem -0.5rem -0.5rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: flex; - flex-wrap: wrap; - flex-shrink: 0; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(0.3rem - 1px); - border-bottom-left-radius: calc(0.3rem - 1px); -} -.modal-footer > * { - margin: 0.25rem; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - - .modal-dialog-scrollable { - height: calc(100% - 3.5rem); - } - - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); - } - - .modal-sm { - max-width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg, -.modal-xl { - max-width: 800px; - } -} -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} -.modal-fullscreen { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; -} -.modal-fullscreen .modal-content { - height: 100%; - border: 0; - border-radius: 0; -} -.modal-fullscreen .modal-header { - border-radius: 0; -} -.modal-fullscreen .modal-body { - overflow-y: auto; -} -.modal-fullscreen .modal-footer { - border-radius: 0; -} - -@media (max-width: 575.98px) { - .modal-fullscreen-sm-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; - } - .modal-fullscreen-sm-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; - } - .modal-fullscreen-sm-down .modal-header { - border-radius: 0; - } - .modal-fullscreen-sm-down .modal-body { - overflow-y: auto; - } - .modal-fullscreen-sm-down .modal-footer { - border-radius: 0; - } -} -@media (max-width: 767.98px) { - .modal-fullscreen-md-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; - } - .modal-fullscreen-md-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; - } - .modal-fullscreen-md-down .modal-header { - border-radius: 0; - } - .modal-fullscreen-md-down .modal-body { - overflow-y: auto; - } - .modal-fullscreen-md-down .modal-footer { - border-radius: 0; - } -} -@media (max-width: 991.98px) { - .modal-fullscreen-lg-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; - } - .modal-fullscreen-lg-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; - } - .modal-fullscreen-lg-down .modal-header { - border-radius: 0; - } - .modal-fullscreen-lg-down .modal-body { - overflow-y: auto; - } - .modal-fullscreen-lg-down .modal-footer { - border-radius: 0; - } -} -@media (max-width: 1199.98px) { - .modal-fullscreen-xl-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; - } - .modal-fullscreen-xl-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; - } - .modal-fullscreen-xl-down .modal-header { - border-radius: 0; - } - .modal-fullscreen-xl-down .modal-body { - overflow-y: auto; - } - .modal-fullscreen-xl-down .modal-footer { - border-radius: 0; - } -} -@media (max-width: 1399.98px) { - .modal-fullscreen-xxl-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; - } - .modal-fullscreen-xxl-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; - } - .modal-fullscreen-xxl-down .modal-header { - border-radius: 0; - } - .modal-fullscreen-xxl-down .modal-body { - overflow-y: auto; - } - .modal-fullscreen-xxl-down .modal-footer { - border-radius: 0; - } -} -.tooltip { - position: absolute; - z-index: 1080; - display: block; - margin: 0; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; -} -.tooltip.show { - opacity: 0.9; -} -.tooltip .tooltip-arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} -.tooltip .tooltip-arrow::before { - position: absolute; - content: \\"\\"; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] { - padding: 0.4rem 0; -} -.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow { - bottom: 0; -} -.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before { - top: -1px; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] { - padding: 0 0.4rem; -} -.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before { - right: -1px; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] { - padding: 0.4rem 0; -} -.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow { - top: 0; -} -.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] { - padding: 0 0.4rem; -} -.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before { - left: -1px; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; -} - -.popover { - position: absolute; - top: 0; - left: 0 /* rtl:ignore */; - z-index: 1070; - display: block; - max-width: 276px; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; -} -.popover .popover-arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; -} -.popover .popover-arrow::before, .popover .popover-arrow::after { - position: absolute; - display: block; - content: \\"\\"; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow { - bottom: calc(-0.5rem - 1px); -} -.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; -} - -.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; -} -.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; -} - -.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow { - top: calc(-0.5rem - 1px); -} -.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; -} -.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: \\"\\"; - border-bottom: 1px solid #f0f0f0; -} - -.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; -} -.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 1rem 1rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel.pointer-event { - touch-action: pan-y; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner::after { - display: block; - clear: both; - content: \\"\\"; -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -/* rtl:begin:ignore */ -.carousel-item-next:not(.carousel-item-start), -.active.carousel-item-end { - transform: translateX(100%); -} - -.carousel-item-prev:not(.carousel-item-end), -.active.carousel-item-start { - transform: translateX(-100%); -} - -/* rtl:end:ignore */ -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; -} -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-start, -.carousel-fade .carousel-item-prev.carousel-item-end { - z-index: 1; - opacity: 1; -} -.carousel-fade .active.carousel-item-start, -.carousel-fade .active.carousel-item-end { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; -} -@media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-start, -.carousel-fade .active.carousel-item-end { - transition: none; - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - padding: 0; - color: #fff; - text-align: center; - background: none; - border: 0; - opacity: 0.5; - transition: opacity 0.15s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-control-prev, -.carousel-control-next { - transition: none; - } -} -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 2rem; - height: 2rem; - background-repeat: no-repeat; - background-position: 50%; - background-size: 100% 100%; -} - -/* rtl:options: { - \\"autoRename\\": true, - \\"stringMap\\":[ { - \\"name\\" : \\"prev-next\\", - \\"search\\" : \\"prev\\", - \\"replace\\" : \\"next\\" - } ] -} */ -.carousel-control-prev-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\\"); -} - -.carousel-control-next-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 2; - display: flex; - justify-content: center; - padding: 0; - margin-right: 15%; - margin-bottom: 1rem; - margin-left: 15%; - list-style: none; -} -.carousel-indicators [data-bs-target] { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - padding: 0; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border: 0; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: 0.5; - transition: opacity 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-indicators [data-bs-target] { - transition: none; - } -} -.carousel-indicators .active { - opacity: 1; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 1.25rem; - left: 15%; - padding-top: 1.25rem; - padding-bottom: 1.25rem; - color: #fff; - text-align: center; -} - -.carousel-dark .carousel-control-prev-icon, -.carousel-dark .carousel-control-next-icon { - filter: invert(1) grayscale(100); -} -.carousel-dark .carousel-indicators [data-bs-target] { - background-color: #000; -} -.carousel-dark .carousel-caption { - color: #000; -} - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; - } -} -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; -} - -@keyframes spinner-grow { - 0% { - transform: scale(0); - } - 50% { - opacity: 1; - transform: none; - } -} -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem; -} - -@media (prefers-reduced-motion: reduce) { - .spinner-border, -.spinner-grow { - animation-duration: 1.5s; - } -} -.offcanvas { - position: fixed; - bottom: 0; - z-index: 1045; - display: flex; - flex-direction: column; - max-width: 100%; - visibility: hidden; - background-color: #fff; - background-clip: padding-box; - outline: 0; - transition: transform 0.3s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .offcanvas { - transition: none; - } -} - -.offcanvas-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; -} -.offcanvas-backdrop.fade { - opacity: 0; -} -.offcanvas-backdrop.show { - opacity: 0.5; -} - -.offcanvas-header { - display: flex; - align-items: center; - justify-content: space-between; - padding: 1rem 1rem; -} -.offcanvas-header .btn-close { - padding: 0.5rem 0.5rem; - margin-top: -0.5rem; - margin-right: -0.5rem; - margin-bottom: -0.5rem; -} - -.offcanvas-title { - margin-bottom: 0; - line-height: 1.5; -} - -.offcanvas-body { - flex-grow: 1; - padding: 1rem 1rem; - overflow-y: auto; -} - -.offcanvas-start { - top: 0; - left: 0; - width: 400px; - border-right: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(-100%); -} - -.offcanvas-end { - top: 0; - right: 0; - width: 400px; - border-left: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(100%); -} - -.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(-100%); -} - -.offcanvas-bottom { - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-top: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(100%); -} - -.offcanvas.show { - transform: none; -} - -.placeholder { - display: inline-block; - min-height: 1em; - vertical-align: middle; - cursor: wait; - background-color: currentColor; - opacity: 0.5; -} -.placeholder.btn::before { - display: inline-block; - content: \\"\\"; -} - -.placeholder-xs { - min-height: 0.6em; -} - -.placeholder-sm { - min-height: 0.8em; -} - -.placeholder-lg { - min-height: 1.2em; -} - -.placeholder-glow .placeholder { - animation: placeholder-glow 2s ease-in-out infinite; -} - -@keyframes placeholder-glow { - 50% { - opacity: 0.2; - } -} -.placeholder-wave { - mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); - mask-size: 200% 100%; - animation: placeholder-wave 2s linear infinite; -} - -@keyframes placeholder-wave { - 100% { - mask-position: -200% 0%; - } -} -.clearfix::after { - display: block; - clear: both; - content: \\"\\"; -} - -.link-primary { - color: #0d6efd; -} -.link-primary:hover, .link-primary:focus { - color: #0a58ca; -} - -.link-secondary { - color: #6c757d; -} -.link-secondary:hover, .link-secondary:focus { - color: #565e64; -} - -.link-success { - color: #198754; -} -.link-success:hover, .link-success:focus { - color: #146c43; -} - -.link-info { - color: #0dcaf0; -} -.link-info:hover, .link-info:focus { - color: #3dd5f3; -} - -.link-warning { - color: #ffc107; -} -.link-warning:hover, .link-warning:focus { - color: #ffcd39; -} - -.link-danger { - color: #dc3545; -} -.link-danger:hover, .link-danger:focus { - color: #b02a37; -} - -.link-light { - color: #f8f9fa; -} -.link-light:hover, .link-light:focus { - color: #f9fafb; -} - -.link-dark { - color: #212529; -} -.link-dark:hover, .link-dark:focus { - color: #1a1e21; -} - -.ratio { - position: relative; - width: 100%; -} -.ratio::before { - display: block; - padding-top: var(--bs-aspect-ratio); - content: \\"\\"; -} -.ratio > * { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -.ratio-1x1 { - --bs-aspect-ratio: 100%; -} - -.ratio-4x3 { - --bs-aspect-ratio: 75%; -} - -.ratio-16x9 { - --bs-aspect-ratio: 56.25%; -} - -.ratio-21x9 { - --bs-aspect-ratio: 42.8571428571%; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -.sticky-top { - position: sticky; - top: 0; - z-index: 1020; -} - -@media (min-width: 576px) { - .sticky-sm-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 768px) { - .sticky-md-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 992px) { - .sticky-lg-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 1200px) { - .sticky-xl-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -@media (min-width: 1400px) { - .sticky-xxl-top { - position: sticky; - top: 0; - z-index: 1020; - } -} -.hstack { - display: flex; - flex-direction: row; - align-items: center; - align-self: stretch; -} - -.vstack { - display: flex; - flex: 1 1 auto; - flex-direction: column; - align-self: stretch; -} - -.visually-hidden, -.visually-hidden-focusable:not(:focus):not(:focus-within) { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - content: \\"\\"; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.vr { - display: inline-block; - align-self: stretch; - width: 1px; - min-height: 1em; - background-color: currentColor; - opacity: 0.25; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.float-start { - float: left !important; -} - -.float-end { - float: right !important; -} - -.float-none { - float: none !important; -} - -.opacity-0 { - opacity: 0 !important; -} - -.opacity-25 { - opacity: 0.25 !important; -} - -.opacity-50 { - opacity: 0.5 !important; -} - -.opacity-75 { - opacity: 0.75 !important; -} - -.opacity-100 { - opacity: 1 !important; -} - -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.overflow-visible { - overflow: visible !important; -} - -.overflow-scroll { - overflow: scroll !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-grid { - display: grid !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: flex !important; -} - -.d-inline-flex { - display: inline-flex !important; -} - -.d-none { - display: none !important; -} - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; -} - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; -} - -.shadow-none { - box-shadow: none !important; -} - -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: sticky !important; -} - -.top-0 { - top: 0 !important; -} - -.top-50 { - top: 50% !important; -} - -.top-100 { - top: 100% !important; -} - -.bottom-0 { - bottom: 0 !important; -} - -.bottom-50 { - bottom: 50% !important; -} - -.bottom-100 { - bottom: 100% !important; -} - -.start-0 { - left: 0 !important; -} - -.start-50 { - left: 50% !important; -} - -.start-100 { - left: 100% !important; -} - -.end-0 { - right: 0 !important; -} - -.end-50 { - right: 50% !important; -} - -.end-100 { - right: 100% !important; -} - -.translate-middle { - transform: translate(-50%, -50%) !important; -} - -.translate-middle-x { - transform: translateX(-50%) !important; -} - -.translate-middle-y { - transform: translateY(-50%) !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-end { - border-right: 1px solid #dee2e6 !important; -} - -.border-end-0 { - border-right: 0 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-start { - border-left: 1px solid #dee2e6 !important; -} - -.border-start-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #0d6efd !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #198754 !important; -} - -.border-info { - border-color: #0dcaf0 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #212529 !important; -} - -.border-white { - border-color: #fff !important; -} - -.border-1 { - border-width: 1px !important; -} - -.border-2 { - border-width: 2px !important; -} - -.border-3 { - border-width: 3px !important; -} - -.border-4 { - border-width: 4px !important; -} - -.border-5 { - border-width: 5px !important; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.w-auto { - width: auto !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.vw-100 { - width: 100vw !important; -} - -.min-vw-100 { - min-width: 100vw !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.h-auto { - height: auto !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.vh-100 { - height: 100vh !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.flex-fill { - flex: 1 1 auto !important; -} - -.flex-row { - flex-direction: row !important; -} - -.flex-column { - flex-direction: column !important; -} - -.flex-row-reverse { - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - flex-direction: column-reverse !important; -} - -.flex-grow-0 { - flex-grow: 0 !important; -} - -.flex-grow-1 { - flex-grow: 1 !important; -} - -.flex-shrink-0 { - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - flex-shrink: 1 !important; -} - -.flex-wrap { - flex-wrap: wrap !important; -} - -.flex-nowrap { - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} - -.gap-0 { - gap: 0 !important; -} - -.gap-1 { - gap: 0.25rem !important; -} - -.gap-2 { - gap: 0.5rem !important; -} - -.gap-3 { - gap: 1rem !important; -} - -.gap-4 { - gap: 1.5rem !important; -} - -.gap-5 { - gap: 3rem !important; -} - -.justify-content-start { - justify-content: flex-start !important; -} - -.justify-content-end { - justify-content: flex-end !important; -} - -.justify-content-center { - justify-content: center !important; -} - -.justify-content-between { - justify-content: space-between !important; -} - -.justify-content-around { - justify-content: space-around !important; -} - -.justify-content-evenly { - justify-content: space-evenly !important; -} - -.align-items-start { - align-items: flex-start !important; -} - -.align-items-end { - align-items: flex-end !important; -} - -.align-items-center { - align-items: center !important; -} - -.align-items-baseline { - align-items: baseline !important; -} - -.align-items-stretch { - align-items: stretch !important; -} - -.align-content-start { - align-content: flex-start !important; -} - -.align-content-end { - align-content: flex-end !important; -} - -.align-content-center { - align-content: center !important; -} - -.align-content-between { - align-content: space-between !important; -} - -.align-content-around { - align-content: space-around !important; -} - -.align-content-stretch { - align-content: stretch !important; -} - -.align-self-auto { - align-self: auto !important; -} - -.align-self-start { - align-self: flex-start !important; -} - -.align-self-end { - align-self: flex-end !important; -} - -.align-self-center { - align-self: center !important; -} - -.align-self-baseline { - align-self: baseline !important; -} - -.align-self-stretch { - align-self: stretch !important; -} - -.order-first { - order: -1 !important; -} - -.order-0 { - order: 0 !important; -} - -.order-1 { - order: 1 !important; -} - -.order-2 { - order: 2 !important; -} - -.order-3 { - order: 3 !important; -} - -.order-4 { - order: 4 !important; -} - -.order-5 { - order: 5 !important; -} - -.order-last { - order: 6 !important; -} - -.m-0 { - margin: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mx-0 { - margin-right: 0 !important; - margin-left: 0 !important; -} - -.mx-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; -} - -.mx-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; -} - -.mx-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; -} - -.mx-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; -} - -.mx-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; -} - -.mx-auto { - margin-right: auto !important; - margin-left: auto !important; -} - -.my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; -} - -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; -} - -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; -} - -.my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; -} - -.my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; -} - -.my-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; -} - -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; -} - -.mt-0 { - margin-top: 0 !important; -} - -.mt-1 { - margin-top: 0.25rem !important; -} - -.mt-2 { - margin-top: 0.5rem !important; -} - -.mt-3 { - margin-top: 1rem !important; -} - -.mt-4 { - margin-top: 1.5rem !important; -} - -.mt-5 { - margin-top: 3rem !important; -} - -.mt-auto { - margin-top: auto !important; -} - -.me-0 { - margin-right: 0 !important; -} - -.me-1 { - margin-right: 0.25rem !important; -} - -.me-2 { - margin-right: 0.5rem !important; -} - -.me-3 { - margin-right: 1rem !important; -} - -.me-4 { - margin-right: 1.5rem !important; -} - -.me-5 { - margin-right: 3rem !important; -} - -.me-auto { - margin-right: auto !important; -} - -.mb-0 { - margin-bottom: 0 !important; -} - -.mb-1 { - margin-bottom: 0.25rem !important; -} - -.mb-2 { - margin-bottom: 0.5rem !important; -} - -.mb-3 { - margin-bottom: 1rem !important; -} - -.mb-4 { - margin-bottom: 1.5rem !important; -} - -.mb-5 { - margin-bottom: 3rem !important; -} - -.mb-auto { - margin-bottom: auto !important; -} - -.ms-0 { - margin-left: 0 !important; -} - -.ms-1 { - margin-left: 0.25rem !important; -} - -.ms-2 { - margin-left: 0.5rem !important; -} - -.ms-3 { - margin-left: 1rem !important; -} - -.ms-4 { - margin-left: 1.5rem !important; -} - -.ms-5 { - margin-left: 3rem !important; -} - -.ms-auto { - margin-left: auto !important; -} - -.p-0 { - padding: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.px-0 { - padding-right: 0 !important; - padding-left: 0 !important; -} - -.px-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; -} - -.px-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; -} - -.px-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; -} - -.px-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; -} - -.px-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; -} - -.py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; -} - -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; -} - -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; -} - -.py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; -} - -.py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; -} - -.py-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; -} - -.pt-0 { - padding-top: 0 !important; -} - -.pt-1 { - padding-top: 0.25rem !important; -} - -.pt-2 { - padding-top: 0.5rem !important; -} - -.pt-3 { - padding-top: 1rem !important; -} - -.pt-4 { - padding-top: 1.5rem !important; -} - -.pt-5 { - padding-top: 3rem !important; -} - -.pe-0 { - padding-right: 0 !important; -} - -.pe-1 { - padding-right: 0.25rem !important; -} - -.pe-2 { - padding-right: 0.5rem !important; -} - -.pe-3 { - padding-right: 1rem !important; -} - -.pe-4 { - padding-right: 1.5rem !important; -} - -.pe-5 { - padding-right: 3rem !important; -} - -.pb-0 { - padding-bottom: 0 !important; -} - -.pb-1 { - padding-bottom: 0.25rem !important; -} - -.pb-2 { - padding-bottom: 0.5rem !important; -} - -.pb-3 { - padding-bottom: 1rem !important; -} - -.pb-4 { - padding-bottom: 1.5rem !important; -} - -.pb-5 { - padding-bottom: 3rem !important; -} - -.ps-0 { - padding-left: 0 !important; -} - -.ps-1 { - padding-left: 0.25rem !important; -} - -.ps-2 { - padding-left: 0.5rem !important; -} - -.ps-3 { - padding-left: 1rem !important; -} - -.ps-4 { - padding-left: 1.5rem !important; -} - -.ps-5 { - padding-left: 3rem !important; -} - -.font-monospace { - font-family: var(--bs-font-monospace) !important; -} - -.fs-1 { - font-size: calc(1.375rem + 1.5vw) !important; -} - -.fs-2 { - font-size: calc(1.325rem + 0.9vw) !important; -} - -.fs-3 { - font-size: calc(1.3rem + 0.6vw) !important; -} - -.fs-4 { - font-size: calc(1.275rem + 0.3vw) !important; -} - -.fs-5 { - font-size: 1.25rem !important; -} - -.fs-6 { - font-size: 1rem !important; -} - -.fst-italic { - font-style: italic !important; -} - -.fst-normal { - font-style: normal !important; -} - -.fw-light { - font-weight: 300 !important; -} - -.fw-lighter { - font-weight: lighter !important; -} - -.fw-normal { - font-weight: 400 !important; -} - -.fw-bold { - font-weight: 700 !important; -} - -.fw-bolder { - font-weight: bolder !important; -} - -.lh-1 { - line-height: 1 !important; -} - -.lh-sm { - line-height: 1.25 !important; -} - -.lh-base { - line-height: 1.5 !important; -} - -.lh-lg { - line-height: 2 !important; -} - -.text-start { - text-align: left !important; -} - -.text-end { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -.text-decoration-none { - text-decoration: none !important; -} - -.text-decoration-underline { - text-decoration: underline !important; -} - -.text-decoration-line-through { - text-decoration: line-through !important; -} - -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.text-wrap { - white-space: normal !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -/* rtl:begin:remove */ -.text-break { - word-wrap: break-word !important; - word-break: break-word !important; -} - -/* rtl:end:remove */ -.text-primary { - --bs-text-opacity: 1; - color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; -} - -.text-secondary { - --bs-text-opacity: 1; - color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; -} - -.text-success { - --bs-text-opacity: 1; - color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; -} - -.text-info { - --bs-text-opacity: 1; - color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; -} - -.text-warning { - --bs-text-opacity: 1; - color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; -} - -.text-danger { - --bs-text-opacity: 1; - color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; -} - -.text-light { - --bs-text-opacity: 1; - color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; -} - -.text-dark { - --bs-text-opacity: 1; - color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; -} - -.text-black { - --bs-text-opacity: 1; - color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; -} - -.text-white { - --bs-text-opacity: 1; - color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; -} - -.text-body { - --bs-text-opacity: 1; - color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; -} - -.text-muted { - --bs-text-opacity: 1; - color: #6c757d !important; -} - -.text-black-50 { - --bs-text-opacity: 1; - color: rgba(0, 0, 0, 0.5) !important; -} - -.text-white-50 { - --bs-text-opacity: 1; - color: rgba(255, 255, 255, 0.5) !important; -} - -.text-reset { - --bs-text-opacity: 1; - color: inherit !important; -} - -.text-opacity-25 { - --bs-text-opacity: 0.25; -} - -.text-opacity-50 { - --bs-text-opacity: 0.5; -} - -.text-opacity-75 { - --bs-text-opacity: 0.75; -} - -.text-opacity-100 { - --bs-text-opacity: 1; -} - -.bg-primary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-secondary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-success { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-info { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-warning { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-danger { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-light { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-dark { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-black { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-white { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-body { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; -} - -.bg-transparent { - --bs-bg-opacity: 1; - background-color: transparent !important; -} - -.bg-opacity-10 { - --bs-bg-opacity: 0.1; -} - -.bg-opacity-25 { - --bs-bg-opacity: 0.25; -} - -.bg-opacity-50 { - --bs-bg-opacity: 0.5; -} - -.bg-opacity-75 { - --bs-bg-opacity: 0.75; -} - -.bg-opacity-100 { - --bs-bg-opacity: 1; -} - -.bg-gradient { - background-image: var(--bs-gradient) !important; -} - -.user-select-all { - user-select: all !important; -} - -.user-select-auto { - user-select: auto !important; -} - -.user-select-none { - user-select: none !important; -} - -.pe-none { - pointer-events: none !important; -} - -.pe-auto { - pointer-events: auto !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.rounded-1 { - border-radius: 0.2rem !important; -} - -.rounded-2 { - border-radius: 0.25rem !important; -} - -.rounded-3 { - border-radius: 0.3rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-pill { - border-radius: 50rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-end { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-start { - border-bottom-left-radius: 0.25rem !important; - border-top-left-radius: 0.25rem !important; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media (min-width: 576px) { - .float-sm-start { - float: left !important; - } - - .float-sm-end { - float: right !important; - } - - .float-sm-none { - float: none !important; - } - - .d-sm-inline { - display: inline !important; - } - - .d-sm-inline-block { - display: inline-block !important; - } - - .d-sm-block { - display: block !important; - } - - .d-sm-grid { - display: grid !important; - } - - .d-sm-table { - display: table !important; - } - - .d-sm-table-row { - display: table-row !important; - } - - .d-sm-table-cell { - display: table-cell !important; - } - - .d-sm-flex { - display: flex !important; - } - - .d-sm-inline-flex { - display: inline-flex !important; - } - - .d-sm-none { - display: none !important; - } - - .flex-sm-fill { - flex: 1 1 auto !important; - } - - .flex-sm-row { - flex-direction: row !important; - } - - .flex-sm-column { - flex-direction: column !important; - } - - .flex-sm-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-sm-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-sm-grow-0 { - flex-grow: 0 !important; - } - - .flex-sm-grow-1 { - flex-grow: 1 !important; - } - - .flex-sm-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-sm-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-sm-wrap { - flex-wrap: wrap !important; - } - - .flex-sm-nowrap { - flex-wrap: nowrap !important; - } - - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-sm-0 { - gap: 0 !important; - } - - .gap-sm-1 { - gap: 0.25rem !important; - } - - .gap-sm-2 { - gap: 0.5rem !important; - } - - .gap-sm-3 { - gap: 1rem !important; - } - - .gap-sm-4 { - gap: 1.5rem !important; - } - - .gap-sm-5 { - gap: 3rem !important; - } - - .justify-content-sm-start { - justify-content: flex-start !important; - } - - .justify-content-sm-end { - justify-content: flex-end !important; - } - - .justify-content-sm-center { - justify-content: center !important; - } - - .justify-content-sm-between { - justify-content: space-between !important; - } - - .justify-content-sm-around { - justify-content: space-around !important; - } - - .justify-content-sm-evenly { - justify-content: space-evenly !important; - } - - .align-items-sm-start { - align-items: flex-start !important; - } - - .align-items-sm-end { - align-items: flex-end !important; - } - - .align-items-sm-center { - align-items: center !important; - } - - .align-items-sm-baseline { - align-items: baseline !important; - } - - .align-items-sm-stretch { - align-items: stretch !important; - } - - .align-content-sm-start { - align-content: flex-start !important; - } - - .align-content-sm-end { - align-content: flex-end !important; - } - - .align-content-sm-center { - align-content: center !important; - } - - .align-content-sm-between { - align-content: space-between !important; - } - - .align-content-sm-around { - align-content: space-around !important; - } - - .align-content-sm-stretch { - align-content: stretch !important; - } - - .align-self-sm-auto { - align-self: auto !important; - } - - .align-self-sm-start { - align-self: flex-start !important; - } - - .align-self-sm-end { - align-self: flex-end !important; - } - - .align-self-sm-center { - align-self: center !important; - } - - .align-self-sm-baseline { - align-self: baseline !important; - } - - .align-self-sm-stretch { - align-self: stretch !important; - } - - .order-sm-first { - order: -1 !important; - } - - .order-sm-0 { - order: 0 !important; - } - - .order-sm-1 { - order: 1 !important; - } - - .order-sm-2 { - order: 2 !important; - } - - .order-sm-3 { - order: 3 !important; - } - - .order-sm-4 { - order: 4 !important; - } - - .order-sm-5 { - order: 5 !important; - } - - .order-sm-last { - order: 6 !important; - } - - .m-sm-0 { - margin: 0 !important; - } - - .m-sm-1 { - margin: 0.25rem !important; - } - - .m-sm-2 { - margin: 0.5rem !important; - } - - .m-sm-3 { - margin: 1rem !important; - } - - .m-sm-4 { - margin: 1.5rem !important; - } - - .m-sm-5 { - margin: 3rem !important; - } - - .m-sm-auto { - margin: auto !important; - } - - .mx-sm-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-sm-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-sm-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-sm-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-sm-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-sm-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-sm-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-sm-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-sm-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-sm-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-sm-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-sm-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-sm-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-sm-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-sm-0 { - margin-top: 0 !important; - } - - .mt-sm-1 { - margin-top: 0.25rem !important; - } - - .mt-sm-2 { - margin-top: 0.5rem !important; - } - - .mt-sm-3 { - margin-top: 1rem !important; - } - - .mt-sm-4 { - margin-top: 1.5rem !important; - } - - .mt-sm-5 { - margin-top: 3rem !important; - } - - .mt-sm-auto { - margin-top: auto !important; - } - - .me-sm-0 { - margin-right: 0 !important; - } - - .me-sm-1 { - margin-right: 0.25rem !important; - } - - .me-sm-2 { - margin-right: 0.5rem !important; - } - - .me-sm-3 { - margin-right: 1rem !important; - } - - .me-sm-4 { - margin-right: 1.5rem !important; - } - - .me-sm-5 { - margin-right: 3rem !important; - } - - .me-sm-auto { - margin-right: auto !important; - } - - .mb-sm-0 { - margin-bottom: 0 !important; - } - - .mb-sm-1 { - margin-bottom: 0.25rem !important; - } - - .mb-sm-2 { - margin-bottom: 0.5rem !important; - } - - .mb-sm-3 { - margin-bottom: 1rem !important; - } - - .mb-sm-4 { - margin-bottom: 1.5rem !important; - } - - .mb-sm-5 { - margin-bottom: 3rem !important; - } - - .mb-sm-auto { - margin-bottom: auto !important; - } - - .ms-sm-0 { - margin-left: 0 !important; - } - - .ms-sm-1 { - margin-left: 0.25rem !important; - } - - .ms-sm-2 { - margin-left: 0.5rem !important; - } - - .ms-sm-3 { - margin-left: 1rem !important; - } - - .ms-sm-4 { - margin-left: 1.5rem !important; - } - - .ms-sm-5 { - margin-left: 3rem !important; - } - - .ms-sm-auto { - margin-left: auto !important; - } - - .p-sm-0 { - padding: 0 !important; - } - - .p-sm-1 { - padding: 0.25rem !important; - } - - .p-sm-2 { - padding: 0.5rem !important; - } - - .p-sm-3 { - padding: 1rem !important; - } - - .p-sm-4 { - padding: 1.5rem !important; - } - - .p-sm-5 { - padding: 3rem !important; - } - - .px-sm-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-sm-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-sm-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-sm-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-sm-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-sm-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-sm-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-sm-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-sm-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-sm-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-sm-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-sm-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-sm-0 { - padding-top: 0 !important; - } - - .pt-sm-1 { - padding-top: 0.25rem !important; - } - - .pt-sm-2 { - padding-top: 0.5rem !important; - } - - .pt-sm-3 { - padding-top: 1rem !important; - } - - .pt-sm-4 { - padding-top: 1.5rem !important; - } - - .pt-sm-5 { - padding-top: 3rem !important; - } - - .pe-sm-0 { - padding-right: 0 !important; - } - - .pe-sm-1 { - padding-right: 0.25rem !important; - } - - .pe-sm-2 { - padding-right: 0.5rem !important; - } - - .pe-sm-3 { - padding-right: 1rem !important; - } - - .pe-sm-4 { - padding-right: 1.5rem !important; - } - - .pe-sm-5 { - padding-right: 3rem !important; - } - - .pb-sm-0 { - padding-bottom: 0 !important; - } - - .pb-sm-1 { - padding-bottom: 0.25rem !important; - } - - .pb-sm-2 { - padding-bottom: 0.5rem !important; - } - - .pb-sm-3 { - padding-bottom: 1rem !important; - } - - .pb-sm-4 { - padding-bottom: 1.5rem !important; - } - - .pb-sm-5 { - padding-bottom: 3rem !important; - } - - .ps-sm-0 { - padding-left: 0 !important; - } - - .ps-sm-1 { - padding-left: 0.25rem !important; - } - - .ps-sm-2 { - padding-left: 0.5rem !important; - } - - .ps-sm-3 { - padding-left: 1rem !important; - } - - .ps-sm-4 { - padding-left: 1.5rem !important; - } - - .ps-sm-5 { - padding-left: 3rem !important; - } - - .text-sm-start { - text-align: left !important; - } - - .text-sm-end { - text-align: right !important; - } - - .text-sm-center { - text-align: center !important; - } -} -@media (min-width: 768px) { - .float-md-start { - float: left !important; - } - - .float-md-end { - float: right !important; - } - - .float-md-none { - float: none !important; - } - - .d-md-inline { - display: inline !important; - } - - .d-md-inline-block { - display: inline-block !important; - } - - .d-md-block { - display: block !important; - } - - .d-md-grid { - display: grid !important; - } - - .d-md-table { - display: table !important; - } - - .d-md-table-row { - display: table-row !important; - } - - .d-md-table-cell { - display: table-cell !important; - } - - .d-md-flex { - display: flex !important; - } - - .d-md-inline-flex { - display: inline-flex !important; - } - - .d-md-none { - display: none !important; - } - - .flex-md-fill { - flex: 1 1 auto !important; - } - - .flex-md-row { - flex-direction: row !important; - } - - .flex-md-column { - flex-direction: column !important; - } - - .flex-md-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-md-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-md-grow-0 { - flex-grow: 0 !important; - } - - .flex-md-grow-1 { - flex-grow: 1 !important; - } - - .flex-md-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-md-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-md-wrap { - flex-wrap: wrap !important; - } - - .flex-md-nowrap { - flex-wrap: nowrap !important; - } - - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-md-0 { - gap: 0 !important; - } - - .gap-md-1 { - gap: 0.25rem !important; - } - - .gap-md-2 { - gap: 0.5rem !important; - } - - .gap-md-3 { - gap: 1rem !important; - } - - .gap-md-4 { - gap: 1.5rem !important; - } - - .gap-md-5 { - gap: 3rem !important; - } - - .justify-content-md-start { - justify-content: flex-start !important; - } - - .justify-content-md-end { - justify-content: flex-end !important; - } - - .justify-content-md-center { - justify-content: center !important; - } - - .justify-content-md-between { - justify-content: space-between !important; - } - - .justify-content-md-around { - justify-content: space-around !important; - } - - .justify-content-md-evenly { - justify-content: space-evenly !important; - } - - .align-items-md-start { - align-items: flex-start !important; - } - - .align-items-md-end { - align-items: flex-end !important; - } - - .align-items-md-center { - align-items: center !important; - } - - .align-items-md-baseline { - align-items: baseline !important; - } - - .align-items-md-stretch { - align-items: stretch !important; - } - - .align-content-md-start { - align-content: flex-start !important; - } - - .align-content-md-end { - align-content: flex-end !important; - } - - .align-content-md-center { - align-content: center !important; - } - - .align-content-md-between { - align-content: space-between !important; - } - - .align-content-md-around { - align-content: space-around !important; - } - - .align-content-md-stretch { - align-content: stretch !important; - } - - .align-self-md-auto { - align-self: auto !important; - } - - .align-self-md-start { - align-self: flex-start !important; - } - - .align-self-md-end { - align-self: flex-end !important; - } - - .align-self-md-center { - align-self: center !important; - } - - .align-self-md-baseline { - align-self: baseline !important; - } - - .align-self-md-stretch { - align-self: stretch !important; - } - - .order-md-first { - order: -1 !important; - } - - .order-md-0 { - order: 0 !important; - } - - .order-md-1 { - order: 1 !important; - } - - .order-md-2 { - order: 2 !important; - } - - .order-md-3 { - order: 3 !important; - } - - .order-md-4 { - order: 4 !important; - } - - .order-md-5 { - order: 5 !important; - } - - .order-md-last { - order: 6 !important; - } - - .m-md-0 { - margin: 0 !important; - } - - .m-md-1 { - margin: 0.25rem !important; - } - - .m-md-2 { - margin: 0.5rem !important; - } - - .m-md-3 { - margin: 1rem !important; - } - - .m-md-4 { - margin: 1.5rem !important; - } - - .m-md-5 { - margin: 3rem !important; - } - - .m-md-auto { - margin: auto !important; - } - - .mx-md-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-md-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-md-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-md-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-md-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-md-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-md-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-md-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-md-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-md-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-md-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-md-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-md-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-md-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-md-0 { - margin-top: 0 !important; - } - - .mt-md-1 { - margin-top: 0.25rem !important; - } - - .mt-md-2 { - margin-top: 0.5rem !important; - } - - .mt-md-3 { - margin-top: 1rem !important; - } - - .mt-md-4 { - margin-top: 1.5rem !important; - } - - .mt-md-5 { - margin-top: 3rem !important; - } - - .mt-md-auto { - margin-top: auto !important; - } - - .me-md-0 { - margin-right: 0 !important; - } - - .me-md-1 { - margin-right: 0.25rem !important; - } - - .me-md-2 { - margin-right: 0.5rem !important; - } - - .me-md-3 { - margin-right: 1rem !important; - } - - .me-md-4 { - margin-right: 1.5rem !important; - } - - .me-md-5 { - margin-right: 3rem !important; - } - - .me-md-auto { - margin-right: auto !important; - } - - .mb-md-0 { - margin-bottom: 0 !important; - } - - .mb-md-1 { - margin-bottom: 0.25rem !important; - } - - .mb-md-2 { - margin-bottom: 0.5rem !important; - } - - .mb-md-3 { - margin-bottom: 1rem !important; - } - - .mb-md-4 { - margin-bottom: 1.5rem !important; - } - - .mb-md-5 { - margin-bottom: 3rem !important; - } - - .mb-md-auto { - margin-bottom: auto !important; - } - - .ms-md-0 { - margin-left: 0 !important; - } - - .ms-md-1 { - margin-left: 0.25rem !important; - } - - .ms-md-2 { - margin-left: 0.5rem !important; - } - - .ms-md-3 { - margin-left: 1rem !important; - } - - .ms-md-4 { - margin-left: 1.5rem !important; - } - - .ms-md-5 { - margin-left: 3rem !important; - } - - .ms-md-auto { - margin-left: auto !important; - } - - .p-md-0 { - padding: 0 !important; - } - - .p-md-1 { - padding: 0.25rem !important; - } - - .p-md-2 { - padding: 0.5rem !important; - } - - .p-md-3 { - padding: 1rem !important; - } - - .p-md-4 { - padding: 1.5rem !important; - } - - .p-md-5 { - padding: 3rem !important; - } - - .px-md-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-md-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-md-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-md-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-md-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-md-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-md-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-md-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-md-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-md-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-md-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-md-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-md-0 { - padding-top: 0 !important; - } - - .pt-md-1 { - padding-top: 0.25rem !important; - } - - .pt-md-2 { - padding-top: 0.5rem !important; - } - - .pt-md-3 { - padding-top: 1rem !important; - } - - .pt-md-4 { - padding-top: 1.5rem !important; - } - - .pt-md-5 { - padding-top: 3rem !important; - } - - .pe-md-0 { - padding-right: 0 !important; - } - - .pe-md-1 { - padding-right: 0.25rem !important; - } - - .pe-md-2 { - padding-right: 0.5rem !important; - } - - .pe-md-3 { - padding-right: 1rem !important; - } - - .pe-md-4 { - padding-right: 1.5rem !important; - } - - .pe-md-5 { - padding-right: 3rem !important; - } - - .pb-md-0 { - padding-bottom: 0 !important; - } - - .pb-md-1 { - padding-bottom: 0.25rem !important; - } - - .pb-md-2 { - padding-bottom: 0.5rem !important; - } - - .pb-md-3 { - padding-bottom: 1rem !important; - } - - .pb-md-4 { - padding-bottom: 1.5rem !important; - } - - .pb-md-5 { - padding-bottom: 3rem !important; - } - - .ps-md-0 { - padding-left: 0 !important; - } - - .ps-md-1 { - padding-left: 0.25rem !important; - } - - .ps-md-2 { - padding-left: 0.5rem !important; - } - - .ps-md-3 { - padding-left: 1rem !important; - } - - .ps-md-4 { - padding-left: 1.5rem !important; - } - - .ps-md-5 { - padding-left: 3rem !important; - } - - .text-md-start { - text-align: left !important; - } - - .text-md-end { - text-align: right !important; - } - - .text-md-center { - text-align: center !important; - } -} -@media (min-width: 992px) { - .float-lg-start { - float: left !important; - } - - .float-lg-end { - float: right !important; - } - - .float-lg-none { - float: none !important; - } - - .d-lg-inline { - display: inline !important; - } - - .d-lg-inline-block { - display: inline-block !important; - } - - .d-lg-block { - display: block !important; - } - - .d-lg-grid { - display: grid !important; - } - - .d-lg-table { - display: table !important; - } - - .d-lg-table-row { - display: table-row !important; - } - - .d-lg-table-cell { - display: table-cell !important; - } - - .d-lg-flex { - display: flex !important; - } - - .d-lg-inline-flex { - display: inline-flex !important; - } - - .d-lg-none { - display: none !important; - } - - .flex-lg-fill { - flex: 1 1 auto !important; - } - - .flex-lg-row { - flex-direction: row !important; - } - - .flex-lg-column { - flex-direction: column !important; - } - - .flex-lg-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-lg-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-lg-grow-0 { - flex-grow: 0 !important; - } - - .flex-lg-grow-1 { - flex-grow: 1 !important; - } - - .flex-lg-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-lg-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-lg-wrap { - flex-wrap: wrap !important; - } - - .flex-lg-nowrap { - flex-wrap: nowrap !important; - } - - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-lg-0 { - gap: 0 !important; - } - - .gap-lg-1 { - gap: 0.25rem !important; - } - - .gap-lg-2 { - gap: 0.5rem !important; - } - - .gap-lg-3 { - gap: 1rem !important; - } - - .gap-lg-4 { - gap: 1.5rem !important; - } - - .gap-lg-5 { - gap: 3rem !important; - } - - .justify-content-lg-start { - justify-content: flex-start !important; - } - - .justify-content-lg-end { - justify-content: flex-end !important; - } - - .justify-content-lg-center { - justify-content: center !important; - } - - .justify-content-lg-between { - justify-content: space-between !important; - } - - .justify-content-lg-around { - justify-content: space-around !important; - } - - .justify-content-lg-evenly { - justify-content: space-evenly !important; - } - - .align-items-lg-start { - align-items: flex-start !important; - } - - .align-items-lg-end { - align-items: flex-end !important; - } - - .align-items-lg-center { - align-items: center !important; - } - - .align-items-lg-baseline { - align-items: baseline !important; - } - - .align-items-lg-stretch { - align-items: stretch !important; - } - - .align-content-lg-start { - align-content: flex-start !important; - } - - .align-content-lg-end { - align-content: flex-end !important; - } - - .align-content-lg-center { - align-content: center !important; - } - - .align-content-lg-between { - align-content: space-between !important; - } - - .align-content-lg-around { - align-content: space-around !important; - } - - .align-content-lg-stretch { - align-content: stretch !important; - } - - .align-self-lg-auto { - align-self: auto !important; - } - - .align-self-lg-start { - align-self: flex-start !important; - } - - .align-self-lg-end { - align-self: flex-end !important; - } - - .align-self-lg-center { - align-self: center !important; - } - - .align-self-lg-baseline { - align-self: baseline !important; - } - - .align-self-lg-stretch { - align-self: stretch !important; - } - - .order-lg-first { - order: -1 !important; - } - - .order-lg-0 { - order: 0 !important; - } - - .order-lg-1 { - order: 1 !important; - } - - .order-lg-2 { - order: 2 !important; - } - - .order-lg-3 { - order: 3 !important; - } - - .order-lg-4 { - order: 4 !important; - } - - .order-lg-5 { - order: 5 !important; - } - - .order-lg-last { - order: 6 !important; - } - - .m-lg-0 { - margin: 0 !important; - } - - .m-lg-1 { - margin: 0.25rem !important; - } - - .m-lg-2 { - margin: 0.5rem !important; - } - - .m-lg-3 { - margin: 1rem !important; - } - - .m-lg-4 { - margin: 1.5rem !important; - } - - .m-lg-5 { - margin: 3rem !important; - } - - .m-lg-auto { - margin: auto !important; - } - - .mx-lg-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-lg-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-lg-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-lg-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-lg-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-lg-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-lg-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-lg-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-lg-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-lg-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-lg-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-lg-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-lg-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-lg-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-lg-0 { - margin-top: 0 !important; - } - - .mt-lg-1 { - margin-top: 0.25rem !important; - } - - .mt-lg-2 { - margin-top: 0.5rem !important; - } - - .mt-lg-3 { - margin-top: 1rem !important; - } - - .mt-lg-4 { - margin-top: 1.5rem !important; - } - - .mt-lg-5 { - margin-top: 3rem !important; - } - - .mt-lg-auto { - margin-top: auto !important; - } - - .me-lg-0 { - margin-right: 0 !important; - } - - .me-lg-1 { - margin-right: 0.25rem !important; - } - - .me-lg-2 { - margin-right: 0.5rem !important; - } - - .me-lg-3 { - margin-right: 1rem !important; - } - - .me-lg-4 { - margin-right: 1.5rem !important; - } - - .me-lg-5 { - margin-right: 3rem !important; - } - - .me-lg-auto { - margin-right: auto !important; - } - - .mb-lg-0 { - margin-bottom: 0 !important; - } - - .mb-lg-1 { - margin-bottom: 0.25rem !important; - } - - .mb-lg-2 { - margin-bottom: 0.5rem !important; - } - - .mb-lg-3 { - margin-bottom: 1rem !important; - } - - .mb-lg-4 { - margin-bottom: 1.5rem !important; - } - - .mb-lg-5 { - margin-bottom: 3rem !important; - } - - .mb-lg-auto { - margin-bottom: auto !important; - } - - .ms-lg-0 { - margin-left: 0 !important; - } - - .ms-lg-1 { - margin-left: 0.25rem !important; - } - - .ms-lg-2 { - margin-left: 0.5rem !important; - } - - .ms-lg-3 { - margin-left: 1rem !important; - } - - .ms-lg-4 { - margin-left: 1.5rem !important; - } - - .ms-lg-5 { - margin-left: 3rem !important; - } - - .ms-lg-auto { - margin-left: auto !important; - } - - .p-lg-0 { - padding: 0 !important; - } - - .p-lg-1 { - padding: 0.25rem !important; - } - - .p-lg-2 { - padding: 0.5rem !important; - } - - .p-lg-3 { - padding: 1rem !important; - } - - .p-lg-4 { - padding: 1.5rem !important; - } - - .p-lg-5 { - padding: 3rem !important; - } - - .px-lg-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-lg-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-lg-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-lg-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-lg-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-lg-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-lg-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-lg-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-lg-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-lg-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-lg-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-lg-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-lg-0 { - padding-top: 0 !important; - } - - .pt-lg-1 { - padding-top: 0.25rem !important; - } - - .pt-lg-2 { - padding-top: 0.5rem !important; - } - - .pt-lg-3 { - padding-top: 1rem !important; - } - - .pt-lg-4 { - padding-top: 1.5rem !important; - } - - .pt-lg-5 { - padding-top: 3rem !important; - } - - .pe-lg-0 { - padding-right: 0 !important; - } - - .pe-lg-1 { - padding-right: 0.25rem !important; - } - - .pe-lg-2 { - padding-right: 0.5rem !important; - } - - .pe-lg-3 { - padding-right: 1rem !important; - } - - .pe-lg-4 { - padding-right: 1.5rem !important; - } - - .pe-lg-5 { - padding-right: 3rem !important; - } - - .pb-lg-0 { - padding-bottom: 0 !important; - } - - .pb-lg-1 { - padding-bottom: 0.25rem !important; - } - - .pb-lg-2 { - padding-bottom: 0.5rem !important; - } - - .pb-lg-3 { - padding-bottom: 1rem !important; - } - - .pb-lg-4 { - padding-bottom: 1.5rem !important; - } - - .pb-lg-5 { - padding-bottom: 3rem !important; - } - - .ps-lg-0 { - padding-left: 0 !important; - } - - .ps-lg-1 { - padding-left: 0.25rem !important; - } - - .ps-lg-2 { - padding-left: 0.5rem !important; - } - - .ps-lg-3 { - padding-left: 1rem !important; - } - - .ps-lg-4 { - padding-left: 1.5rem !important; - } - - .ps-lg-5 { - padding-left: 3rem !important; - } - - .text-lg-start { - text-align: left !important; - } - - .text-lg-end { - text-align: right !important; - } - - .text-lg-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .float-xl-start { - float: left !important; - } - - .float-xl-end { - float: right !important; - } - - .float-xl-none { - float: none !important; - } - - .d-xl-inline { - display: inline !important; - } - - .d-xl-inline-block { - display: inline-block !important; - } - - .d-xl-block { - display: block !important; - } - - .d-xl-grid { - display: grid !important; - } - - .d-xl-table { - display: table !important; - } - - .d-xl-table-row { - display: table-row !important; - } - - .d-xl-table-cell { - display: table-cell !important; - } - - .d-xl-flex { - display: flex !important; - } - - .d-xl-inline-flex { - display: inline-flex !important; - } - - .d-xl-none { - display: none !important; - } - - .flex-xl-fill { - flex: 1 1 auto !important; - } - - .flex-xl-row { - flex-direction: row !important; - } - - .flex-xl-column { - flex-direction: column !important; - } - - .flex-xl-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-xl-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-xl-grow-0 { - flex-grow: 0 !important; - } - - .flex-xl-grow-1 { - flex-grow: 1 !important; - } - - .flex-xl-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-xl-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-xl-wrap { - flex-wrap: wrap !important; - } - - .flex-xl-nowrap { - flex-wrap: nowrap !important; - } - - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-xl-0 { - gap: 0 !important; - } - - .gap-xl-1 { - gap: 0.25rem !important; - } - - .gap-xl-2 { - gap: 0.5rem !important; - } - - .gap-xl-3 { - gap: 1rem !important; - } - - .gap-xl-4 { - gap: 1.5rem !important; - } - - .gap-xl-5 { - gap: 3rem !important; - } - - .justify-content-xl-start { - justify-content: flex-start !important; - } - - .justify-content-xl-end { - justify-content: flex-end !important; - } - - .justify-content-xl-center { - justify-content: center !important; - } - - .justify-content-xl-between { - justify-content: space-between !important; - } - - .justify-content-xl-around { - justify-content: space-around !important; - } - - .justify-content-xl-evenly { - justify-content: space-evenly !important; - } - - .align-items-xl-start { - align-items: flex-start !important; - } - - .align-items-xl-end { - align-items: flex-end !important; - } - - .align-items-xl-center { - align-items: center !important; - } - - .align-items-xl-baseline { - align-items: baseline !important; - } - - .align-items-xl-stretch { - align-items: stretch !important; - } - - .align-content-xl-start { - align-content: flex-start !important; - } - - .align-content-xl-end { - align-content: flex-end !important; - } - - .align-content-xl-center { - align-content: center !important; - } - - .align-content-xl-between { - align-content: space-between !important; - } - - .align-content-xl-around { - align-content: space-around !important; - } - - .align-content-xl-stretch { - align-content: stretch !important; - } - - .align-self-xl-auto { - align-self: auto !important; - } - - .align-self-xl-start { - align-self: flex-start !important; - } - - .align-self-xl-end { - align-self: flex-end !important; - } - - .align-self-xl-center { - align-self: center !important; - } - - .align-self-xl-baseline { - align-self: baseline !important; - } - - .align-self-xl-stretch { - align-self: stretch !important; - } - - .order-xl-first { - order: -1 !important; - } - - .order-xl-0 { - order: 0 !important; - } - - .order-xl-1 { - order: 1 !important; - } - - .order-xl-2 { - order: 2 !important; - } - - .order-xl-3 { - order: 3 !important; - } - - .order-xl-4 { - order: 4 !important; - } - - .order-xl-5 { - order: 5 !important; - } - - .order-xl-last { - order: 6 !important; - } - - .m-xl-0 { - margin: 0 !important; - } - - .m-xl-1 { - margin: 0.25rem !important; - } - - .m-xl-2 { - margin: 0.5rem !important; - } - - .m-xl-3 { - margin: 1rem !important; - } - - .m-xl-4 { - margin: 1.5rem !important; - } - - .m-xl-5 { - margin: 3rem !important; - } - - .m-xl-auto { - margin: auto !important; - } - - .mx-xl-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-xl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-xl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-xl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-xl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-xl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-xl-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-xl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-xl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-xl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-xl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-xl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-xl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-xl-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-xl-0 { - margin-top: 0 !important; - } - - .mt-xl-1 { - margin-top: 0.25rem !important; - } - - .mt-xl-2 { - margin-top: 0.5rem !important; - } - - .mt-xl-3 { - margin-top: 1rem !important; - } - - .mt-xl-4 { - margin-top: 1.5rem !important; - } - - .mt-xl-5 { - margin-top: 3rem !important; - } - - .mt-xl-auto { - margin-top: auto !important; - } - - .me-xl-0 { - margin-right: 0 !important; - } - - .me-xl-1 { - margin-right: 0.25rem !important; - } - - .me-xl-2 { - margin-right: 0.5rem !important; - } - - .me-xl-3 { - margin-right: 1rem !important; - } - - .me-xl-4 { - margin-right: 1.5rem !important; - } - - .me-xl-5 { - margin-right: 3rem !important; - } - - .me-xl-auto { - margin-right: auto !important; - } - - .mb-xl-0 { - margin-bottom: 0 !important; - } - - .mb-xl-1 { - margin-bottom: 0.25rem !important; - } - - .mb-xl-2 { - margin-bottom: 0.5rem !important; - } - - .mb-xl-3 { - margin-bottom: 1rem !important; - } - - .mb-xl-4 { - margin-bottom: 1.5rem !important; - } - - .mb-xl-5 { - margin-bottom: 3rem !important; - } - - .mb-xl-auto { - margin-bottom: auto !important; - } - - .ms-xl-0 { - margin-left: 0 !important; - } - - .ms-xl-1 { - margin-left: 0.25rem !important; - } - - .ms-xl-2 { - margin-left: 0.5rem !important; - } - - .ms-xl-3 { - margin-left: 1rem !important; - } - - .ms-xl-4 { - margin-left: 1.5rem !important; - } - - .ms-xl-5 { - margin-left: 3rem !important; - } - - .ms-xl-auto { - margin-left: auto !important; - } - - .p-xl-0 { - padding: 0 !important; - } - - .p-xl-1 { - padding: 0.25rem !important; - } - - .p-xl-2 { - padding: 0.5rem !important; - } - - .p-xl-3 { - padding: 1rem !important; - } - - .p-xl-4 { - padding: 1.5rem !important; - } - - .p-xl-5 { - padding: 3rem !important; - } - - .px-xl-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-xl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-xl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-xl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-xl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-xl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-xl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-xl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-xl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-xl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-xl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-xl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-xl-0 { - padding-top: 0 !important; - } - - .pt-xl-1 { - padding-top: 0.25rem !important; - } - - .pt-xl-2 { - padding-top: 0.5rem !important; - } - - .pt-xl-3 { - padding-top: 1rem !important; - } - - .pt-xl-4 { - padding-top: 1.5rem !important; - } - - .pt-xl-5 { - padding-top: 3rem !important; - } - - .pe-xl-0 { - padding-right: 0 !important; - } - - .pe-xl-1 { - padding-right: 0.25rem !important; - } - - .pe-xl-2 { - padding-right: 0.5rem !important; - } - - .pe-xl-3 { - padding-right: 1rem !important; - } - - .pe-xl-4 { - padding-right: 1.5rem !important; - } - - .pe-xl-5 { - padding-right: 3rem !important; - } - - .pb-xl-0 { - padding-bottom: 0 !important; - } - - .pb-xl-1 { - padding-bottom: 0.25rem !important; - } - - .pb-xl-2 { - padding-bottom: 0.5rem !important; - } - - .pb-xl-3 { - padding-bottom: 1rem !important; - } - - .pb-xl-4 { - padding-bottom: 1.5rem !important; - } - - .pb-xl-5 { - padding-bottom: 3rem !important; - } - - .ps-xl-0 { - padding-left: 0 !important; - } - - .ps-xl-1 { - padding-left: 0.25rem !important; - } - - .ps-xl-2 { - padding-left: 0.5rem !important; - } - - .ps-xl-3 { - padding-left: 1rem !important; - } - - .ps-xl-4 { - padding-left: 1.5rem !important; - } - - .ps-xl-5 { - padding-left: 3rem !important; - } - - .text-xl-start { - text-align: left !important; - } - - .text-xl-end { - text-align: right !important; - } - - .text-xl-center { - text-align: center !important; - } -} -@media (min-width: 1400px) { - .float-xxl-start { - float: left !important; - } - - .float-xxl-end { - float: right !important; - } - - .float-xxl-none { - float: none !important; - } - - .d-xxl-inline { - display: inline !important; - } - - .d-xxl-inline-block { - display: inline-block !important; - } - - .d-xxl-block { - display: block !important; - } - - .d-xxl-grid { - display: grid !important; - } - - .d-xxl-table { - display: table !important; - } - - .d-xxl-table-row { - display: table-row !important; - } - - .d-xxl-table-cell { - display: table-cell !important; - } - - .d-xxl-flex { - display: flex !important; - } - - .d-xxl-inline-flex { - display: inline-flex !important; - } - - .d-xxl-none { - display: none !important; - } - - .flex-xxl-fill { - flex: 1 1 auto !important; - } - - .flex-xxl-row { - flex-direction: row !important; - } - - .flex-xxl-column { - flex-direction: column !important; - } - - .flex-xxl-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-xxl-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-xxl-grow-0 { - flex-grow: 0 !important; - } - - .flex-xxl-grow-1 { - flex-grow: 1 !important; - } - - .flex-xxl-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-xxl-shrink-1 { - flex-shrink: 1 !important; - } - - .flex-xxl-wrap { - flex-wrap: wrap !important; - } - - .flex-xxl-nowrap { - flex-wrap: nowrap !important; - } - - .flex-xxl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .gap-xxl-0 { - gap: 0 !important; - } - - .gap-xxl-1 { - gap: 0.25rem !important; - } - - .gap-xxl-2 { - gap: 0.5rem !important; - } - - .gap-xxl-3 { - gap: 1rem !important; - } - - .gap-xxl-4 { - gap: 1.5rem !important; - } - - .gap-xxl-5 { - gap: 3rem !important; - } - - .justify-content-xxl-start { - justify-content: flex-start !important; - } - - .justify-content-xxl-end { - justify-content: flex-end !important; - } - - .justify-content-xxl-center { - justify-content: center !important; - } - - .justify-content-xxl-between { - justify-content: space-between !important; - } - - .justify-content-xxl-around { - justify-content: space-around !important; - } - - .justify-content-xxl-evenly { - justify-content: space-evenly !important; - } - - .align-items-xxl-start { - align-items: flex-start !important; - } - - .align-items-xxl-end { - align-items: flex-end !important; - } - - .align-items-xxl-center { - align-items: center !important; - } - - .align-items-xxl-baseline { - align-items: baseline !important; - } - - .align-items-xxl-stretch { - align-items: stretch !important; - } - - .align-content-xxl-start { - align-content: flex-start !important; - } - - .align-content-xxl-end { - align-content: flex-end !important; - } - - .align-content-xxl-center { - align-content: center !important; - } - - .align-content-xxl-between { - align-content: space-between !important; - } - - .align-content-xxl-around { - align-content: space-around !important; - } - - .align-content-xxl-stretch { - align-content: stretch !important; - } - - .align-self-xxl-auto { - align-self: auto !important; - } - - .align-self-xxl-start { - align-self: flex-start !important; - } - - .align-self-xxl-end { - align-self: flex-end !important; - } - - .align-self-xxl-center { - align-self: center !important; - } - - .align-self-xxl-baseline { - align-self: baseline !important; - } - - .align-self-xxl-stretch { - align-self: stretch !important; - } - - .order-xxl-first { - order: -1 !important; - } - - .order-xxl-0 { - order: 0 !important; - } - - .order-xxl-1 { - order: 1 !important; - } - - .order-xxl-2 { - order: 2 !important; - } - - .order-xxl-3 { - order: 3 !important; - } - - .order-xxl-4 { - order: 4 !important; - } - - .order-xxl-5 { - order: 5 !important; - } - - .order-xxl-last { - order: 6 !important; - } - - .m-xxl-0 { - margin: 0 !important; - } - - .m-xxl-1 { - margin: 0.25rem !important; - } - - .m-xxl-2 { - margin: 0.5rem !important; - } - - .m-xxl-3 { - margin: 1rem !important; - } - - .m-xxl-4 { - margin: 1.5rem !important; - } - - .m-xxl-5 { - margin: 3rem !important; - } - - .m-xxl-auto { - margin: auto !important; - } - - .mx-xxl-0 { - margin-right: 0 !important; - margin-left: 0 !important; - } - - .mx-xxl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; - } - - .mx-xxl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; - } - - .mx-xxl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; - } - - .mx-xxl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; - } - - .mx-xxl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; - } - - .mx-xxl-auto { - margin-right: auto !important; - margin-left: auto !important; - } - - .my-xxl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .my-xxl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - - .my-xxl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - - .my-xxl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - - .my-xxl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - - .my-xxl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - - .my-xxl-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - - .mt-xxl-0 { - margin-top: 0 !important; - } - - .mt-xxl-1 { - margin-top: 0.25rem !important; - } - - .mt-xxl-2 { - margin-top: 0.5rem !important; - } - - .mt-xxl-3 { - margin-top: 1rem !important; - } - - .mt-xxl-4 { - margin-top: 1.5rem !important; - } - - .mt-xxl-5 { - margin-top: 3rem !important; - } - - .mt-xxl-auto { - margin-top: auto !important; - } - - .me-xxl-0 { - margin-right: 0 !important; - } - - .me-xxl-1 { - margin-right: 0.25rem !important; - } - - .me-xxl-2 { - margin-right: 0.5rem !important; - } - - .me-xxl-3 { - margin-right: 1rem !important; - } - - .me-xxl-4 { - margin-right: 1.5rem !important; - } - - .me-xxl-5 { - margin-right: 3rem !important; - } - - .me-xxl-auto { - margin-right: auto !important; - } - - .mb-xxl-0 { - margin-bottom: 0 !important; - } - - .mb-xxl-1 { - margin-bottom: 0.25rem !important; - } - - .mb-xxl-2 { - margin-bottom: 0.5rem !important; - } - - .mb-xxl-3 { - margin-bottom: 1rem !important; - } - - .mb-xxl-4 { - margin-bottom: 1.5rem !important; - } - - .mb-xxl-5 { - margin-bottom: 3rem !important; - } - - .mb-xxl-auto { - margin-bottom: auto !important; - } - - .ms-xxl-0 { - margin-left: 0 !important; - } - - .ms-xxl-1 { - margin-left: 0.25rem !important; - } - - .ms-xxl-2 { - margin-left: 0.5rem !important; - } - - .ms-xxl-3 { - margin-left: 1rem !important; - } - - .ms-xxl-4 { - margin-left: 1.5rem !important; - } - - .ms-xxl-5 { - margin-left: 3rem !important; - } - - .ms-xxl-auto { - margin-left: auto !important; - } - - .p-xxl-0 { - padding: 0 !important; - } - - .p-xxl-1 { - padding: 0.25rem !important; - } - - .p-xxl-2 { - padding: 0.5rem !important; - } - - .p-xxl-3 { - padding: 1rem !important; - } - - .p-xxl-4 { - padding: 1.5rem !important; - } - - .p-xxl-5 { - padding: 3rem !important; - } - - .px-xxl-0 { - padding-right: 0 !important; - padding-left: 0 !important; - } - - .px-xxl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; - } - - .px-xxl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; - } - - .px-xxl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; - } - - .px-xxl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; - } - - .px-xxl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; - } - - .py-xxl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - - .py-xxl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - } - - .py-xxl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - - .py-xxl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - - .py-xxl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; - } - - .py-xxl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; - } - - .pt-xxl-0 { - padding-top: 0 !important; - } - - .pt-xxl-1 { - padding-top: 0.25rem !important; - } - - .pt-xxl-2 { - padding-top: 0.5rem !important; - } - - .pt-xxl-3 { - padding-top: 1rem !important; - } - - .pt-xxl-4 { - padding-top: 1.5rem !important; - } - - .pt-xxl-5 { - padding-top: 3rem !important; - } - - .pe-xxl-0 { - padding-right: 0 !important; - } - - .pe-xxl-1 { - padding-right: 0.25rem !important; - } - - .pe-xxl-2 { - padding-right: 0.5rem !important; - } - - .pe-xxl-3 { - padding-right: 1rem !important; - } - - .pe-xxl-4 { - padding-right: 1.5rem !important; - } - - .pe-xxl-5 { - padding-right: 3rem !important; - } - - .pb-xxl-0 { - padding-bottom: 0 !important; - } - - .pb-xxl-1 { - padding-bottom: 0.25rem !important; - } - - .pb-xxl-2 { - padding-bottom: 0.5rem !important; - } - - .pb-xxl-3 { - padding-bottom: 1rem !important; - } - - .pb-xxl-4 { - padding-bottom: 1.5rem !important; - } - - .pb-xxl-5 { - padding-bottom: 3rem !important; - } - - .ps-xxl-0 { - padding-left: 0 !important; - } - - .ps-xxl-1 { - padding-left: 0.25rem !important; - } - - .ps-xxl-2 { - padding-left: 0.5rem !important; - } - - .ps-xxl-3 { - padding-left: 1rem !important; - } - - .ps-xxl-4 { - padding-left: 1.5rem !important; - } - - .ps-xxl-5 { - padding-left: 3rem !important; - } - - .text-xxl-start { - text-align: left !important; - } - - .text-xxl-end { - text-align: right !important; - } - - .text-xxl-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .fs-1 { - font-size: 2.5rem !important; - } - - .fs-2 { - font-size: 2rem !important; - } - - .fs-3 { - font-size: 1.75rem !important; - } - - .fs-4 { - font-size: 1.5rem !important; - } -} -@media print { - .d-print-inline { - display: inline !important; - } - - .d-print-inline-block { - display: inline-block !important; - } - - .d-print-block { - display: block !important; - } - - .d-print-grid { - display: grid !important; - } - - .d-print-table { - display: table !important; - } - - .d-print-table-row { - display: table-row !important; - } - - .d-print-table-cell { - display: table-cell !important; - } - - .d-print-flex { - display: flex !important; - } - - .d-print-inline-flex { - display: inline-flex !important; - } - - .d-print-none { - display: none !important; - } -}" -`; - -exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v5, import as a package (node-sass) (sass): css 1`] = ` -"/*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --bs-blue: #0d6efd; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #d63384; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-gray-100: #f8f9fa; - --bs-gray-200: #e9ecef; - --bs-gray-300: #dee2e6; - --bs-gray-400: #ced4da; - --bs-gray-500: #adb5bd; - --bs-gray-600: #6c757d; - --bs-gray-700: #495057; - --bs-gray-800: #343a40; - --bs-gray-900: #212529; - --bs-primary: #0d6efd; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-primary-rgb: 13, 110, 253; - --bs-secondary-rgb: 108, 117, 125; - --bs-success-rgb: 25, 135, 84; - --bs-info-rgb: 13, 202, 240; - --bs-warning-rgb: 255, 193, 7; - --bs-danger-rgb: 220, 53, 69; - --bs-light-rgb: 248, 249, 250; - --bs-dark-rgb: 33, 37, 41; - --bs-white-rgb: 255, 255, 255; - --bs-black-rgb: 0, 0, 0; - --bs-body-color-rgb: 33, 37, 41; - --bs-body-bg-rgb: 255, 255, 255; - --bs-font-sans-serif: system-ui, -apple-system, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); - --bs-body-font-family: var(--bs-font-sans-serif); - --bs-body-font-size: 1rem; - --bs-body-font-weight: 400; - --bs-body-line-height: 1.5; - --bs-body-color: #212529; - --bs-body-bg: #fff; } - -*, -*::before, -*::after { - box-sizing: border-box; } - -@media (prefers-reduced-motion: no-preference) { - :root { - scroll-behavior: smooth; } } - -body { - margin: 0; - font-family: var(--bs-body-font-family); - font-size: var(--bs-body-font-size); - font-weight: var(--bs-body-font-weight); - line-height: var(--bs-body-line-height); - color: var(--bs-body-color); - text-align: var(--bs-body-text-align); - background-color: var(--bs-body-bg); - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.25; } - -hr:not([size]) { - height: 1px; } - -h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { - margin-top: 0; - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - -h1, .h1 { - font-size: calc(1.375rem + 1.5vw); } - @media (min-width: 1200px) { - h1, .h1 { - font-size: 2.5rem; } } - -h2, .h2 { - font-size: calc(1.325rem + 0.9vw); } - @media (min-width: 1200px) { - h2, .h2 { - font-size: 2rem; } } - -h3, .h3 { - font-size: calc(1.3rem + 0.6vw); } - @media (min-width: 1200px) { - h3, .h3 { - font-size: 1.75rem; } } - -h4, .h4 { - font-size: calc(1.275rem + 0.3vw); } - @media (min-width: 1200px) { - h4, .h4 { - font-size: 1.5rem; } } - -h5, .h5 { - font-size: 1.25rem; } - -h6, .h6 { - font-size: 1rem; } - -p { - margin-top: 0; - margin-bottom: 1rem; } - -abbr[title], -abbr[data-bs-original-title] { - text-decoration: underline dotted; - cursor: help; - text-decoration-skip-ink: none; } - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - -ol, -ul { - padding-left: 2rem; } - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; } - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; } - -dt { - font-weight: 700; } - -dd { - margin-bottom: .5rem; - margin-left: 0; } - -blockquote { - margin: 0 0 1rem; } - -b, -strong { - font-weight: bolder; } - -small, .small { - font-size: 0.875em; } - -mark, .mark { - padding: 0.2em; - background-color: #fcf8e3; } - -sub, -sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; } - -sub { - bottom: -.25em; } - -sup { - top: -.5em; } - -a { - color: #0d6efd; - text-decoration: underline; } - a:hover { - color: #0a58ca; } - -a:not([href]):not([class]), a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } - -pre, -code, -kbd, -samp { - font-family: var(--bs-font-monospace); - font-size: 1em; - direction: ltr /* rtl:ignore */; - unicode-bidi: bidi-override; } - -pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; } - pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - -code { - font-size: 0.875em; - color: #d63384; - word-wrap: break-word; } - a > code { - color: inherit; } - -kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; } - -figure { - margin: 0 0 1rem; } - -img, -svg { - vertical-align: middle; } - -table { - caption-side: bottom; - border-collapse: collapse; } - -caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: #6c757d; - text-align: left; } - -th { - text-align: inherit; - text-align: -webkit-match-parent; } - -thead, -tbody, -tfoot, -tr, -td, -th { - border-color: inherit; - border-style: solid; - border-width: 0; } - -label { - display: inline-block; } - -button { - border-radius: 0; } - -button:focus:not(:focus-visible) { - outline: 0; } - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - -button, -select { - text-transform: none; } - -[role=\\"button\\"] { - cursor: pointer; } - -select { - word-wrap: normal; } - select:disabled { - opacity: 1; } - -[list]::-webkit-calendar-picker-indicator { - display: none; } - -button, -[type=\\"button\\"], -[type=\\"reset\\"], -[type=\\"submit\\"] { - -webkit-appearance: button; } - button:not(:disabled), - [type=\\"button\\"]:not(:disabled), - [type=\\"reset\\"]:not(:disabled), - [type=\\"submit\\"]:not(:disabled) { - cursor: pointer; } - -::-moz-focus-inner { - padding: 0; - border-style: none; } - -textarea { - resize: vertical; } - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - -legend { - float: left; - width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: calc(1.275rem + 0.3vw); - line-height: inherit; } - @media (min-width: 1200px) { - legend { - font-size: 1.5rem; } } - legend + * { - clear: left; } - -::-webkit-datetime-edit-fields-wrapper, -::-webkit-datetime-edit-text, -::-webkit-datetime-edit-minute, -::-webkit-datetime-edit-hour-field, -::-webkit-datetime-edit-day-field, -::-webkit-datetime-edit-month-field, -::-webkit-datetime-edit-year-field { - padding: 0; } - -::-webkit-inner-spin-button { - height: auto; } - -[type=\\"search\\"] { - outline-offset: -2px; - -webkit-appearance: textfield; } - -/* rtl:raw: -[type=\\"tel\\"], -[type=\\"url\\"], -[type=\\"email\\"], -[type=\\"number\\"] { - direction: ltr; -} -*/ -::-webkit-search-decoration { - -webkit-appearance: none; } - -::-webkit-color-swatch-wrapper { - padding: 0; } - -::file-selector-button { - font: inherit; } - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - -output { - display: inline-block; } - -iframe { - border: 0; } - -summary { - display: list-item; - cursor: pointer; } - -progress { - vertical-align: baseline; } - -[hidden] { - display: none !important; } - -.lead { - font-size: 1.25rem; - font-weight: 300; } - -.display-1 { - font-size: calc(1.625rem + 4.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-1 { - font-size: 5rem; } } - -.display-2 { - font-size: calc(1.575rem + 3.9vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-2 { - font-size: 4.5rem; } } - -.display-3 { - font-size: calc(1.525rem + 3.3vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-3 { - font-size: 4rem; } } - -.display-4 { - font-size: calc(1.475rem + 2.7vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-4 { - font-size: 3.5rem; } } - -.display-5 { - font-size: calc(1.425rem + 2.1vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-5 { - font-size: 3rem; } } - -.display-6 { - font-size: calc(1.375rem + 1.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-6 { - font-size: 2.5rem; } } - -.list-unstyled { - padding-left: 0; - list-style: none; } - -.list-inline { - padding-left: 0; - list-style: none; } - -.list-inline-item { - display: inline-block; } - .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } - -.initialism { - font-size: 0.875em; - text-transform: uppercase; } - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } - .blockquote > :last-child { - margin-bottom: 0; } - -.blockquote-footer { - margin-top: -1rem; - margin-bottom: 1rem; - font-size: 0.875em; - color: #6c757d; } - .blockquote-footer::before { - content: \\"\\\\2014\\\\00A0\\"; } - -.img-fluid { - max-width: 100%; - height: auto; } - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; } - -.figure { - display: inline-block; } - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; } - -.figure-caption { - font-size: 0.875em; - color: #6c757d; } - -.container, -.container-fluid, -.container-sm, -.container-md, -.container-lg, -.container-xl, -.container-xxl { - width: 100%; - padding-right: var(--bs-gutter-x, 0.75rem); - padding-left: var(--bs-gutter-x, 0.75rem); - margin-right: auto; - margin-left: auto; } - -@media (min-width: 576px) { - .container, .container-sm { - max-width: 540px; } } - -@media (min-width: 768px) { - .container, .container-sm, .container-md { - max-width: 720px; } } - -@media (min-width: 992px) { - .container, .container-sm, .container-md, .container-lg { - max-width: 960px; } } - -@media (min-width: 1200px) { - .container, .container-sm, .container-md, .container-lg, .container-xl { - max-width: 1140px; } } - -@media (min-width: 1400px) { - .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { - max-width: 1320px; } } - -.row { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - display: flex; - flex-wrap: wrap; - margin-top: calc(-1 * var(--bs-gutter-y)); - margin-right: calc(-.5 * var(--bs-gutter-x)); - margin-left: calc(-.5 * var(--bs-gutter-x)); } - .row > * { - flex-shrink: 0; - width: 100%; - max-width: 100%; - padding-right: calc(var(--bs-gutter-x) * .5); - padding-left: calc(var(--bs-gutter-x) * .5); - margin-top: var(--bs-gutter-y); } - -.col { - flex: 1 0 0%; } - -.row-cols-auto > * { - flex: 0 0 auto; - width: auto; } - -.row-cols-1 > * { - flex: 0 0 auto; - width: 100%; } - -.row-cols-2 > * { - flex: 0 0 auto; - width: 50%; } - -.row-cols-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - -.row-cols-4 > * { - flex: 0 0 auto; - width: 25%; } - -.row-cols-5 > * { - flex: 0 0 auto; - width: 20%; } - -.row-cols-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - -.col-auto { - flex: 0 0 auto; - width: auto; } - -.col-1 { - flex: 0 0 auto; - width: 8.33333%; } - -.col-2 { - flex: 0 0 auto; - width: 16.66667%; } - -.col-3 { - flex: 0 0 auto; - width: 25%; } - -.col-4 { - flex: 0 0 auto; - width: 33.33333%; } - -.col-5 { - flex: 0 0 auto; - width: 41.66667%; } - -.col-6 { - flex: 0 0 auto; - width: 50%; } - -.col-7 { - flex: 0 0 auto; - width: 58.33333%; } - -.col-8 { - flex: 0 0 auto; - width: 66.66667%; } - -.col-9 { - flex: 0 0 auto; - width: 75%; } - -.col-10 { - flex: 0 0 auto; - width: 83.33333%; } - -.col-11 { - flex: 0 0 auto; - width: 91.66667%; } - -.col-12 { - flex: 0 0 auto; - width: 100%; } - -.offset-1 { - margin-left: 8.33333%; } - -.offset-2 { - margin-left: 16.66667%; } - -.offset-3 { - margin-left: 25%; } - -.offset-4 { - margin-left: 33.33333%; } - -.offset-5 { - margin-left: 41.66667%; } - -.offset-6 { - margin-left: 50%; } - -.offset-7 { - margin-left: 58.33333%; } - -.offset-8 { - margin-left: 66.66667%; } - -.offset-9 { - margin-left: 75%; } - -.offset-10 { - margin-left: 83.33333%; } - -.offset-11 { - margin-left: 91.66667%; } - -.g-0, -.gx-0 { - --bs-gutter-x: 0; } - -.g-0, -.gy-0 { - --bs-gutter-y: 0; } - -.g-1, -.gx-1 { - --bs-gutter-x: 0.25rem; } - -.g-1, -.gy-1 { - --bs-gutter-y: 0.25rem; } - -.g-2, -.gx-2 { - --bs-gutter-x: 0.5rem; } - -.g-2, -.gy-2 { - --bs-gutter-y: 0.5rem; } - -.g-3, -.gx-3 { - --bs-gutter-x: 1rem; } - -.g-3, -.gy-3 { - --bs-gutter-y: 1rem; } - -.g-4, -.gx-4 { - --bs-gutter-x: 1.5rem; } - -.g-4, -.gy-4 { - --bs-gutter-y: 1.5rem; } - -.g-5, -.gx-5 { - --bs-gutter-x: 3rem; } - -.g-5, -.gy-5 { - --bs-gutter-y: 3rem; } - -@media (min-width: 576px) { - .col-sm { - flex: 1 0 0%; } - .row-cols-sm-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-sm-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-sm-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-sm-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-sm-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-sm-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-sm-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-sm-auto { - flex: 0 0 auto; - width: auto; } - .col-sm-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-sm-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-sm-3 { - flex: 0 0 auto; - width: 25%; } - .col-sm-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-sm-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-sm-6 { - flex: 0 0 auto; - width: 50%; } - .col-sm-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-sm-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-sm-9 { - flex: 0 0 auto; - width: 75%; } - .col-sm-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-sm-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-sm-12 { - flex: 0 0 auto; - width: 100%; } - .offset-sm-0 { - margin-left: 0; } - .offset-sm-1 { - margin-left: 8.33333%; } - .offset-sm-2 { - margin-left: 16.66667%; } - .offset-sm-3 { - margin-left: 25%; } - .offset-sm-4 { - margin-left: 33.33333%; } - .offset-sm-5 { - margin-left: 41.66667%; } - .offset-sm-6 { - margin-left: 50%; } - .offset-sm-7 { - margin-left: 58.33333%; } - .offset-sm-8 { - margin-left: 66.66667%; } - .offset-sm-9 { - margin-left: 75%; } - .offset-sm-10 { - margin-left: 83.33333%; } - .offset-sm-11 { - margin-left: 91.66667%; } - .g-sm-0, - .gx-sm-0 { - --bs-gutter-x: 0; } - .g-sm-0, - .gy-sm-0 { - --bs-gutter-y: 0; } - .g-sm-1, - .gx-sm-1 { - --bs-gutter-x: 0.25rem; } - .g-sm-1, - .gy-sm-1 { - --bs-gutter-y: 0.25rem; } - .g-sm-2, - .gx-sm-2 { - --bs-gutter-x: 0.5rem; } - .g-sm-2, - .gy-sm-2 { - --bs-gutter-y: 0.5rem; } - .g-sm-3, - .gx-sm-3 { - --bs-gutter-x: 1rem; } - .g-sm-3, - .gy-sm-3 { - --bs-gutter-y: 1rem; } - .g-sm-4, - .gx-sm-4 { - --bs-gutter-x: 1.5rem; } - .g-sm-4, - .gy-sm-4 { - --bs-gutter-y: 1.5rem; } - .g-sm-5, - .gx-sm-5 { - --bs-gutter-x: 3rem; } - .g-sm-5, - .gy-sm-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 768px) { - .col-md { - flex: 1 0 0%; } - .row-cols-md-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-md-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-md-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-md-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-md-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-md-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-md-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-md-auto { - flex: 0 0 auto; - width: auto; } - .col-md-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-md-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-md-3 { - flex: 0 0 auto; - width: 25%; } - .col-md-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-md-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-md-6 { - flex: 0 0 auto; - width: 50%; } - .col-md-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-md-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-md-9 { - flex: 0 0 auto; - width: 75%; } - .col-md-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-md-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-md-12 { - flex: 0 0 auto; - width: 100%; } - .offset-md-0 { - margin-left: 0; } - .offset-md-1 { - margin-left: 8.33333%; } - .offset-md-2 { - margin-left: 16.66667%; } - .offset-md-3 { - margin-left: 25%; } - .offset-md-4 { - margin-left: 33.33333%; } - .offset-md-5 { - margin-left: 41.66667%; } - .offset-md-6 { - margin-left: 50%; } - .offset-md-7 { - margin-left: 58.33333%; } - .offset-md-8 { - margin-left: 66.66667%; } - .offset-md-9 { - margin-left: 75%; } - .offset-md-10 { - margin-left: 83.33333%; } - .offset-md-11 { - margin-left: 91.66667%; } - .g-md-0, - .gx-md-0 { - --bs-gutter-x: 0; } - .g-md-0, - .gy-md-0 { - --bs-gutter-y: 0; } - .g-md-1, - .gx-md-1 { - --bs-gutter-x: 0.25rem; } - .g-md-1, - .gy-md-1 { - --bs-gutter-y: 0.25rem; } - .g-md-2, - .gx-md-2 { - --bs-gutter-x: 0.5rem; } - .g-md-2, - .gy-md-2 { - --bs-gutter-y: 0.5rem; } - .g-md-3, - .gx-md-3 { - --bs-gutter-x: 1rem; } - .g-md-3, - .gy-md-3 { - --bs-gutter-y: 1rem; } - .g-md-4, - .gx-md-4 { - --bs-gutter-x: 1.5rem; } - .g-md-4, - .gy-md-4 { - --bs-gutter-y: 1.5rem; } - .g-md-5, - .gx-md-5 { - --bs-gutter-x: 3rem; } - .g-md-5, - .gy-md-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 992px) { - .col-lg { - flex: 1 0 0%; } - .row-cols-lg-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-lg-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-lg-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-lg-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-lg-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-lg-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-lg-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-lg-auto { - flex: 0 0 auto; - width: auto; } - .col-lg-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-lg-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-lg-3 { - flex: 0 0 auto; - width: 25%; } - .col-lg-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-lg-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-lg-6 { - flex: 0 0 auto; - width: 50%; } - .col-lg-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-lg-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-lg-9 { - flex: 0 0 auto; - width: 75%; } - .col-lg-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-lg-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-lg-12 { - flex: 0 0 auto; - width: 100%; } - .offset-lg-0 { - margin-left: 0; } - .offset-lg-1 { - margin-left: 8.33333%; } - .offset-lg-2 { - margin-left: 16.66667%; } - .offset-lg-3 { - margin-left: 25%; } - .offset-lg-4 { - margin-left: 33.33333%; } - .offset-lg-5 { - margin-left: 41.66667%; } - .offset-lg-6 { - margin-left: 50%; } - .offset-lg-7 { - margin-left: 58.33333%; } - .offset-lg-8 { - margin-left: 66.66667%; } - .offset-lg-9 { - margin-left: 75%; } - .offset-lg-10 { - margin-left: 83.33333%; } - .offset-lg-11 { - margin-left: 91.66667%; } - .g-lg-0, - .gx-lg-0 { - --bs-gutter-x: 0; } - .g-lg-0, - .gy-lg-0 { - --bs-gutter-y: 0; } - .g-lg-1, - .gx-lg-1 { - --bs-gutter-x: 0.25rem; } - .g-lg-1, - .gy-lg-1 { - --bs-gutter-y: 0.25rem; } - .g-lg-2, - .gx-lg-2 { - --bs-gutter-x: 0.5rem; } - .g-lg-2, - .gy-lg-2 { - --bs-gutter-y: 0.5rem; } - .g-lg-3, - .gx-lg-3 { - --bs-gutter-x: 1rem; } - .g-lg-3, - .gy-lg-3 { - --bs-gutter-y: 1rem; } - .g-lg-4, - .gx-lg-4 { - --bs-gutter-x: 1.5rem; } - .g-lg-4, - .gy-lg-4 { - --bs-gutter-y: 1.5rem; } - .g-lg-5, - .gx-lg-5 { - --bs-gutter-x: 3rem; } - .g-lg-5, - .gy-lg-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 1200px) { - .col-xl { - flex: 1 0 0%; } - .row-cols-xl-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-xl-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-xl-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-xl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-xl-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-xl-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-xl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-xl-auto { - flex: 0 0 auto; - width: auto; } - .col-xl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-xl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-xl-3 { - flex: 0 0 auto; - width: 25%; } - .col-xl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-xl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-xl-6 { - flex: 0 0 auto; - width: 50%; } - .col-xl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-xl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-xl-9 { - flex: 0 0 auto; - width: 75%; } - .col-xl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-xl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-xl-12 { - flex: 0 0 auto; - width: 100%; } - .offset-xl-0 { - margin-left: 0; } - .offset-xl-1 { - margin-left: 8.33333%; } - .offset-xl-2 { - margin-left: 16.66667%; } - .offset-xl-3 { - margin-left: 25%; } - .offset-xl-4 { - margin-left: 33.33333%; } - .offset-xl-5 { - margin-left: 41.66667%; } - .offset-xl-6 { - margin-left: 50%; } - .offset-xl-7 { - margin-left: 58.33333%; } - .offset-xl-8 { - margin-left: 66.66667%; } - .offset-xl-9 { - margin-left: 75%; } - .offset-xl-10 { - margin-left: 83.33333%; } - .offset-xl-11 { - margin-left: 91.66667%; } - .g-xl-0, - .gx-xl-0 { - --bs-gutter-x: 0; } - .g-xl-0, - .gy-xl-0 { - --bs-gutter-y: 0; } - .g-xl-1, - .gx-xl-1 { - --bs-gutter-x: 0.25rem; } - .g-xl-1, - .gy-xl-1 { - --bs-gutter-y: 0.25rem; } - .g-xl-2, - .gx-xl-2 { - --bs-gutter-x: 0.5rem; } - .g-xl-2, - .gy-xl-2 { - --bs-gutter-y: 0.5rem; } - .g-xl-3, - .gx-xl-3 { - --bs-gutter-x: 1rem; } - .g-xl-3, - .gy-xl-3 { - --bs-gutter-y: 1rem; } - .g-xl-4, - .gx-xl-4 { - --bs-gutter-x: 1.5rem; } - .g-xl-4, - .gy-xl-4 { - --bs-gutter-y: 1.5rem; } - .g-xl-5, - .gx-xl-5 { - --bs-gutter-x: 3rem; } - .g-xl-5, - .gy-xl-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 1400px) { - .col-xxl { - flex: 1 0 0%; } - .row-cols-xxl-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-xxl-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-xxl-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-xxl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-xxl-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-xxl-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-xxl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-xxl-auto { - flex: 0 0 auto; - width: auto; } - .col-xxl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-xxl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-xxl-3 { - flex: 0 0 auto; - width: 25%; } - .col-xxl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-xxl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-xxl-6 { - flex: 0 0 auto; - width: 50%; } - .col-xxl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-xxl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-xxl-9 { - flex: 0 0 auto; - width: 75%; } - .col-xxl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-xxl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-xxl-12 { - flex: 0 0 auto; - width: 100%; } - .offset-xxl-0 { - margin-left: 0; } - .offset-xxl-1 { - margin-left: 8.33333%; } - .offset-xxl-2 { - margin-left: 16.66667%; } - .offset-xxl-3 { - margin-left: 25%; } - .offset-xxl-4 { - margin-left: 33.33333%; } - .offset-xxl-5 { - margin-left: 41.66667%; } - .offset-xxl-6 { - margin-left: 50%; } - .offset-xxl-7 { - margin-left: 58.33333%; } - .offset-xxl-8 { - margin-left: 66.66667%; } - .offset-xxl-9 { - margin-left: 75%; } - .offset-xxl-10 { - margin-left: 83.33333%; } - .offset-xxl-11 { - margin-left: 91.66667%; } - .g-xxl-0, - .gx-xxl-0 { - --bs-gutter-x: 0; } - .g-xxl-0, - .gy-xxl-0 { - --bs-gutter-y: 0; } - .g-xxl-1, - .gx-xxl-1 { - --bs-gutter-x: 0.25rem; } - .g-xxl-1, - .gy-xxl-1 { - --bs-gutter-y: 0.25rem; } - .g-xxl-2, - .gx-xxl-2 { - --bs-gutter-x: 0.5rem; } - .g-xxl-2, - .gy-xxl-2 { - --bs-gutter-y: 0.5rem; } - .g-xxl-3, - .gx-xxl-3 { - --bs-gutter-x: 1rem; } - .g-xxl-3, - .gy-xxl-3 { - --bs-gutter-y: 1rem; } - .g-xxl-4, - .gx-xxl-4 { - --bs-gutter-x: 1.5rem; } - .g-xxl-4, - .gy-xxl-4 { - --bs-gutter-y: 1.5rem; } - .g-xxl-5, - .gx-xxl-5 { - --bs-gutter-x: 3rem; } - .g-xxl-5, - .gy-xxl-5 { - --bs-gutter-y: 3rem; } } - -.table { - --bs-table-bg: transparent; - --bs-table-accent-bg: transparent; - --bs-table-striped-color: #212529; - --bs-table-striped-bg: rgba(0, 0, 0, 0.05); - --bs-table-active-color: #212529; - --bs-table-active-bg: rgba(0, 0, 0, 0.1); - --bs-table-hover-color: #212529; - --bs-table-hover-bg: rgba(0, 0, 0, 0.075); - width: 100%; - margin-bottom: 1rem; - color: #212529; - vertical-align: top; - border-color: #dee2e6; } - .table > :not(caption) > * > * { - padding: 0.5rem 0.5rem; - background-color: var(--bs-table-bg); - border-bottom-width: 1px; - box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); } - .table > tbody { - vertical-align: inherit; } - .table > thead { - vertical-align: bottom; } - .table > :not(:first-child) { - border-top: 2px solid currentColor; } - -.caption-top { - caption-side: top; } - -.table-sm > :not(caption) > * > * { - padding: 0.25rem 0.25rem; } - -.table-bordered > :not(caption) > * { - border-width: 1px 0; } - .table-bordered > :not(caption) > * > * { - border-width: 0 1px; } - -.table-borderless > :not(caption) > * > * { - border-bottom-width: 0; } - -.table-borderless > :not(:first-child) { - border-top-width: 0; } - -.table-striped > tbody > tr:nth-of-type(odd) > * { - --bs-table-accent-bg: var(--bs-table-striped-bg); - color: var(--bs-table-striped-color); } - -.table-active { - --bs-table-accent-bg: var(--bs-table-active-bg); - color: var(--bs-table-active-color); } - -.table-hover > tbody > tr:hover > * { - --bs-table-accent-bg: var(--bs-table-hover-bg); - color: var(--bs-table-hover-color); } - -.table-primary { - --bs-table-bg: #cfe2ff; - --bs-table-striped-bg: #c5d7f2; - --bs-table-striped-color: #000; - --bs-table-active-bg: #bacbe6; - --bs-table-active-color: #000; - --bs-table-hover-bg: #bfd1ec; - --bs-table-hover-color: #000; - color: #000; - border-color: #bacbe6; } - -.table-secondary { - --bs-table-bg: #e2e3e5; - --bs-table-striped-bg: #d7d8da; - --bs-table-striped-color: #000; - --bs-table-active-bg: #cbccce; - --bs-table-active-color: #000; - --bs-table-hover-bg: #d1d2d4; - --bs-table-hover-color: #000; - color: #000; - border-color: #cbccce; } - -.table-success { - --bs-table-bg: #d1e7dd; - --bs-table-striped-bg: #c7dbd2; - --bs-table-striped-color: #000; - --bs-table-active-bg: #bcd0c7; - --bs-table-active-color: #000; - --bs-table-hover-bg: #c1d6cc; - --bs-table-hover-color: #000; - color: #000; - border-color: #bcd0c7; } - -.table-info { - --bs-table-bg: #cff4fc; - --bs-table-striped-bg: #c5e8ef; - --bs-table-striped-color: #000; - --bs-table-active-bg: #badce3; - --bs-table-active-color: #000; - --bs-table-hover-bg: #bfe2e9; - --bs-table-hover-color: #000; - color: #000; - border-color: #badce3; } - -.table-warning { - --bs-table-bg: #fff3cd; - --bs-table-striped-bg: #f2e7c3; - --bs-table-striped-color: #000; - --bs-table-active-bg: #e6dbb9; - --bs-table-active-color: #000; - --bs-table-hover-bg: #ece1be; - --bs-table-hover-color: #000; - color: #000; - border-color: #e6dbb9; } - -.table-danger { - --bs-table-bg: #f8d7da; - --bs-table-striped-bg: #eccccf; - --bs-table-striped-color: #000; - --bs-table-active-bg: #dfc2c4; - --bs-table-active-color: #000; - --bs-table-hover-bg: #e5c7ca; - --bs-table-hover-color: #000; - color: #000; - border-color: #dfc2c4; } - -.table-light { - --bs-table-bg: #f8f9fa; - --bs-table-striped-bg: #ecedee; - --bs-table-striped-color: #000; - --bs-table-active-bg: #dfe0e1; - --bs-table-active-color: #000; - --bs-table-hover-bg: #e5e6e7; - --bs-table-hover-color: #000; - color: #000; - border-color: #dfe0e1; } - -.table-dark { - --bs-table-bg: #212529; - --bs-table-striped-bg: #2c3034; - --bs-table-striped-color: #fff; - --bs-table-active-bg: #373b3e; - --bs-table-active-color: #fff; - --bs-table-hover-bg: #323539; - --bs-table-hover-color: #fff; - color: #fff; - border-color: #373b3e; } - -.table-responsive { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - -@media (max-width: 575.98px) { - .table-responsive-sm { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 767.98px) { - .table-responsive-md { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 991.98px) { - .table-responsive-lg { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 1199.98px) { - .table-responsive-xl { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 1399.98px) { - .table-responsive-xxl { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -.form-label { - margin-bottom: 0.5rem; } - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; } - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; } - -.form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: #6c757d; } - -.form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - appearance: none; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; } } - .form-control[type=\\"file\\"] { - overflow: hidden; } - .form-control[type=\\"file\\"]:not(:disabled):not([readonly]) { - cursor: pointer; } - .form-control:focus { - color: #212529; - background-color: #fff; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-control::-webkit-date-and-time-value { - height: 1.5em; } - .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - .form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control::file-selector-button { - transition: none; } } - .form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: #dde0e3; } - .form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control::-webkit-file-upload-button { - transition: none; } } - .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: #dde0e3; } - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } - -.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - -.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - -textarea.form-control { - min-height: calc(1.5em + 0.75rem + 2px); } - -textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); } - -textarea.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); } - -.form-control-color { - width: 3rem; - height: auto; - padding: 0.375rem; } - .form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; } - .form-control-color::-moz-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .form-control-color::-webkit-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - -.form-select { - display: block; - width: 100%; - padding: 0.375rem 2.25rem 0.375rem 0.75rem; - -moz-padding-start: calc(0.75rem - 3px); - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .form-select { - transition: none; } } - .form-select:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-select[multiple], .form-select[size]:not([size=\\"1\\"]) { - padding-right: 0.75rem; - background-image: none; } - .form-select:disabled { - background-color: #e9ecef; } - .form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #212529; } - -.form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - -.form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - -.form-check { - display: block; - min-height: 1.5rem; - padding-left: 1.5em; - margin-bottom: 0.125rem; } - .form-check .form-check-input { - float: left; - margin-left: -1.5em; } - -.form-check-input { - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - background-color: #fff; - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: 1px solid rgba(0, 0, 0, 0.25); - appearance: none; - color-adjust: exact; } - .form-check-input[type=\\"checkbox\\"] { - border-radius: 0.25em; } - .form-check-input[type=\\"radio\\"] { - border-radius: 50%; } - .form-check-input:active { - filter: brightness(90%); } - .form-check-input:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-check-input:checked { - background-color: #0d6efd; - border-color: #0d6efd; } - .form-check-input:checked[type=\\"checkbox\\"] { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\\"); } - .form-check-input:checked[type=\\"radio\\"] { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\\"); } - .form-check-input[type=\\"checkbox\\"]:indeterminate { - background-color: #0d6efd; - border-color: #0d6efd; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\\"); } - .form-check-input:disabled { - pointer-events: none; - filter: none; - opacity: 0.5; } - .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { - opacity: 0.5; } - -.form-switch { - padding-left: 2.5em; } - .form-switch .form-check-input { - width: 2em; - margin-left: -2.5em; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\\"); - background-position: left center; - border-radius: 2em; - transition: background-position 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-switch .form-check-input { - transition: none; } } - .form-switch .form-check-input:focus { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\\"); } - .form-switch .form-check-input:checked { - background-position: right center; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\\"); } - -.form-check-inline { - display: inline-block; - margin-right: 1rem; } - -.btn-check { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - .btn-check[disabled] + .btn, .btn-check:disabled + .btn { - pointer-events: none; - filter: none; - opacity: 0.65; } - -.form-range { - width: 100%; - height: 1.5rem; - padding: 0; - background-color: transparent; - appearance: none; } - .form-range:focus { - outline: 0; } - .form-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-range::-moz-focus-outer { - border: 0; } - .form-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .form-range::-webkit-slider-thumb { - transition: none; } } - .form-range::-webkit-slider-thumb:active { - background-color: #b6d4fe; } - .form-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .form-range::-moz-range-thumb { - transition: none; } } - .form-range::-moz-range-thumb:active { - background-color: #b6d4fe; } - .form-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .form-range:disabled { - pointer-events: none; } - .form-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .form-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - -.form-floating { - position: relative; } - .form-floating > .form-control, - .form-floating > .form-select { - height: calc(3.5rem + 2px); - line-height: 1.25; } - .form-floating > label { - position: absolute; - top: 0; - left: 0; - height: 100%; - padding: 1rem 0.75rem; - pointer-events: none; - border: 1px solid transparent; - transform-origin: 0 0; - transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-floating > label { - transition: none; } } - .form-floating > .form-control { - padding: 1rem 0.75rem; } - .form-floating > .form-control::placeholder { - color: transparent; } - .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .form-floating > .form-control:-webkit-autofill { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .form-floating > .form-select { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .form-floating > .form-control:focus ~ label, - .form-floating > .form-control:not(:placeholder-shown) ~ label, - .form-floating > .form-select ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .form-floating > .form-control:-webkit-autofill ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .input-group > .form-control, - .input-group > .form-select { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; } - .input-group > .form-control:focus, - .input-group > .form-select:focus { - z-index: 3; } - .input-group .btn { - position: relative; - z-index: 2; } - .input-group .btn:focus { - z-index: 3; } - -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - -.input-group-lg > .form-control, -.input-group-lg > .form-select, -.input-group-lg > .input-group-text, -.input-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - -.input-group-sm > .form-control, -.input-group-sm > .form-select, -.input-group-sm > .input-group-text, -.input-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - -.input-group-lg > .form-select, -.input-group-sm > .form-select { - padding-right: 3rem; } - -.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), -.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), -.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #198754; } - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(25, 135, 84, 0.9); - border-radius: 0.25rem; } - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; } - -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #198754; - padding-right: calc(1.5em + 0.75rem); - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - -.was-validated .form-select:valid, .form-select.is-valid { - border-color: #198754; } - .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size=\\"1\\"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size=\\"1\\"] { - padding-right: 4.125rem; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-position: right 0.75rem center, center right 2.25rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-select:valid:focus, .form-select.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - -.was-validated .form-check-input:valid, .form-check-input.is-valid { - border-color: #198754; } - .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { - background-color: #198754; } - .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #198754; } - -.form-check-inline .form-check-input ~ .valid-feedback { - margin-left: .5em; } - -.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated -.input-group .form-select:valid, -.input-group .form-select.is-valid { - z-index: 1; } - .was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated - .input-group .form-select:valid:focus, - .input-group .form-select.is-valid:focus { - z-index: 3; } - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #dc3545; } - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; } - -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - -.was-validated .form-select:invalid, .form-select.is-invalid { - border-color: #dc3545; } - .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size=\\"1\\"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size=\\"1\\"] { - padding-right: 4.125rem; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-position: right 0.75rem center, center right 2.25rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - -.was-validated .form-check-input:invalid, .form-check-input.is-invalid { - border-color: #dc3545; } - .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { - background-color: #dc3545; } - .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } - -.form-check-inline .form-check-input ~ .invalid-feedback { - margin-left: .5em; } - -.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated -.input-group .form-select:invalid, -.input-group .form-select.is-invalid { - z-index: 2; } - .was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated - .input-group .form-select:invalid:focus, - .input-group .form-select.is-invalid:focus { - z-index: 3; } - -.btn { - display: inline-block; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - text-decoration: none; - vertical-align: middle; - cursor: pointer; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .btn { - transition: none; } } - .btn:hover { - color: #212529; } - .btn-check:focus + .btn, .btn:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .btn:disabled, .btn.disabled, - fieldset:disabled .btn { - pointer-events: none; - opacity: 0.65; } - -.btn-primary { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-primary:hover { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; } - .btn-check:focus + .btn-primary, .btn-primary:focus { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .btn-check:checked + .btn-primary, - .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, - .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0a58ca; - border-color: #0a53be; } - .btn-check:checked + .btn-primary:focus, - .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, - .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .btn-primary:disabled, .btn-primary.disabled { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:hover { - color: #fff; - background-color: #5c636a; - border-color: #565e64; } - .btn-check:focus + .btn-secondary, .btn-secondary:focus { - color: #fff; - background-color: #5c636a; - border-color: #565e64; - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-check:checked + .btn-secondary, - .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, - .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #565e64; - border-color: #51585e; } - .btn-check:checked + .btn-secondary:focus, - .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, - .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-secondary:disabled, .btn-secondary.disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - -.btn-success { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-success:hover { - color: #fff; - background-color: #157347; - border-color: #146c43; } - .btn-check:focus + .btn-success, .btn-success:focus { - color: #fff; - background-color: #157347; - border-color: #146c43; - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-check:checked + .btn-success, - .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, - .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #146c43; - border-color: #13653f; } - .btn-check:checked + .btn-success:focus, - .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, - .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-success:disabled, .btn-success.disabled { - color: #fff; - background-color: #198754; - border-color: #198754; } - -.btn-info { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-info:hover { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; } - .btn-check:focus + .btn-info, .btn-info:focus { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-check:checked + .btn-info, - .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, - .show > .btn-info.dropdown-toggle { - color: #000; - background-color: #3dd5f3; - border-color: #25cff2; } - .btn-check:checked + .btn-info:focus, - .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, - .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-info:disabled, .btn-info.disabled { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - -.btn-warning { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:hover { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; } - .btn-check:focus + .btn-warning, .btn-warning:focus { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-check:checked + .btn-warning, - .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, - .show > .btn-warning.dropdown-toggle { - color: #000; - background-color: #ffcd39; - border-color: #ffc720; } - .btn-check:checked + .btn-warning:focus, - .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, - .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-warning:disabled, .btn-warning.disabled { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:hover { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; } - .btn-check:focus + .btn-danger, .btn-danger:focus { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-check:checked + .btn-danger, - .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, - .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b02a37; - border-color: #a52834; } - .btn-check:checked + .btn-danger:focus, - .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, - .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-danger:disabled, .btn-danger.disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - -.btn-light { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:hover { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:focus + .btn-light, .btn-light:focus { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-check:checked + .btn-light, - .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, - .show > .btn-light.dropdown-toggle { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:checked + .btn-light:focus, - .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, - .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-light:disabled, .btn-light.disabled { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - -.btn-dark { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-dark:hover { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; } - .btn-check:focus + .btn-dark, .btn-dark:focus { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-check:checked + .btn-dark, - .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, - .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1a1e21; - border-color: #191c1f; } - .btn-check:checked + .btn-dark:focus, - .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, - .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-dark:disabled, .btn-dark.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; } - -.btn-outline-primary { - color: #0d6efd; - border-color: #0d6efd; } - .btn-outline-primary:hover { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .btn-check:checked + .btn-outline-primary, - .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:checked + .btn-outline-primary:focus, - .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .btn-outline-primary:disabled, .btn-outline-primary.disabled { - color: #0d6efd; - background-color: transparent; } - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-check:checked + .btn-outline-secondary, - .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:checked + .btn-outline-secondary:focus, - .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-outline-secondary:disabled, .btn-outline-secondary.disabled { - color: #6c757d; - background-color: transparent; } - -.btn-outline-success { - color: #198754; - border-color: #198754; } - .btn-outline-success:hover { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:focus + .btn-outline-success, .btn-outline-success:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-check:checked + .btn-outline-success, - .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:checked + .btn-outline-success:focus, - .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-outline-success:disabled, .btn-outline-success.disabled { - color: #198754; - background-color: transparent; } - -.btn-outline-info { - color: #0dcaf0; - border-color: #0dcaf0; } - .btn-outline-info:hover { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:focus + .btn-outline-info, .btn-outline-info:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-check:checked + .btn-outline-info, - .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:checked + .btn-outline-info:focus, - .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-outline-info:disabled, .btn-outline-info.disabled { - color: #0dcaf0; - background-color: transparent; } - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:hover { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-check:checked + .btn-outline-warning, - .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:checked + .btn-outline-warning:focus, - .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-outline-warning:disabled, .btn-outline-warning.disabled { - color: #ffc107; - background-color: transparent; } - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-check:checked + .btn-outline-danger, - .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:checked + .btn-outline-danger:focus, - .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-outline-danger:disabled, .btn-outline-danger.disabled { - color: #dc3545; - background-color: transparent; } - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:hover { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:focus + .btn-outline-light, .btn-outline-light:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-check:checked + .btn-outline-light, - .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:checked + .btn-outline-light:focus, - .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-outline-light:disabled, .btn-outline-light.disabled { - color: #f8f9fa; - background-color: transparent; } - -.btn-outline-dark { - color: #212529; - border-color: #212529; } - .btn-outline-dark:hover { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-check:checked + .btn-outline-dark, - .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:checked + .btn-outline-dark:focus, - .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-outline-dark:disabled, .btn-outline-dark.disabled { - color: #212529; - background-color: transparent; } - -.btn-link { - font-weight: 400; - color: #0d6efd; - text-decoration: underline; } - .btn-link:hover { - color: #0a58ca; } - .btn-link:disabled, .btn-link.disabled { - color: #6c757d; } - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - -.fade { - transition: opacity 0.15s linear; } - @media (prefers-reduced-motion: reduce) { - .fade { - transition: none; } } - .fade:not(.show) { - opacity: 0; } - -.collapse:not(.show) { - display: none; } - -.collapsing { - height: 0; - overflow: hidden; - transition: height 0.35s ease; } - @media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; } } - .collapsing.collapse-horizontal { - width: 0; - height: auto; - transition: width 0.35s ease; } - @media (prefers-reduced-motion: reduce) { - .collapsing.collapse-horizontal { - transition: none; } } - -.dropup, -.dropend, -.dropdown, -.dropstart { - position: relative; } - -.dropdown-toggle { - white-space: nowrap; } - .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropdown-menu { - position: absolute; - z-index: 1000; - display: none; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .dropdown-menu[data-bs-popper] { - top: 100%; - left: 0; - margin-top: 0.125rem; } - -.dropdown-menu-start { - --bs-position: start; } - .dropdown-menu-start[data-bs-popper] { - right: auto; - left: 0; } - -.dropdown-menu-end { - --bs-position: end; } - .dropdown-menu-end[data-bs-popper] { - right: 0; - left: auto; } - -@media (min-width: 576px) { - .dropdown-menu-sm-start { - --bs-position: start; } - .dropdown-menu-sm-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-sm-end { - --bs-position: end; } - .dropdown-menu-sm-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 768px) { - .dropdown-menu-md-start { - --bs-position: start; } - .dropdown-menu-md-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-md-end { - --bs-position: end; } - .dropdown-menu-md-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 992px) { - .dropdown-menu-lg-start { - --bs-position: start; } - .dropdown-menu-lg-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-lg-end { - --bs-position: end; } - .dropdown-menu-lg-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 1200px) { - .dropdown-menu-xl-start { - --bs-position: start; } - .dropdown-menu-xl-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-xl-end { - --bs-position: end; } - .dropdown-menu-xl-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 1400px) { - .dropdown-menu-xxl-start { - --bs-position: start; } - .dropdown-menu-xxl-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-xxl-end { - --bs-position: end; } - .dropdown-menu-xxl-end[data-bs-popper] { - right: 0; - left: auto; } } - -.dropup .dropdown-menu[data-bs-popper] { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropend .dropdown-menu[data-bs-popper] { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - -.dropend .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } - -.dropend .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropend .dropdown-toggle::after { - vertical-align: 0; } - -.dropstart .dropdown-menu[data-bs-popper] { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } - -.dropstart .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; } - -.dropstart .dropdown-toggle::after { - display: none; } - -.dropstart .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - -.dropstart .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropstart .dropdown-toggle::before { - vertical-align: 0; } - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid rgba(0, 0, 0, 0.15); } - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - text-decoration: none; - white-space: nowrap; - background-color: transparent; - border: 0; } - .dropdown-item:hover, .dropdown-item:focus { - color: #1e2125; - background-color: #e9ecef; } - .dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #0d6efd; } - .dropdown-item.disabled, .dropdown-item:disabled { - color: #adb5bd; - pointer-events: none; - background-color: transparent; } - -.dropdown-menu.show { - display: block; } - -.dropdown-header { - display: block; - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - -.dropdown-item-text { - display: block; - padding: 0.25rem 1rem; - color: #212529; } - -.dropdown-menu-dark { - color: #dee2e6; - background-color: #343a40; - border-color: rgba(0, 0, 0, 0.15); } - .dropdown-menu-dark .dropdown-item { - color: #dee2e6; } - .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus { - color: #fff; - background-color: rgba(255, 255, 255, 0.15); } - .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active { - color: #fff; - background-color: #0d6efd; } - .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled { - color: #adb5bd; } - .dropdown-menu-dark .dropdown-divider { - border-color: rgba(0, 0, 0, 0.15); } - .dropdown-menu-dark .dropdown-item-text { - color: #dee2e6; } - .dropdown-menu-dark .dropdown-header { - color: #adb5bd; } - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .btn-group > .btn-check:checked + .btn, - .btn-group > .btn-check:focus + .btn, - .btn-group > .btn:hover, - .btn-group > .btn:focus, - .btn-group > .btn:active, - .btn-group > .btn.active, - .btn-group-vertical > .btn-check:checked + .btn, - .btn-group-vertical > .btn-check:focus + .btn, - .btn-group-vertical > .btn:hover, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 1; } - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .btn-toolbar .input-group { - width: auto; } - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.btn-group > .btn:nth-child(n + 3), -.btn-group > :not(.btn-check) + .btn, -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .dropdown-toggle-split::after, - .dropup .dropdown-toggle-split::after, - .dropend .dropdown-toggle-split::after { - margin-left: 0; } - .dropstart .dropdown-toggle-split::before { - margin-right: 0; } - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .btn-group-vertical > .btn, - .btn-group-vertical > .btn-group { - width: 100%; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .btn-group-vertical > .btn ~ .btn, - .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - -.nav-link { - display: block; - padding: 0.5rem 1rem; - color: #0d6efd; - text-decoration: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .nav-link { - transition: none; } } - .nav-link:hover, .nav-link:focus { - color: #0a58ca; } - .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } - -.nav-tabs { - border-bottom: 1px solid #dee2e6; } - .nav-tabs .nav-link { - margin-bottom: -1px; - background: none; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; - isolation: isolate; } - .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .nav-tabs .nav-link.active, - .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.nav-pills .nav-link { - background: none; - border: 0; - border-radius: 0.25rem; } - -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #0d6efd; } - -.nav-fill > .nav-link, -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } - -.nav-justified > .nav-link, -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } - -.nav-fill .nav-item .nav-link, -.nav-justified .nav-item .nav-link { - width: 100%; } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .navbar > .container, - .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl { - display: flex; - flex-wrap: inherit; - align-items: center; - justify-content: space-between; } - -.navbar-brand { - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - text-decoration: none; - white-space: nowrap; } - -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .navbar-nav .dropdown-menu { - position: static; } - -.navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; } - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; - transition: box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .navbar-toggler { - transition: none; } } - .navbar-toggler:hover { - text-decoration: none; } - .navbar-toggler:focus { - text-decoration: none; - outline: 0; - box-shadow: 0 0 0 0.25rem; } - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-repeat: no-repeat; - background-position: center; - background-size: 100%; } - -.navbar-nav-scroll { - max-height: var(--bs-scroll-height, 75vh); - overflow-y: auto; } - -@media (min-width: 576px) { - .navbar-expand-sm { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-sm .navbar-toggler { - display: none; } - .navbar-expand-sm .offcanvas-header { - display: none; } - .navbar-expand-sm .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-sm .offcanvas-top, - .navbar-expand-sm .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-sm .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 768px) { - .navbar-expand-md { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-md .navbar-nav { - flex-direction: row; } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-md .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-md .navbar-toggler { - display: none; } - .navbar-expand-md .offcanvas-header { - display: none; } - .navbar-expand-md .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-md .offcanvas-top, - .navbar-expand-md .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-md .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 992px) { - .navbar-expand-lg { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-lg .navbar-toggler { - display: none; } - .navbar-expand-lg .offcanvas-header { - display: none; } - .navbar-expand-lg .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-lg .offcanvas-top, - .navbar-expand-lg .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-lg .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-xl .navbar-toggler { - display: none; } - .navbar-expand-xl .offcanvas-header { - display: none; } - .navbar-expand-xl .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-xl .offcanvas-top, - .navbar-expand-xl .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-xl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 1400px) { - .navbar-expand-xxl { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-xxl .navbar-nav { - flex-direction: row; } - .navbar-expand-xxl .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-xxl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-xxl .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-xxl .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-xxl .navbar-toggler { - display: none; } - .navbar-expand-xxl .offcanvas-header { - display: none; } - .navbar-expand-xxl .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-xxl .offcanvas-top, - .navbar-expand-xxl .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-xxl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -.navbar-expand { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand .navbar-nav { - flex-direction: row; } - .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand .navbar-nav-scroll { - overflow: visible; } - .navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand .navbar-toggler { - display: none; } - .navbar-expand .offcanvas-header { - display: none; } - .navbar-expand .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand .offcanvas-top, - .navbar-expand .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.55); } - .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } - -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.55); - border-color: rgba(0, 0, 0, 0.1); } - -.navbar-light .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.55); } - .navbar-light .navbar-text a, - .navbar-light .navbar-text a:hover, - .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } - -.navbar-dark .navbar-brand { - color: #fff; } - .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; } - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.55); } - .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(255, 255, 255, 0.1); } - -.navbar-dark .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.55); } - .navbar-dark .navbar-text a, - .navbar-dark .navbar-text a:hover, - .navbar-dark .navbar-text a:focus { - color: #fff; } - -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .card > hr { - margin-right: 0; - margin-left: 0; } - .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .card > .card-header + .list-group, - .card > .list-group + .card-footer { - border-top: 0; } - -.card-body { - flex: 1 1 auto; - padding: 1rem 1rem; } - -.card-title { - margin-bottom: 0.5rem; } - -.card-subtitle { - margin-top: -0.25rem; - margin-bottom: 0; } - -.card-text:last-child { - margin-bottom: 0; } - -.card-link + .card-link { - margin-left: 1rem; } - -.card-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } - -.card-footer { - padding: 0.5rem 1rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } - -.card-header-tabs { - margin-right: -0.5rem; - margin-bottom: -0.5rem; - margin-left: -0.5rem; - border-bottom: 0; } - -.card-header-pills { - margin-right: -0.5rem; - margin-left: -0.5rem; } - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1rem; - border-radius: calc(0.25rem - 1px); } - -.card-img, -.card-img-top, -.card-img-bottom { - width: 100%; } - -.card-img, -.card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - -.card-group > .card { - margin-bottom: 0.75rem; } - -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-top, - .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-bottom, - .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-top, - .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-bottom, - .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - -.accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 1.25rem; - font-size: 1rem; - color: #212529; - text-align: left; - background-color: #fff; - border: 0; - border-radius: 0; - overflow-anchor: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .accordion-button { - transition: none; } } - .accordion-button:not(.collapsed) { - color: #0c63e4; - background-color: #e7f1ff; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); } - .accordion-button:not(.collapsed)::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); - transform: rotate(-180deg); } - .accordion-button::after { - flex-shrink: 0; - width: 1.25rem; - height: 1.25rem; - margin-left: auto; - content: \\"\\"; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-size: 1.25rem; - transition: transform 0.2s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .accordion-button::after { - transition: none; } } - .accordion-button:hover { - z-index: 2; } - .accordion-button:focus { - z-index: 3; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - -.accordion-header { - margin-bottom: 0; } - -.accordion-item { - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .accordion-item:first-of-type { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .accordion-item:first-of-type .accordion-button { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .accordion-item:not(:first-of-type) { - border-top: 0; } - .accordion-item:last-of-type { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .accordion-item:last-of-type .accordion-collapse { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - -.accordion-body { - padding: 1rem 1.25rem; } - -.accordion-flush .accordion-collapse { - border-width: 0; } - -.accordion-flush .accordion-item { - border-right: 0; - border-left: 0; - border-radius: 0; } - .accordion-flush .accordion-item:first-child { - border-top: 0; } - .accordion-flush .accordion-item:last-child { - border-bottom: 0; } - .accordion-flush .accordion-item .accordion-button { - border-radius: 0; } - -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0 0; - margin-bottom: 1rem; - list-style: none; } - -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; } - .breadcrumb-item + .breadcrumb-item::before { - float: left; - padding-right: 0.5rem; - color: #6c757d; - content: var(--bs-breadcrumb-divider, \\"/\\") /* rtl: var(--bs-breadcrumb-divider, \\"/\\") */; } - -.breadcrumb-item.active { - color: #6c757d; } - -.pagination { - display: flex; - padding-left: 0; - list-style: none; } - -.page-link { - position: relative; - display: block; - color: #0d6efd; - text-decoration: none; - background-color: #fff; - border: 1px solid #dee2e6; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .page-link { - transition: none; } } - .page-link:hover { - z-index: 2; - color: #0a58ca; - background-color: #e9ecef; - border-color: #dee2e6; } - .page-link:focus { - z-index: 3; - color: #0a58ca; - background-color: #e9ecef; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - -.page-item:not(:first-child) .page-link { - margin-left: -1px; } - -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - background-color: #fff; - border-color: #dee2e6; } - -.page-link { - padding: 0.375rem 0.75rem; } - -.page-item:first-child .page-link { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; } - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; } - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; } - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; } - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; } - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; } - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; } - -.badge { - display: inline-block; - padding: 0.35em 0.65em; - font-size: 0.75em; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; } - .badge:empty { - display: none; } - -.btn .badge { - position: relative; - top: -1px; } - -.alert { - position: relative; - padding: 1rem 1rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; } - -.alert-heading { - color: inherit; } - -.alert-link { - font-weight: 700; } - -.alert-dismissible { - padding-right: 3rem; } - .alert-dismissible .btn-close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: 1.25rem 1rem; } - -.alert-primary { - color: #084298; - background-color: #cfe2ff; - border-color: #b6d4fe; } - .alert-primary .alert-link { - color: #06357a; } - -.alert-secondary { - color: #41464b; - background-color: #e2e3e5; - border-color: #d3d6d8; } - .alert-secondary .alert-link { - color: #34383c; } - -.alert-success { - color: #0f5132; - background-color: #d1e7dd; - border-color: #badbcc; } - .alert-success .alert-link { - color: #0c4128; } - -.alert-info { - color: #055160; - background-color: #cff4fc; - border-color: #b6effb; } - .alert-info .alert-link { - color: #04414d; } - -.alert-warning { - color: #664d03; - background-color: #fff3cd; - border-color: #ffecb5; } - .alert-warning .alert-link { - color: #523e02; } - -.alert-danger { - color: #842029; - background-color: #f8d7da; - border-color: #f5c2c7; } - .alert-danger .alert-link { - color: #6a1a21; } - -.alert-light { - color: #636464; - background-color: #fefefe; - border-color: #fdfdfe; } - .alert-light .alert-link { - color: #4f5050; } - -.alert-dark { - color: #141619; - background-color: #d3d3d4; - border-color: #bcbebf; } - .alert-dark .alert-link { - color: #101214; } - -@keyframes progress-bar-stripes { - 0% { - background-position-x: 1rem; } } - -.progress { - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; } - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #0d6efd; - transition: width 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; } } - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; } - -.progress-bar-animated { - animation: 1s linear infinite progress-bar-stripes; } - @media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; } } - -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } - -.list-group-numbered { - list-style-type: none; - counter-reset: section; } - .list-group-numbered > li::before { - content: counters(section, \\".\\") \\". \\"; - counter-increment: section; } - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } - -.list-group-item { - position: relative; - display: block; - padding: 0.5rem 1rem; - color: #212529; - text-decoration: none; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .list-group-item + .list-group-item { - border-top-width: 0; } - .list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } - -.list-group-horizontal { - flex-direction: row; } - .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } - -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 1400px) { - .list-group-horizontal-xxl { - flex-direction: row; } - .list-group-horizontal-xxl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-xxl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-xxl > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-xxl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -.list-group-flush { - border-radius: 0; } - .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } - -.list-group-item-primary { - color: #084298; - background-color: #cfe2ff; } - .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #084298; - background-color: #bacbe6; } - .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #084298; - border-color: #084298; } - -.list-group-item-secondary { - color: #41464b; - background-color: #e2e3e5; } - .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #41464b; - background-color: #cbccce; } - .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #41464b; - border-color: #41464b; } - -.list-group-item-success { - color: #0f5132; - background-color: #d1e7dd; } - .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #0f5132; - background-color: #bcd0c7; } - .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #0f5132; - border-color: #0f5132; } - -.list-group-item-info { - color: #055160; - background-color: #cff4fc; } - .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #055160; - background-color: #badce3; } - .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #055160; - border-color: #055160; } - -.list-group-item-warning { - color: #664d03; - background-color: #fff3cd; } - .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #664d03; - background-color: #e6dbb9; } - .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #664d03; - border-color: #664d03; } - -.list-group-item-danger { - color: #842029; - background-color: #f8d7da; } - .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #842029; - background-color: #dfc2c4; } - .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #842029; - border-color: #842029; } - -.list-group-item-light { - color: #636464; - background-color: #fefefe; } - .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #636464; - background-color: #e5e5e5; } - .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #636464; - border-color: #636464; } - -.list-group-item-dark { - color: #141619; - background-color: #d3d3d4; } - .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #141619; - background-color: #bebebf; } - .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #141619; - border-color: #141619; } - -.btn-close { - box-sizing: content-box; - width: 1em; - height: 1em; - padding: 0.25em 0.25em; - color: #000; - background: transparent url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\\") center/1em auto no-repeat; - border: 0; - border-radius: 0.25rem; - opacity: 0.5; } - .btn-close:hover { - color: #000; - text-decoration: none; - opacity: 0.75; } - .btn-close:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); - opacity: 1; } - .btn-close:disabled, .btn-close.disabled { - pointer-events: none; - user-select: none; - opacity: 0.25; } - -.btn-close-white { - filter: invert(1) grayscale(100%) brightness(200%); } - -.toast { - width: 350px; - max-width: 100%; - font-size: 0.875rem; - pointer-events: auto; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .toast.showing { - opacity: 0; } - .toast:not(.show) { - display: none; } - -.toast-container { - width: max-content; - max-width: 100%; - pointer-events: none; } - .toast-container > :not(:last-child) { - margin-bottom: 0.75rem; } - -.toast-header { - display: flex; - align-items: center; - padding: 0.5rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .toast-header .btn-close { - margin-right: -0.375rem; - margin-left: 0.75rem; } - -.toast-body { - padding: 0.75rem; - word-wrap: break-word; } - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1055; - display: none; - width: 100%; - height: 100%; - overflow-x: hidden; - overflow-y: auto; - outline: 0; } - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; } - .modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); } - @media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; } } - .modal.show .modal-dialog { - transform: none; } - .modal.modal-static .modal-dialog { - transform: scale(1.02); } - -.modal-dialog-scrollable { - height: calc(100% - 1rem); } - .modal-dialog-scrollable .modal-content { - max-height: 100%; - overflow: hidden; } - .modal-dialog-scrollable .modal-body { - overflow-y: auto; } - -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); } - -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; } - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - width: 100vw; - height: 100vh; - background-color: #000; } - .modal-backdrop.fade { - opacity: 0; } - .modal-backdrop.show { - opacity: 0.5; } - -.modal-header { - display: flex; - flex-shrink: 0; - align-items: center; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .modal-header .btn-close { - padding: 0.5rem 0.5rem; - margin: -0.5rem -0.5rem -0.5rem auto; } - -.modal-title { - margin-bottom: 0; - line-height: 1.5; } - -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; } - -.modal-footer { - display: flex; - flex-wrap: wrap; - flex-shrink: 0; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(0.3rem - 1px); - border-bottom-left-radius: calc(0.3rem - 1px); } - .modal-footer > * { - margin: 0.25rem; } - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; } - .modal-dialog-scrollable { - height: calc(100% - 3.5rem); } - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); } - .modal-sm { - max-width: 300px; } } - -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; } } - -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; } } - -.modal-fullscreen { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen .modal-header { - border-radius: 0; } - .modal-fullscreen .modal-body { - overflow-y: auto; } - .modal-fullscreen .modal-footer { - border-radius: 0; } - -@media (max-width: 575.98px) { - .modal-fullscreen-sm-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-sm-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-sm-down .modal-header { - border-radius: 0; } - .modal-fullscreen-sm-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-sm-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 767.98px) { - .modal-fullscreen-md-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-md-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-md-down .modal-header { - border-radius: 0; } - .modal-fullscreen-md-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-md-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 991.98px) { - .modal-fullscreen-lg-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-lg-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-lg-down .modal-header { - border-radius: 0; } - .modal-fullscreen-lg-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-lg-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 1199.98px) { - .modal-fullscreen-xl-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-xl-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-xl-down .modal-header { - border-radius: 0; } - .modal-fullscreen-xl-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-xl-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 1399.98px) { - .modal-fullscreen-xxl-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-xxl-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-xxl-down .modal-header { - border-radius: 0; } - .modal-fullscreen-xxl-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-xxl-down .modal-footer { - border-radius: 0; } } - -.tooltip { - position: absolute; - z-index: 1080; - display: block; - margin: 0; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .tooltip.show { - opacity: 0.9; } - .tooltip .tooltip-arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .tooltip .tooltip-arrow::before { - position: absolute; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=\\"top\\"] { - padding: 0.4rem 0; } - .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"top\\"] .tooltip-arrow { - bottom: 0; } - .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"top\\"] .tooltip-arrow::before { - top: -1px; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - -.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=\\"right\\"] { - padding: 0 0.4rem; } - .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"right\\"] .tooltip-arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"right\\"] .tooltip-arrow::before { - right: -1px; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - -.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=\\"bottom\\"] { - padding: 0.4rem 0; } - .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"bottom\\"] .tooltip-arrow { - top: 0; } - .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"bottom\\"] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - -.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=\\"left\\"] { - padding: 0 0.4rem; } - .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"left\\"] .tooltip-arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"left\\"] .tooltip-arrow::before { - left: -1px; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } - -.popover { - position: absolute; - top: 0; - left: 0 /* rtl:ignore */; - z-index: 1070; - display: block; - max-width: 276px; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .popover .popover-arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; } - .popover .popover-arrow::before, .popover .popover-arrow::after { - position: absolute; - display: block; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"top\\"] > .popover-arrow { - bottom: calc(-0.5rem - 1px); } - .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"top\\"] > .popover-arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"top\\"] > .popover-arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - -.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"right\\"] > .popover-arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; } - .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"right\\"] > .popover-arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"right\\"] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - -.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] > .popover-arrow { - top: calc(-0.5rem - 1px); } - .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - -.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: \\"\\"; - border-bottom: 1px solid #f0f0f0; } - -.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"left\\"] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; } - .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"left\\"] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"left\\"] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } - -.popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .popover-header:empty { - display: none; } - -.popover-body { - padding: 1rem 1rem; - color: #212529; } - -.carousel { - position: relative; } - -.carousel.pointer-event { - touch-action: pan-y; } - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; } - .carousel-inner::after { - display: block; - clear: both; - content: \\"\\"; } - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; } } - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; } - -/* rtl:begin:ignore */ -.carousel-item-next:not(.carousel-item-start), -.active.carousel-item-end { - transform: translateX(100%); } - -.carousel-item-prev:not(.carousel-item-end), -.active.carousel-item-start { - transform: translateX(-100%); } - -/* rtl:end:ignore */ -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; } - -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-start, -.carousel-fade .carousel-item-prev.carousel-item-end { - z-index: 1; - opacity: 1; } - -.carousel-fade .active.carousel-item-start, -.carousel-fade .active.carousel-item-end { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; } - @media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-start, - .carousel-fade .active.carousel-item-end { - transition: none; } } - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - padding: 0; - color: #fff; - text-align: center; - background: none; - border: 0; - opacity: 0.5; - transition: opacity 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; } } - .carousel-control-prev:hover, .carousel-control-prev:focus, - .carousel-control-next:hover, - .carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; } - -.carousel-control-prev { - left: 0; } - -.carousel-control-next { - right: 0; } - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 2rem; - height: 2rem; - background-repeat: no-repeat; - background-position: 50%; - background-size: 100% 100%; } - -/* rtl:options: { - \\"autoRename\\": true, - \\"stringMap\\":[ { - \\"name\\" : \\"prev-next\\", - \\"search\\" : \\"prev\\", - \\"replace\\" : \\"next\\" - } ] -} */ -.carousel-control-prev-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\\"); } - -.carousel-control-next-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); } - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 2; - display: flex; - justify-content: center; - padding: 0; - margin-right: 15%; - margin-bottom: 1rem; - margin-left: 15%; - list-style: none; } - .carousel-indicators [data-bs-target] { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - padding: 0; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border: 0; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: 0.5; - transition: opacity 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-indicators [data-bs-target] { - transition: none; } } - .carousel-indicators .active { - opacity: 1; } - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 1.25rem; - left: 15%; - padding-top: 1.25rem; - padding-bottom: 1.25rem; - color: #fff; - text-align: center; } - -.carousel-dark .carousel-control-prev-icon, -.carousel-dark .carousel-control-next-icon { - filter: invert(1) grayscale(100); } - -.carousel-dark .carousel-indicators [data-bs-target] { - background-color: #000; } - -.carousel-dark .carousel-caption { - color: #000; } - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; } } - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; } - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } - -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; } - -.spinner-grow-sm { - width: 1rem; - height: 1rem; } - -@media (prefers-reduced-motion: reduce) { - .spinner-border, - .spinner-grow { - animation-duration: 1.5s; } } - -.offcanvas { - position: fixed; - bottom: 0; - z-index: 1045; - display: flex; - flex-direction: column; - max-width: 100%; - visibility: hidden; - background-color: #fff; - background-clip: padding-box; - outline: 0; - transition: transform 0.3s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .offcanvas { - transition: none; } } - -.offcanvas-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; } - .offcanvas-backdrop.fade { - opacity: 0; } - .offcanvas-backdrop.show { - opacity: 0.5; } - -.offcanvas-header { - display: flex; - align-items: center; - justify-content: space-between; - padding: 1rem 1rem; } - .offcanvas-header .btn-close { - padding: 0.5rem 0.5rem; - margin-top: -0.5rem; - margin-right: -0.5rem; - margin-bottom: -0.5rem; } - -.offcanvas-title { - margin-bottom: 0; - line-height: 1.5; } - -.offcanvas-body { - flex-grow: 1; - padding: 1rem 1rem; - overflow-y: auto; } - -.offcanvas-start { - top: 0; - left: 0; - width: 400px; - border-right: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(-100%); } - -.offcanvas-end { - top: 0; - right: 0; - width: 400px; - border-left: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(100%); } - -.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(-100%); } - -.offcanvas-bottom { - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-top: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(100%); } - -.offcanvas.show { - transform: none; } - -.placeholder { - display: inline-block; - min-height: 1em; - vertical-align: middle; - cursor: wait; - background-color: currentColor; - opacity: 0.5; } - .placeholder.btn::before { - display: inline-block; - content: \\"\\"; } - -.placeholder-xs { - min-height: .6em; } - -.placeholder-sm { - min-height: .8em; } - -.placeholder-lg { - min-height: 1.2em; } - -.placeholder-glow .placeholder { - animation: placeholder-glow 2s ease-in-out infinite; } - -@keyframes placeholder-glow { - 50% { - opacity: 0.2; } } - -.placeholder-wave { - mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); - mask-size: 200% 100%; - animation: placeholder-wave 2s linear infinite; } - -@keyframes placeholder-wave { - 100% { - mask-position: -200% 0%; } } - -.clearfix::after { - display: block; - clear: both; - content: \\"\\"; } - -.link-primary { - color: #0d6efd; } - .link-primary:hover, .link-primary:focus { - color: #0a58ca; } - -.link-secondary { - color: #6c757d; } - .link-secondary:hover, .link-secondary:focus { - color: #565e64; } - -.link-success { - color: #198754; } - .link-success:hover, .link-success:focus { - color: #146c43; } - -.link-info { - color: #0dcaf0; } - .link-info:hover, .link-info:focus { - color: #3dd5f3; } - -.link-warning { - color: #ffc107; } - .link-warning:hover, .link-warning:focus { - color: #ffcd39; } - -.link-danger { - color: #dc3545; } - .link-danger:hover, .link-danger:focus { - color: #b02a37; } - -.link-light { - color: #f8f9fa; } - .link-light:hover, .link-light:focus { - color: #f9fafb; } - -.link-dark { - color: #212529; } - .link-dark:hover, .link-dark:focus { - color: #1a1e21; } - -.ratio { - position: relative; - width: 100%; } - .ratio::before { - display: block; - padding-top: var(--bs-aspect-ratio); - content: \\"\\"; } - .ratio > * { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; } - -.ratio-1x1 { - --bs-aspect-ratio: 100%; } - -.ratio-4x3 { - --bs-aspect-ratio: calc(3 / 4 * 100%); } - -.ratio-16x9 { - --bs-aspect-ratio: calc(9 / 16 * 100%); } - -.ratio-21x9 { - --bs-aspect-ratio: calc(9 / 21 * 100%); } - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; } - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; } - -.sticky-top { - position: sticky; - top: 0; - z-index: 1020; } - -@media (min-width: 576px) { - .sticky-sm-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 768px) { - .sticky-md-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 992px) { - .sticky-lg-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 1200px) { - .sticky-xl-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 1400px) { - .sticky-xxl-top { - position: sticky; - top: 0; - z-index: 1020; } } - -.hstack { - display: flex; - flex-direction: row; - align-items: center; - align-self: stretch; } - -.vstack { - display: flex; - flex: 1 1 auto; - flex-direction: column; - align-self: stretch; } - -.visually-hidden, -.visually-hidden-focusable:not(:focus):not(:focus-within) { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; } - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - content: \\"\\"; } - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } - -.vr { - display: inline-block; - align-self: stretch; - width: 1px; - min-height: 1em; - background-color: currentColor; - opacity: 0.25; } - -.align-baseline { - vertical-align: baseline !important; } - -.align-top { - vertical-align: top !important; } - -.align-middle { - vertical-align: middle !important; } - -.align-bottom { - vertical-align: bottom !important; } - -.align-text-bottom { - vertical-align: text-bottom !important; } - -.align-text-top { - vertical-align: text-top !important; } - -.float-start { - float: left !important; } - -.float-end { - float: right !important; } - -.float-none { - float: none !important; } - -.opacity-0 { - opacity: 0 !important; } - -.opacity-25 { - opacity: 0.25 !important; } - -.opacity-50 { - opacity: 0.5 !important; } - -.opacity-75 { - opacity: 0.75 !important; } - -.opacity-100 { - opacity: 1 !important; } - -.overflow-auto { - overflow: auto !important; } - -.overflow-hidden { - overflow: hidden !important; } - -.overflow-visible { - overflow: visible !important; } - -.overflow-scroll { - overflow: scroll !important; } - -.d-inline { - display: inline !important; } - -.d-inline-block { - display: inline-block !important; } - -.d-block { - display: block !important; } - -.d-grid { - display: grid !important; } - -.d-table { - display: table !important; } - -.d-table-row { - display: table-row !important; } - -.d-table-cell { - display: table-cell !important; } - -.d-flex { - display: flex !important; } - -.d-inline-flex { - display: inline-flex !important; } - -.d-none { - display: none !important; } - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } - -.shadow-none { - box-shadow: none !important; } - -.position-static { - position: static !important; } - -.position-relative { - position: relative !important; } - -.position-absolute { - position: absolute !important; } - -.position-fixed { - position: fixed !important; } - -.position-sticky { - position: sticky !important; } - -.top-0 { - top: 0 !important; } - -.top-50 { - top: 50% !important; } - -.top-100 { - top: 100% !important; } - -.bottom-0 { - bottom: 0 !important; } - -.bottom-50 { - bottom: 50% !important; } - -.bottom-100 { - bottom: 100% !important; } - -.start-0 { - left: 0 !important; } - -.start-50 { - left: 50% !important; } - -.start-100 { - left: 100% !important; } - -.end-0 { - right: 0 !important; } - -.end-50 { - right: 50% !important; } - -.end-100 { - right: 100% !important; } - -.translate-middle { - transform: translate(-50%, -50%) !important; } - -.translate-middle-x { - transform: translateX(-50%) !important; } - -.translate-middle-y { - transform: translateY(-50%) !important; } - -.border { - border: 1px solid #dee2e6 !important; } - -.border-0 { - border: 0 !important; } - -.border-top { - border-top: 1px solid #dee2e6 !important; } - -.border-top-0 { - border-top: 0 !important; } - -.border-end { - border-right: 1px solid #dee2e6 !important; } - -.border-end-0 { - border-right: 0 !important; } - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; } - -.border-bottom-0 { - border-bottom: 0 !important; } - -.border-start { - border-left: 1px solid #dee2e6 !important; } - -.border-start-0 { - border-left: 0 !important; } - -.border-primary { - border-color: #0d6efd !important; } - -.border-secondary { - border-color: #6c757d !important; } - -.border-success { - border-color: #198754 !important; } - -.border-info { - border-color: #0dcaf0 !important; } - -.border-warning { - border-color: #ffc107 !important; } - -.border-danger { - border-color: #dc3545 !important; } - -.border-light { - border-color: #f8f9fa !important; } - -.border-dark { - border-color: #212529 !important; } - -.border-white { - border-color: #fff !important; } - -.border-1 { - border-width: 1px !important; } - -.border-2 { - border-width: 2px !important; } - -.border-3 { - border-width: 3px !important; } - -.border-4 { - border-width: 4px !important; } - -.border-5 { - border-width: 5px !important; } - -.w-25 { - width: 25% !important; } - -.w-50 { - width: 50% !important; } - -.w-75 { - width: 75% !important; } - -.w-100 { - width: 100% !important; } - -.w-auto { - width: auto !important; } - -.mw-100 { - max-width: 100% !important; } - -.vw-100 { - width: 100vw !important; } - -.min-vw-100 { - min-width: 100vw !important; } - -.h-25 { - height: 25% !important; } - -.h-50 { - height: 50% !important; } - -.h-75 { - height: 75% !important; } - -.h-100 { - height: 100% !important; } - -.h-auto { - height: auto !important; } - -.mh-100 { - max-height: 100% !important; } - -.vh-100 { - height: 100vh !important; } - -.min-vh-100 { - min-height: 100vh !important; } - -.flex-fill { - flex: 1 1 auto !important; } - -.flex-row { - flex-direction: row !important; } - -.flex-column { - flex-direction: column !important; } - -.flex-row-reverse { - flex-direction: row-reverse !important; } - -.flex-column-reverse { - flex-direction: column-reverse !important; } - -.flex-grow-0 { - flex-grow: 0 !important; } - -.flex-grow-1 { - flex-grow: 1 !important; } - -.flex-shrink-0 { - flex-shrink: 0 !important; } - -.flex-shrink-1 { - flex-shrink: 1 !important; } - -.flex-wrap { - flex-wrap: wrap !important; } - -.flex-nowrap { - flex-wrap: nowrap !important; } - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; } - -.gap-0 { - gap: 0 !important; } - -.gap-1 { - gap: 0.25rem !important; } - -.gap-2 { - gap: 0.5rem !important; } - -.gap-3 { - gap: 1rem !important; } - -.gap-4 { - gap: 1.5rem !important; } - -.gap-5 { - gap: 3rem !important; } - -.justify-content-start { - justify-content: flex-start !important; } - -.justify-content-end { - justify-content: flex-end !important; } - -.justify-content-center { - justify-content: center !important; } - -.justify-content-between { - justify-content: space-between !important; } - -.justify-content-around { - justify-content: space-around !important; } - -.justify-content-evenly { - justify-content: space-evenly !important; } - -.align-items-start { - align-items: flex-start !important; } - -.align-items-end { - align-items: flex-end !important; } - -.align-items-center { - align-items: center !important; } - -.align-items-baseline { - align-items: baseline !important; } - -.align-items-stretch { - align-items: stretch !important; } - -.align-content-start { - align-content: flex-start !important; } - -.align-content-end { - align-content: flex-end !important; } - -.align-content-center { - align-content: center !important; } - -.align-content-between { - align-content: space-between !important; } - -.align-content-around { - align-content: space-around !important; } - -.align-content-stretch { - align-content: stretch !important; } - -.align-self-auto { - align-self: auto !important; } - -.align-self-start { - align-self: flex-start !important; } - -.align-self-end { - align-self: flex-end !important; } - -.align-self-center { - align-self: center !important; } - -.align-self-baseline { - align-self: baseline !important; } - -.align-self-stretch { - align-self: stretch !important; } - -.order-first { - order: -1 !important; } - -.order-0 { - order: 0 !important; } - -.order-1 { - order: 1 !important; } - -.order-2 { - order: 2 !important; } - -.order-3 { - order: 3 !important; } - -.order-4 { - order: 4 !important; } - -.order-5 { - order: 5 !important; } - -.order-last { - order: 6 !important; } - -.m-0 { - margin: 0 !important; } - -.m-1 { - margin: 0.25rem !important; } - -.m-2 { - margin: 0.5rem !important; } - -.m-3 { - margin: 1rem !important; } - -.m-4 { - margin: 1.5rem !important; } - -.m-5 { - margin: 3rem !important; } - -.m-auto { - margin: auto !important; } - -.mx-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - -.mx-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - -.mx-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - -.mx-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - -.mx-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - -.mx-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - -.mx-auto { - margin-right: auto !important; - margin-left: auto !important; } - -.my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - -.my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - -.my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - -.my-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - -.mt-0 { - margin-top: 0 !important; } - -.mt-1 { - margin-top: 0.25rem !important; } - -.mt-2 { - margin-top: 0.5rem !important; } - -.mt-3 { - margin-top: 1rem !important; } - -.mt-4 { - margin-top: 1.5rem !important; } - -.mt-5 { - margin-top: 3rem !important; } - -.mt-auto { - margin-top: auto !important; } - -.me-0 { - margin-right: 0 !important; } - -.me-1 { - margin-right: 0.25rem !important; } - -.me-2 { - margin-right: 0.5rem !important; } - -.me-3 { - margin-right: 1rem !important; } - -.me-4 { - margin-right: 1.5rem !important; } - -.me-5 { - margin-right: 3rem !important; } - -.me-auto { - margin-right: auto !important; } - -.mb-0 { - margin-bottom: 0 !important; } - -.mb-1 { - margin-bottom: 0.25rem !important; } - -.mb-2 { - margin-bottom: 0.5rem !important; } - -.mb-3 { - margin-bottom: 1rem !important; } - -.mb-4 { - margin-bottom: 1.5rem !important; } - -.mb-5 { - margin-bottom: 3rem !important; } - -.mb-auto { - margin-bottom: auto !important; } - -.ms-0 { - margin-left: 0 !important; } - -.ms-1 { - margin-left: 0.25rem !important; } - -.ms-2 { - margin-left: 0.5rem !important; } - -.ms-3 { - margin-left: 1rem !important; } - -.ms-4 { - margin-left: 1.5rem !important; } - -.ms-5 { - margin-left: 3rem !important; } - -.ms-auto { - margin-left: auto !important; } - -.p-0 { - padding: 0 !important; } - -.p-1 { - padding: 0.25rem !important; } - -.p-2 { - padding: 0.5rem !important; } - -.p-3 { - padding: 1rem !important; } - -.p-4 { - padding: 1.5rem !important; } - -.p-5 { - padding: 3rem !important; } - -.px-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - -.px-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - -.px-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - -.px-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - -.px-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - -.px-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - -.py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - -.py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - -.py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - -.py-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - -.pt-0 { - padding-top: 0 !important; } - -.pt-1 { - padding-top: 0.25rem !important; } - -.pt-2 { - padding-top: 0.5rem !important; } - -.pt-3 { - padding-top: 1rem !important; } - -.pt-4 { - padding-top: 1.5rem !important; } - -.pt-5 { - padding-top: 3rem !important; } - -.pe-0 { - padding-right: 0 !important; } - -.pe-1 { - padding-right: 0.25rem !important; } - -.pe-2 { - padding-right: 0.5rem !important; } - -.pe-3 { - padding-right: 1rem !important; } - -.pe-4 { - padding-right: 1.5rem !important; } - -.pe-5 { - padding-right: 3rem !important; } - -.pb-0 { - padding-bottom: 0 !important; } - -.pb-1 { - padding-bottom: 0.25rem !important; } - -.pb-2 { - padding-bottom: 0.5rem !important; } - -.pb-3 { - padding-bottom: 1rem !important; } - -.pb-4 { - padding-bottom: 1.5rem !important; } - -.pb-5 { - padding-bottom: 3rem !important; } - -.ps-0 { - padding-left: 0 !important; } - -.ps-1 { - padding-left: 0.25rem !important; } - -.ps-2 { - padding-left: 0.5rem !important; } - -.ps-3 { - padding-left: 1rem !important; } - -.ps-4 { - padding-left: 1.5rem !important; } - -.ps-5 { - padding-left: 3rem !important; } - -.font-monospace { - font-family: var(--bs-font-monospace) !important; } - -.fs-1 { - font-size: calc(1.375rem + 1.5vw) !important; } - -.fs-2 { - font-size: calc(1.325rem + 0.9vw) !important; } - -.fs-3 { - font-size: calc(1.3rem + 0.6vw) !important; } - -.fs-4 { - font-size: calc(1.275rem + 0.3vw) !important; } - -.fs-5 { - font-size: 1.25rem !important; } - -.fs-6 { - font-size: 1rem !important; } - -.fst-italic { - font-style: italic !important; } - -.fst-normal { - font-style: normal !important; } - -.fw-light { - font-weight: 300 !important; } - -.fw-lighter { - font-weight: lighter !important; } - -.fw-normal { - font-weight: 400 !important; } - -.fw-bold { - font-weight: 700 !important; } - -.fw-bolder { - font-weight: bolder !important; } - -.lh-1 { - line-height: 1 !important; } - -.lh-sm { - line-height: 1.25 !important; } - -.lh-base { - line-height: 1.5 !important; } - -.lh-lg { - line-height: 2 !important; } - -.text-start { - text-align: left !important; } - -.text-end { - text-align: right !important; } - -.text-center { - text-align: center !important; } - -.text-decoration-none { - text-decoration: none !important; } - -.text-decoration-underline { - text-decoration: underline !important; } - -.text-decoration-line-through { - text-decoration: line-through !important; } - -.text-lowercase { - text-transform: lowercase !important; } - -.text-uppercase { - text-transform: uppercase !important; } - -.text-capitalize { - text-transform: capitalize !important; } - -.text-wrap { - white-space: normal !important; } - -.text-nowrap { - white-space: nowrap !important; } - -/* rtl:begin:remove */ -.text-break { - word-wrap: break-word !important; - word-break: break-word !important; } - -/* rtl:end:remove */ -.text-primary { - --bs-text-opacity: 1; - color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; } - -.text-secondary { - --bs-text-opacity: 1; - color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; } - -.text-success { - --bs-text-opacity: 1; - color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; } - -.text-info { - --bs-text-opacity: 1; - color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; } - -.text-warning { - --bs-text-opacity: 1; - color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; } - -.text-danger { - --bs-text-opacity: 1; - color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; } - -.text-light { - --bs-text-opacity: 1; - color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; } - -.text-dark { - --bs-text-opacity: 1; - color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; } - -.text-black { - --bs-text-opacity: 1; - color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; } - -.text-white { - --bs-text-opacity: 1; - color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; } - -.text-body { - --bs-text-opacity: 1; - color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; } - -.text-muted { - --bs-text-opacity: 1; - color: #6c757d !important; } - -.text-black-50 { - --bs-text-opacity: 1; - color: rgba(0, 0, 0, 0.5) !important; } - -.text-white-50 { - --bs-text-opacity: 1; - color: rgba(255, 255, 255, 0.5) !important; } - -.text-reset { - --bs-text-opacity: 1; - color: inherit !important; } - -.text-opacity-25 { - --bs-text-opacity: 0.25; } - -.text-opacity-50 { - --bs-text-opacity: 0.5; } - -.text-opacity-75 { - --bs-text-opacity: 0.75; } - -.text-opacity-100 { - --bs-text-opacity: 1; } - -.bg-primary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; } - -.bg-secondary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; } - -.bg-success { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; } - -.bg-info { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; } - -.bg-warning { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; } - -.bg-danger { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; } - -.bg-light { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; } - -.bg-dark { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; } - -.bg-black { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; } - -.bg-white { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; } - -.bg-body { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; } - -.bg-transparent { - --bs-bg-opacity: 1; - background-color: transparent !important; } - -.bg-opacity-10 { - --bs-bg-opacity: 0.1; } - -.bg-opacity-25 { - --bs-bg-opacity: 0.25; } - -.bg-opacity-50 { - --bs-bg-opacity: 0.5; } - -.bg-opacity-75 { - --bs-bg-opacity: 0.75; } - -.bg-opacity-100 { - --bs-bg-opacity: 1; } - -.bg-gradient { - background-image: var(--bs-gradient) !important; } - -.user-select-all { - user-select: all !important; } - -.user-select-auto { - user-select: auto !important; } - -.user-select-none { - user-select: none !important; } - -.pe-none { - pointer-events: none !important; } - -.pe-auto { - pointer-events: auto !important; } - -.rounded { - border-radius: 0.25rem !important; } - -.rounded-0 { - border-radius: 0 !important; } - -.rounded-1 { - border-radius: 0.2rem !important; } - -.rounded-2 { - border-radius: 0.25rem !important; } - -.rounded-3 { - border-radius: 0.3rem !important; } - -.rounded-circle { - border-radius: 50% !important; } - -.rounded-pill { - border-radius: 50rem !important; } - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; } - -.rounded-end { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; } - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } - -.rounded-start { - border-bottom-left-radius: 0.25rem !important; - border-top-left-radius: 0.25rem !important; } - -.visible { - visibility: visible !important; } - -.invisible { - visibility: hidden !important; } - -@media (min-width: 576px) { - .float-sm-start { - float: left !important; } - .float-sm-end { - float: right !important; } - .float-sm-none { - float: none !important; } - .d-sm-inline { - display: inline !important; } - .d-sm-inline-block { - display: inline-block !important; } - .d-sm-block { - display: block !important; } - .d-sm-grid { - display: grid !important; } - .d-sm-table { - display: table !important; } - .d-sm-table-row { - display: table-row !important; } - .d-sm-table-cell { - display: table-cell !important; } - .d-sm-flex { - display: flex !important; } - .d-sm-inline-flex { - display: inline-flex !important; } - .d-sm-none { - display: none !important; } - .flex-sm-fill { - flex: 1 1 auto !important; } - .flex-sm-row { - flex-direction: row !important; } - .flex-sm-column { - flex-direction: column !important; } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; } - .flex-sm-grow-0 { - flex-grow: 0 !important; } - .flex-sm-grow-1 { - flex-grow: 1 !important; } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; } - .flex-sm-wrap { - flex-wrap: wrap !important; } - .flex-sm-nowrap { - flex-wrap: nowrap !important; } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-sm-0 { - gap: 0 !important; } - .gap-sm-1 { - gap: 0.25rem !important; } - .gap-sm-2 { - gap: 0.5rem !important; } - .gap-sm-3 { - gap: 1rem !important; } - .gap-sm-4 { - gap: 1.5rem !important; } - .gap-sm-5 { - gap: 3rem !important; } - .justify-content-sm-start { - justify-content: flex-start !important; } - .justify-content-sm-end { - justify-content: flex-end !important; } - .justify-content-sm-center { - justify-content: center !important; } - .justify-content-sm-between { - justify-content: space-between !important; } - .justify-content-sm-around { - justify-content: space-around !important; } - .justify-content-sm-evenly { - justify-content: space-evenly !important; } - .align-items-sm-start { - align-items: flex-start !important; } - .align-items-sm-end { - align-items: flex-end !important; } - .align-items-sm-center { - align-items: center !important; } - .align-items-sm-baseline { - align-items: baseline !important; } - .align-items-sm-stretch { - align-items: stretch !important; } - .align-content-sm-start { - align-content: flex-start !important; } - .align-content-sm-end { - align-content: flex-end !important; } - .align-content-sm-center { - align-content: center !important; } - .align-content-sm-between { - align-content: space-between !important; } - .align-content-sm-around { - align-content: space-around !important; } - .align-content-sm-stretch { - align-content: stretch !important; } - .align-self-sm-auto { - align-self: auto !important; } - .align-self-sm-start { - align-self: flex-start !important; } - .align-self-sm-end { - align-self: flex-end !important; } - .align-self-sm-center { - align-self: center !important; } - .align-self-sm-baseline { - align-self: baseline !important; } - .align-self-sm-stretch { - align-self: stretch !important; } - .order-sm-first { - order: -1 !important; } - .order-sm-0 { - order: 0 !important; } - .order-sm-1 { - order: 1 !important; } - .order-sm-2 { - order: 2 !important; } - .order-sm-3 { - order: 3 !important; } - .order-sm-4 { - order: 4 !important; } - .order-sm-5 { - order: 5 !important; } - .order-sm-last { - order: 6 !important; } - .m-sm-0 { - margin: 0 !important; } - .m-sm-1 { - margin: 0.25rem !important; } - .m-sm-2 { - margin: 0.5rem !important; } - .m-sm-3 { - margin: 1rem !important; } - .m-sm-4 { - margin: 1.5rem !important; } - .m-sm-5 { - margin: 3rem !important; } - .m-sm-auto { - margin: auto !important; } - .mx-sm-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-sm-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-sm-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-sm-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-sm-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-sm-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-sm-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-sm-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-sm-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-sm-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-sm-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-sm-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-sm-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-sm-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-sm-0 { - margin-top: 0 !important; } - .mt-sm-1 { - margin-top: 0.25rem !important; } - .mt-sm-2 { - margin-top: 0.5rem !important; } - .mt-sm-3 { - margin-top: 1rem !important; } - .mt-sm-4 { - margin-top: 1.5rem !important; } - .mt-sm-5 { - margin-top: 3rem !important; } - .mt-sm-auto { - margin-top: auto !important; } - .me-sm-0 { - margin-right: 0 !important; } - .me-sm-1 { - margin-right: 0.25rem !important; } - .me-sm-2 { - margin-right: 0.5rem !important; } - .me-sm-3 { - margin-right: 1rem !important; } - .me-sm-4 { - margin-right: 1.5rem !important; } - .me-sm-5 { - margin-right: 3rem !important; } - .me-sm-auto { - margin-right: auto !important; } - .mb-sm-0 { - margin-bottom: 0 !important; } - .mb-sm-1 { - margin-bottom: 0.25rem !important; } - .mb-sm-2 { - margin-bottom: 0.5rem !important; } - .mb-sm-3 { - margin-bottom: 1rem !important; } - .mb-sm-4 { - margin-bottom: 1.5rem !important; } - .mb-sm-5 { - margin-bottom: 3rem !important; } - .mb-sm-auto { - margin-bottom: auto !important; } - .ms-sm-0 { - margin-left: 0 !important; } - .ms-sm-1 { - margin-left: 0.25rem !important; } - .ms-sm-2 { - margin-left: 0.5rem !important; } - .ms-sm-3 { - margin-left: 1rem !important; } - .ms-sm-4 { - margin-left: 1.5rem !important; } - .ms-sm-5 { - margin-left: 3rem !important; } - .ms-sm-auto { - margin-left: auto !important; } - .p-sm-0 { - padding: 0 !important; } - .p-sm-1 { - padding: 0.25rem !important; } - .p-sm-2 { - padding: 0.5rem !important; } - .p-sm-3 { - padding: 1rem !important; } - .p-sm-4 { - padding: 1.5rem !important; } - .p-sm-5 { - padding: 3rem !important; } - .px-sm-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-sm-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-sm-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-sm-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-sm-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-sm-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-sm-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-sm-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-sm-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-sm-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-sm-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-sm-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-sm-0 { - padding-top: 0 !important; } - .pt-sm-1 { - padding-top: 0.25rem !important; } - .pt-sm-2 { - padding-top: 0.5rem !important; } - .pt-sm-3 { - padding-top: 1rem !important; } - .pt-sm-4 { - padding-top: 1.5rem !important; } - .pt-sm-5 { - padding-top: 3rem !important; } - .pe-sm-0 { - padding-right: 0 !important; } - .pe-sm-1 { - padding-right: 0.25rem !important; } - .pe-sm-2 { - padding-right: 0.5rem !important; } - .pe-sm-3 { - padding-right: 1rem !important; } - .pe-sm-4 { - padding-right: 1.5rem !important; } - .pe-sm-5 { - padding-right: 3rem !important; } - .pb-sm-0 { - padding-bottom: 0 !important; } - .pb-sm-1 { - padding-bottom: 0.25rem !important; } - .pb-sm-2 { - padding-bottom: 0.5rem !important; } - .pb-sm-3 { - padding-bottom: 1rem !important; } - .pb-sm-4 { - padding-bottom: 1.5rem !important; } - .pb-sm-5 { - padding-bottom: 3rem !important; } - .ps-sm-0 { - padding-left: 0 !important; } - .ps-sm-1 { - padding-left: 0.25rem !important; } - .ps-sm-2 { - padding-left: 0.5rem !important; } - .ps-sm-3 { - padding-left: 1rem !important; } - .ps-sm-4 { - padding-left: 1.5rem !important; } - .ps-sm-5 { - padding-left: 3rem !important; } - .text-sm-start { - text-align: left !important; } - .text-sm-end { - text-align: right !important; } - .text-sm-center { - text-align: center !important; } } - -@media (min-width: 768px) { - .float-md-start { - float: left !important; } - .float-md-end { - float: right !important; } - .float-md-none { - float: none !important; } - .d-md-inline { - display: inline !important; } - .d-md-inline-block { - display: inline-block !important; } - .d-md-block { - display: block !important; } - .d-md-grid { - display: grid !important; } - .d-md-table { - display: table !important; } - .d-md-table-row { - display: table-row !important; } - .d-md-table-cell { - display: table-cell !important; } - .d-md-flex { - display: flex !important; } - .d-md-inline-flex { - display: inline-flex !important; } - .d-md-none { - display: none !important; } - .flex-md-fill { - flex: 1 1 auto !important; } - .flex-md-row { - flex-direction: row !important; } - .flex-md-column { - flex-direction: column !important; } - .flex-md-row-reverse { - flex-direction: row-reverse !important; } - .flex-md-column-reverse { - flex-direction: column-reverse !important; } - .flex-md-grow-0 { - flex-grow: 0 !important; } - .flex-md-grow-1 { - flex-grow: 1 !important; } - .flex-md-shrink-0 { - flex-shrink: 0 !important; } - .flex-md-shrink-1 { - flex-shrink: 1 !important; } - .flex-md-wrap { - flex-wrap: wrap !important; } - .flex-md-nowrap { - flex-wrap: nowrap !important; } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-md-0 { - gap: 0 !important; } - .gap-md-1 { - gap: 0.25rem !important; } - .gap-md-2 { - gap: 0.5rem !important; } - .gap-md-3 { - gap: 1rem !important; } - .gap-md-4 { - gap: 1.5rem !important; } - .gap-md-5 { - gap: 3rem !important; } - .justify-content-md-start { - justify-content: flex-start !important; } - .justify-content-md-end { - justify-content: flex-end !important; } - .justify-content-md-center { - justify-content: center !important; } - .justify-content-md-between { - justify-content: space-between !important; } - .justify-content-md-around { - justify-content: space-around !important; } - .justify-content-md-evenly { - justify-content: space-evenly !important; } - .align-items-md-start { - align-items: flex-start !important; } - .align-items-md-end { - align-items: flex-end !important; } - .align-items-md-center { - align-items: center !important; } - .align-items-md-baseline { - align-items: baseline !important; } - .align-items-md-stretch { - align-items: stretch !important; } - .align-content-md-start { - align-content: flex-start !important; } - .align-content-md-end { - align-content: flex-end !important; } - .align-content-md-center { - align-content: center !important; } - .align-content-md-between { - align-content: space-between !important; } - .align-content-md-around { - align-content: space-around !important; } - .align-content-md-stretch { - align-content: stretch !important; } - .align-self-md-auto { - align-self: auto !important; } - .align-self-md-start { - align-self: flex-start !important; } - .align-self-md-end { - align-self: flex-end !important; } - .align-self-md-center { - align-self: center !important; } - .align-self-md-baseline { - align-self: baseline !important; } - .align-self-md-stretch { - align-self: stretch !important; } - .order-md-first { - order: -1 !important; } - .order-md-0 { - order: 0 !important; } - .order-md-1 { - order: 1 !important; } - .order-md-2 { - order: 2 !important; } - .order-md-3 { - order: 3 !important; } - .order-md-4 { - order: 4 !important; } - .order-md-5 { - order: 5 !important; } - .order-md-last { - order: 6 !important; } - .m-md-0 { - margin: 0 !important; } - .m-md-1 { - margin: 0.25rem !important; } - .m-md-2 { - margin: 0.5rem !important; } - .m-md-3 { - margin: 1rem !important; } - .m-md-4 { - margin: 1.5rem !important; } - .m-md-5 { - margin: 3rem !important; } - .m-md-auto { - margin: auto !important; } - .mx-md-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-md-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-md-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-md-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-md-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-md-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-md-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-md-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-md-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-md-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-md-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-md-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-md-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-md-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-md-0 { - margin-top: 0 !important; } - .mt-md-1 { - margin-top: 0.25rem !important; } - .mt-md-2 { - margin-top: 0.5rem !important; } - .mt-md-3 { - margin-top: 1rem !important; } - .mt-md-4 { - margin-top: 1.5rem !important; } - .mt-md-5 { - margin-top: 3rem !important; } - .mt-md-auto { - margin-top: auto !important; } - .me-md-0 { - margin-right: 0 !important; } - .me-md-1 { - margin-right: 0.25rem !important; } - .me-md-2 { - margin-right: 0.5rem !important; } - .me-md-3 { - margin-right: 1rem !important; } - .me-md-4 { - margin-right: 1.5rem !important; } - .me-md-5 { - margin-right: 3rem !important; } - .me-md-auto { - margin-right: auto !important; } - .mb-md-0 { - margin-bottom: 0 !important; } - .mb-md-1 { - margin-bottom: 0.25rem !important; } - .mb-md-2 { - margin-bottom: 0.5rem !important; } - .mb-md-3 { - margin-bottom: 1rem !important; } - .mb-md-4 { - margin-bottom: 1.5rem !important; } - .mb-md-5 { - margin-bottom: 3rem !important; } - .mb-md-auto { - margin-bottom: auto !important; } - .ms-md-0 { - margin-left: 0 !important; } - .ms-md-1 { - margin-left: 0.25rem !important; } - .ms-md-2 { - margin-left: 0.5rem !important; } - .ms-md-3 { - margin-left: 1rem !important; } - .ms-md-4 { - margin-left: 1.5rem !important; } - .ms-md-5 { - margin-left: 3rem !important; } - .ms-md-auto { - margin-left: auto !important; } - .p-md-0 { - padding: 0 !important; } - .p-md-1 { - padding: 0.25rem !important; } - .p-md-2 { - padding: 0.5rem !important; } - .p-md-3 { - padding: 1rem !important; } - .p-md-4 { - padding: 1.5rem !important; } - .p-md-5 { - padding: 3rem !important; } - .px-md-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-md-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-md-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-md-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-md-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-md-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-md-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-md-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-md-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-md-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-md-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-md-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-md-0 { - padding-top: 0 !important; } - .pt-md-1 { - padding-top: 0.25rem !important; } - .pt-md-2 { - padding-top: 0.5rem !important; } - .pt-md-3 { - padding-top: 1rem !important; } - .pt-md-4 { - padding-top: 1.5rem !important; } - .pt-md-5 { - padding-top: 3rem !important; } - .pe-md-0 { - padding-right: 0 !important; } - .pe-md-1 { - padding-right: 0.25rem !important; } - .pe-md-2 { - padding-right: 0.5rem !important; } - .pe-md-3 { - padding-right: 1rem !important; } - .pe-md-4 { - padding-right: 1.5rem !important; } - .pe-md-5 { - padding-right: 3rem !important; } - .pb-md-0 { - padding-bottom: 0 !important; } - .pb-md-1 { - padding-bottom: 0.25rem !important; } - .pb-md-2 { - padding-bottom: 0.5rem !important; } - .pb-md-3 { - padding-bottom: 1rem !important; } - .pb-md-4 { - padding-bottom: 1.5rem !important; } - .pb-md-5 { - padding-bottom: 3rem !important; } - .ps-md-0 { - padding-left: 0 !important; } - .ps-md-1 { - padding-left: 0.25rem !important; } - .ps-md-2 { - padding-left: 0.5rem !important; } - .ps-md-3 { - padding-left: 1rem !important; } - .ps-md-4 { - padding-left: 1.5rem !important; } - .ps-md-5 { - padding-left: 3rem !important; } - .text-md-start { - text-align: left !important; } - .text-md-end { - text-align: right !important; } - .text-md-center { - text-align: center !important; } } - -@media (min-width: 992px) { - .float-lg-start { - float: left !important; } - .float-lg-end { - float: right !important; } - .float-lg-none { - float: none !important; } - .d-lg-inline { - display: inline !important; } - .d-lg-inline-block { - display: inline-block !important; } - .d-lg-block { - display: block !important; } - .d-lg-grid { - display: grid !important; } - .d-lg-table { - display: table !important; } - .d-lg-table-row { - display: table-row !important; } - .d-lg-table-cell { - display: table-cell !important; } - .d-lg-flex { - display: flex !important; } - .d-lg-inline-flex { - display: inline-flex !important; } - .d-lg-none { - display: none !important; } - .flex-lg-fill { - flex: 1 1 auto !important; } - .flex-lg-row { - flex-direction: row !important; } - .flex-lg-column { - flex-direction: column !important; } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; } - .flex-lg-grow-0 { - flex-grow: 0 !important; } - .flex-lg-grow-1 { - flex-grow: 1 !important; } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; } - .flex-lg-wrap { - flex-wrap: wrap !important; } - .flex-lg-nowrap { - flex-wrap: nowrap !important; } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-lg-0 { - gap: 0 !important; } - .gap-lg-1 { - gap: 0.25rem !important; } - .gap-lg-2 { - gap: 0.5rem !important; } - .gap-lg-3 { - gap: 1rem !important; } - .gap-lg-4 { - gap: 1.5rem !important; } - .gap-lg-5 { - gap: 3rem !important; } - .justify-content-lg-start { - justify-content: flex-start !important; } - .justify-content-lg-end { - justify-content: flex-end !important; } - .justify-content-lg-center { - justify-content: center !important; } - .justify-content-lg-between { - justify-content: space-between !important; } - .justify-content-lg-around { - justify-content: space-around !important; } - .justify-content-lg-evenly { - justify-content: space-evenly !important; } - .align-items-lg-start { - align-items: flex-start !important; } - .align-items-lg-end { - align-items: flex-end !important; } - .align-items-lg-center { - align-items: center !important; } - .align-items-lg-baseline { - align-items: baseline !important; } - .align-items-lg-stretch { - align-items: stretch !important; } - .align-content-lg-start { - align-content: flex-start !important; } - .align-content-lg-end { - align-content: flex-end !important; } - .align-content-lg-center { - align-content: center !important; } - .align-content-lg-between { - align-content: space-between !important; } - .align-content-lg-around { - align-content: space-around !important; } - .align-content-lg-stretch { - align-content: stretch !important; } - .align-self-lg-auto { - align-self: auto !important; } - .align-self-lg-start { - align-self: flex-start !important; } - .align-self-lg-end { - align-self: flex-end !important; } - .align-self-lg-center { - align-self: center !important; } - .align-self-lg-baseline { - align-self: baseline !important; } - .align-self-lg-stretch { - align-self: stretch !important; } - .order-lg-first { - order: -1 !important; } - .order-lg-0 { - order: 0 !important; } - .order-lg-1 { - order: 1 !important; } - .order-lg-2 { - order: 2 !important; } - .order-lg-3 { - order: 3 !important; } - .order-lg-4 { - order: 4 !important; } - .order-lg-5 { - order: 5 !important; } - .order-lg-last { - order: 6 !important; } - .m-lg-0 { - margin: 0 !important; } - .m-lg-1 { - margin: 0.25rem !important; } - .m-lg-2 { - margin: 0.5rem !important; } - .m-lg-3 { - margin: 1rem !important; } - .m-lg-4 { - margin: 1.5rem !important; } - .m-lg-5 { - margin: 3rem !important; } - .m-lg-auto { - margin: auto !important; } - .mx-lg-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-lg-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-lg-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-lg-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-lg-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-lg-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-lg-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-lg-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-lg-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-lg-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-lg-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-lg-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-lg-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-lg-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-lg-0 { - margin-top: 0 !important; } - .mt-lg-1 { - margin-top: 0.25rem !important; } - .mt-lg-2 { - margin-top: 0.5rem !important; } - .mt-lg-3 { - margin-top: 1rem !important; } - .mt-lg-4 { - margin-top: 1.5rem !important; } - .mt-lg-5 { - margin-top: 3rem !important; } - .mt-lg-auto { - margin-top: auto !important; } - .me-lg-0 { - margin-right: 0 !important; } - .me-lg-1 { - margin-right: 0.25rem !important; } - .me-lg-2 { - margin-right: 0.5rem !important; } - .me-lg-3 { - margin-right: 1rem !important; } - .me-lg-4 { - margin-right: 1.5rem !important; } - .me-lg-5 { - margin-right: 3rem !important; } - .me-lg-auto { - margin-right: auto !important; } - .mb-lg-0 { - margin-bottom: 0 !important; } - .mb-lg-1 { - margin-bottom: 0.25rem !important; } - .mb-lg-2 { - margin-bottom: 0.5rem !important; } - .mb-lg-3 { - margin-bottom: 1rem !important; } - .mb-lg-4 { - margin-bottom: 1.5rem !important; } - .mb-lg-5 { - margin-bottom: 3rem !important; } - .mb-lg-auto { - margin-bottom: auto !important; } - .ms-lg-0 { - margin-left: 0 !important; } - .ms-lg-1 { - margin-left: 0.25rem !important; } - .ms-lg-2 { - margin-left: 0.5rem !important; } - .ms-lg-3 { - margin-left: 1rem !important; } - .ms-lg-4 { - margin-left: 1.5rem !important; } - .ms-lg-5 { - margin-left: 3rem !important; } - .ms-lg-auto { - margin-left: auto !important; } - .p-lg-0 { - padding: 0 !important; } - .p-lg-1 { - padding: 0.25rem !important; } - .p-lg-2 { - padding: 0.5rem !important; } - .p-lg-3 { - padding: 1rem !important; } - .p-lg-4 { - padding: 1.5rem !important; } - .p-lg-5 { - padding: 3rem !important; } - .px-lg-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-lg-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-lg-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-lg-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-lg-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-lg-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-lg-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-lg-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-lg-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-lg-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-lg-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-lg-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-lg-0 { - padding-top: 0 !important; } - .pt-lg-1 { - padding-top: 0.25rem !important; } - .pt-lg-2 { - padding-top: 0.5rem !important; } - .pt-lg-3 { - padding-top: 1rem !important; } - .pt-lg-4 { - padding-top: 1.5rem !important; } - .pt-lg-5 { - padding-top: 3rem !important; } - .pe-lg-0 { - padding-right: 0 !important; } - .pe-lg-1 { - padding-right: 0.25rem !important; } - .pe-lg-2 { - padding-right: 0.5rem !important; } - .pe-lg-3 { - padding-right: 1rem !important; } - .pe-lg-4 { - padding-right: 1.5rem !important; } - .pe-lg-5 { - padding-right: 3rem !important; } - .pb-lg-0 { - padding-bottom: 0 !important; } - .pb-lg-1 { - padding-bottom: 0.25rem !important; } - .pb-lg-2 { - padding-bottom: 0.5rem !important; } - .pb-lg-3 { - padding-bottom: 1rem !important; } - .pb-lg-4 { - padding-bottom: 1.5rem !important; } - .pb-lg-5 { - padding-bottom: 3rem !important; } - .ps-lg-0 { - padding-left: 0 !important; } - .ps-lg-1 { - padding-left: 0.25rem !important; } - .ps-lg-2 { - padding-left: 0.5rem !important; } - .ps-lg-3 { - padding-left: 1rem !important; } - .ps-lg-4 { - padding-left: 1.5rem !important; } - .ps-lg-5 { - padding-left: 3rem !important; } - .text-lg-start { - text-align: left !important; } - .text-lg-end { - text-align: right !important; } - .text-lg-center { - text-align: center !important; } } - -@media (min-width: 1200px) { - .float-xl-start { - float: left !important; } - .float-xl-end { - float: right !important; } - .float-xl-none { - float: none !important; } - .d-xl-inline { - display: inline !important; } - .d-xl-inline-block { - display: inline-block !important; } - .d-xl-block { - display: block !important; } - .d-xl-grid { - display: grid !important; } - .d-xl-table { - display: table !important; } - .d-xl-table-row { - display: table-row !important; } - .d-xl-table-cell { - display: table-cell !important; } - .d-xl-flex { - display: flex !important; } - .d-xl-inline-flex { - display: inline-flex !important; } - .d-xl-none { - display: none !important; } - .flex-xl-fill { - flex: 1 1 auto !important; } - .flex-xl-row { - flex-direction: row !important; } - .flex-xl-column { - flex-direction: column !important; } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xl-grow-0 { - flex-grow: 0 !important; } - .flex-xl-grow-1 { - flex-grow: 1 !important; } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; } - .flex-xl-wrap { - flex-wrap: wrap !important; } - .flex-xl-nowrap { - flex-wrap: nowrap !important; } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-xl-0 { - gap: 0 !important; } - .gap-xl-1 { - gap: 0.25rem !important; } - .gap-xl-2 { - gap: 0.5rem !important; } - .gap-xl-3 { - gap: 1rem !important; } - .gap-xl-4 { - gap: 1.5rem !important; } - .gap-xl-5 { - gap: 3rem !important; } - .justify-content-xl-start { - justify-content: flex-start !important; } - .justify-content-xl-end { - justify-content: flex-end !important; } - .justify-content-xl-center { - justify-content: center !important; } - .justify-content-xl-between { - justify-content: space-between !important; } - .justify-content-xl-around { - justify-content: space-around !important; } - .justify-content-xl-evenly { - justify-content: space-evenly !important; } - .align-items-xl-start { - align-items: flex-start !important; } - .align-items-xl-end { - align-items: flex-end !important; } - .align-items-xl-center { - align-items: center !important; } - .align-items-xl-baseline { - align-items: baseline !important; } - .align-items-xl-stretch { - align-items: stretch !important; } - .align-content-xl-start { - align-content: flex-start !important; } - .align-content-xl-end { - align-content: flex-end !important; } - .align-content-xl-center { - align-content: center !important; } - .align-content-xl-between { - align-content: space-between !important; } - .align-content-xl-around { - align-content: space-around !important; } - .align-content-xl-stretch { - align-content: stretch !important; } - .align-self-xl-auto { - align-self: auto !important; } - .align-self-xl-start { - align-self: flex-start !important; } - .align-self-xl-end { - align-self: flex-end !important; } - .align-self-xl-center { - align-self: center !important; } - .align-self-xl-baseline { - align-self: baseline !important; } - .align-self-xl-stretch { - align-self: stretch !important; } - .order-xl-first { - order: -1 !important; } - .order-xl-0 { - order: 0 !important; } - .order-xl-1 { - order: 1 !important; } - .order-xl-2 { - order: 2 !important; } - .order-xl-3 { - order: 3 !important; } - .order-xl-4 { - order: 4 !important; } - .order-xl-5 { - order: 5 !important; } - .order-xl-last { - order: 6 !important; } - .m-xl-0 { - margin: 0 !important; } - .m-xl-1 { - margin: 0.25rem !important; } - .m-xl-2 { - margin: 0.5rem !important; } - .m-xl-3 { - margin: 1rem !important; } - .m-xl-4 { - margin: 1.5rem !important; } - .m-xl-5 { - margin: 3rem !important; } - .m-xl-auto { - margin: auto !important; } - .mx-xl-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-xl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-xl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-xl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-xl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-xl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-xl-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-xl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-xl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-xl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-xl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-xl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-xl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-xl-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-xl-0 { - margin-top: 0 !important; } - .mt-xl-1 { - margin-top: 0.25rem !important; } - .mt-xl-2 { - margin-top: 0.5rem !important; } - .mt-xl-3 { - margin-top: 1rem !important; } - .mt-xl-4 { - margin-top: 1.5rem !important; } - .mt-xl-5 { - margin-top: 3rem !important; } - .mt-xl-auto { - margin-top: auto !important; } - .me-xl-0 { - margin-right: 0 !important; } - .me-xl-1 { - margin-right: 0.25rem !important; } - .me-xl-2 { - margin-right: 0.5rem !important; } - .me-xl-3 { - margin-right: 1rem !important; } - .me-xl-4 { - margin-right: 1.5rem !important; } - .me-xl-5 { - margin-right: 3rem !important; } - .me-xl-auto { - margin-right: auto !important; } - .mb-xl-0 { - margin-bottom: 0 !important; } - .mb-xl-1 { - margin-bottom: 0.25rem !important; } - .mb-xl-2 { - margin-bottom: 0.5rem !important; } - .mb-xl-3 { - margin-bottom: 1rem !important; } - .mb-xl-4 { - margin-bottom: 1.5rem !important; } - .mb-xl-5 { - margin-bottom: 3rem !important; } - .mb-xl-auto { - margin-bottom: auto !important; } - .ms-xl-0 { - margin-left: 0 !important; } - .ms-xl-1 { - margin-left: 0.25rem !important; } - .ms-xl-2 { - margin-left: 0.5rem !important; } - .ms-xl-3 { - margin-left: 1rem !important; } - .ms-xl-4 { - margin-left: 1.5rem !important; } - .ms-xl-5 { - margin-left: 3rem !important; } - .ms-xl-auto { - margin-left: auto !important; } - .p-xl-0 { - padding: 0 !important; } - .p-xl-1 { - padding: 0.25rem !important; } - .p-xl-2 { - padding: 0.5rem !important; } - .p-xl-3 { - padding: 1rem !important; } - .p-xl-4 { - padding: 1.5rem !important; } - .p-xl-5 { - padding: 3rem !important; } - .px-xl-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-xl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-xl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-xl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-xl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-xl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-xl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-xl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-xl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-xl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-xl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-xl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-xl-0 { - padding-top: 0 !important; } - .pt-xl-1 { - padding-top: 0.25rem !important; } - .pt-xl-2 { - padding-top: 0.5rem !important; } - .pt-xl-3 { - padding-top: 1rem !important; } - .pt-xl-4 { - padding-top: 1.5rem !important; } - .pt-xl-5 { - padding-top: 3rem !important; } - .pe-xl-0 { - padding-right: 0 !important; } - .pe-xl-1 { - padding-right: 0.25rem !important; } - .pe-xl-2 { - padding-right: 0.5rem !important; } - .pe-xl-3 { - padding-right: 1rem !important; } - .pe-xl-4 { - padding-right: 1.5rem !important; } - .pe-xl-5 { - padding-right: 3rem !important; } - .pb-xl-0 { - padding-bottom: 0 !important; } - .pb-xl-1 { - padding-bottom: 0.25rem !important; } - .pb-xl-2 { - padding-bottom: 0.5rem !important; } - .pb-xl-3 { - padding-bottom: 1rem !important; } - .pb-xl-4 { - padding-bottom: 1.5rem !important; } - .pb-xl-5 { - padding-bottom: 3rem !important; } - .ps-xl-0 { - padding-left: 0 !important; } - .ps-xl-1 { - padding-left: 0.25rem !important; } - .ps-xl-2 { - padding-left: 0.5rem !important; } - .ps-xl-3 { - padding-left: 1rem !important; } - .ps-xl-4 { - padding-left: 1.5rem !important; } - .ps-xl-5 { - padding-left: 3rem !important; } - .text-xl-start { - text-align: left !important; } - .text-xl-end { - text-align: right !important; } - .text-xl-center { - text-align: center !important; } } - -@media (min-width: 1400px) { - .float-xxl-start { - float: left !important; } - .float-xxl-end { - float: right !important; } - .float-xxl-none { - float: none !important; } - .d-xxl-inline { - display: inline !important; } - .d-xxl-inline-block { - display: inline-block !important; } - .d-xxl-block { - display: block !important; } - .d-xxl-grid { - display: grid !important; } - .d-xxl-table { - display: table !important; } - .d-xxl-table-row { - display: table-row !important; } - .d-xxl-table-cell { - display: table-cell !important; } - .d-xxl-flex { - display: flex !important; } - .d-xxl-inline-flex { - display: inline-flex !important; } - .d-xxl-none { - display: none !important; } - .flex-xxl-fill { - flex: 1 1 auto !important; } - .flex-xxl-row { - flex-direction: row !important; } - .flex-xxl-column { - flex-direction: column !important; } - .flex-xxl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xxl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xxl-grow-0 { - flex-grow: 0 !important; } - .flex-xxl-grow-1 { - flex-grow: 1 !important; } - .flex-xxl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xxl-shrink-1 { - flex-shrink: 1 !important; } - .flex-xxl-wrap { - flex-wrap: wrap !important; } - .flex-xxl-nowrap { - flex-wrap: nowrap !important; } - .flex-xxl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-xxl-0 { - gap: 0 !important; } - .gap-xxl-1 { - gap: 0.25rem !important; } - .gap-xxl-2 { - gap: 0.5rem !important; } - .gap-xxl-3 { - gap: 1rem !important; } - .gap-xxl-4 { - gap: 1.5rem !important; } - .gap-xxl-5 { - gap: 3rem !important; } - .justify-content-xxl-start { - justify-content: flex-start !important; } - .justify-content-xxl-end { - justify-content: flex-end !important; } - .justify-content-xxl-center { - justify-content: center !important; } - .justify-content-xxl-between { - justify-content: space-between !important; } - .justify-content-xxl-around { - justify-content: space-around !important; } - .justify-content-xxl-evenly { - justify-content: space-evenly !important; } - .align-items-xxl-start { - align-items: flex-start !important; } - .align-items-xxl-end { - align-items: flex-end !important; } - .align-items-xxl-center { - align-items: center !important; } - .align-items-xxl-baseline { - align-items: baseline !important; } - .align-items-xxl-stretch { - align-items: stretch !important; } - .align-content-xxl-start { - align-content: flex-start !important; } - .align-content-xxl-end { - align-content: flex-end !important; } - .align-content-xxl-center { - align-content: center !important; } - .align-content-xxl-between { - align-content: space-between !important; } - .align-content-xxl-around { - align-content: space-around !important; } - .align-content-xxl-stretch { - align-content: stretch !important; } - .align-self-xxl-auto { - align-self: auto !important; } - .align-self-xxl-start { - align-self: flex-start !important; } - .align-self-xxl-end { - align-self: flex-end !important; } - .align-self-xxl-center { - align-self: center !important; } - .align-self-xxl-baseline { - align-self: baseline !important; } - .align-self-xxl-stretch { - align-self: stretch !important; } - .order-xxl-first { - order: -1 !important; } - .order-xxl-0 { - order: 0 !important; } - .order-xxl-1 { - order: 1 !important; } - .order-xxl-2 { - order: 2 !important; } - .order-xxl-3 { - order: 3 !important; } - .order-xxl-4 { - order: 4 !important; } - .order-xxl-5 { - order: 5 !important; } - .order-xxl-last { - order: 6 !important; } - .m-xxl-0 { - margin: 0 !important; } - .m-xxl-1 { - margin: 0.25rem !important; } - .m-xxl-2 { - margin: 0.5rem !important; } - .m-xxl-3 { - margin: 1rem !important; } - .m-xxl-4 { - margin: 1.5rem !important; } - .m-xxl-5 { - margin: 3rem !important; } - .m-xxl-auto { - margin: auto !important; } - .mx-xxl-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-xxl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-xxl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-xxl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-xxl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-xxl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-xxl-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-xxl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-xxl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-xxl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-xxl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-xxl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-xxl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-xxl-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-xxl-0 { - margin-top: 0 !important; } - .mt-xxl-1 { - margin-top: 0.25rem !important; } - .mt-xxl-2 { - margin-top: 0.5rem !important; } - .mt-xxl-3 { - margin-top: 1rem !important; } - .mt-xxl-4 { - margin-top: 1.5rem !important; } - .mt-xxl-5 { - margin-top: 3rem !important; } - .mt-xxl-auto { - margin-top: auto !important; } - .me-xxl-0 { - margin-right: 0 !important; } - .me-xxl-1 { - margin-right: 0.25rem !important; } - .me-xxl-2 { - margin-right: 0.5rem !important; } - .me-xxl-3 { - margin-right: 1rem !important; } - .me-xxl-4 { - margin-right: 1.5rem !important; } - .me-xxl-5 { - margin-right: 3rem !important; } - .me-xxl-auto { - margin-right: auto !important; } - .mb-xxl-0 { - margin-bottom: 0 !important; } - .mb-xxl-1 { - margin-bottom: 0.25rem !important; } - .mb-xxl-2 { - margin-bottom: 0.5rem !important; } - .mb-xxl-3 { - margin-bottom: 1rem !important; } - .mb-xxl-4 { - margin-bottom: 1.5rem !important; } - .mb-xxl-5 { - margin-bottom: 3rem !important; } - .mb-xxl-auto { - margin-bottom: auto !important; } - .ms-xxl-0 { - margin-left: 0 !important; } - .ms-xxl-1 { - margin-left: 0.25rem !important; } - .ms-xxl-2 { - margin-left: 0.5rem !important; } - .ms-xxl-3 { - margin-left: 1rem !important; } - .ms-xxl-4 { - margin-left: 1.5rem !important; } - .ms-xxl-5 { - margin-left: 3rem !important; } - .ms-xxl-auto { - margin-left: auto !important; } - .p-xxl-0 { - padding: 0 !important; } - .p-xxl-1 { - padding: 0.25rem !important; } - .p-xxl-2 { - padding: 0.5rem !important; } - .p-xxl-3 { - padding: 1rem !important; } - .p-xxl-4 { - padding: 1.5rem !important; } - .p-xxl-5 { - padding: 3rem !important; } - .px-xxl-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-xxl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-xxl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-xxl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-xxl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-xxl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-xxl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-xxl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-xxl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-xxl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-xxl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-xxl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-xxl-0 { - padding-top: 0 !important; } - .pt-xxl-1 { - padding-top: 0.25rem !important; } - .pt-xxl-2 { - padding-top: 0.5rem !important; } - .pt-xxl-3 { - padding-top: 1rem !important; } - .pt-xxl-4 { - padding-top: 1.5rem !important; } - .pt-xxl-5 { - padding-top: 3rem !important; } - .pe-xxl-0 { - padding-right: 0 !important; } - .pe-xxl-1 { - padding-right: 0.25rem !important; } - .pe-xxl-2 { - padding-right: 0.5rem !important; } - .pe-xxl-3 { - padding-right: 1rem !important; } - .pe-xxl-4 { - padding-right: 1.5rem !important; } - .pe-xxl-5 { - padding-right: 3rem !important; } - .pb-xxl-0 { - padding-bottom: 0 !important; } - .pb-xxl-1 { - padding-bottom: 0.25rem !important; } - .pb-xxl-2 { - padding-bottom: 0.5rem !important; } - .pb-xxl-3 { - padding-bottom: 1rem !important; } - .pb-xxl-4 { - padding-bottom: 1.5rem !important; } - .pb-xxl-5 { - padding-bottom: 3rem !important; } - .ps-xxl-0 { - padding-left: 0 !important; } - .ps-xxl-1 { - padding-left: 0.25rem !important; } - .ps-xxl-2 { - padding-left: 0.5rem !important; } - .ps-xxl-3 { - padding-left: 1rem !important; } - .ps-xxl-4 { - padding-left: 1.5rem !important; } - .ps-xxl-5 { - padding-left: 3rem !important; } - .text-xxl-start { - text-align: left !important; } - .text-xxl-end { - text-align: right !important; } - .text-xxl-center { - text-align: center !important; } } - -@media (min-width: 1200px) { - .fs-1 { - font-size: 2.5rem !important; } - .fs-2 { - font-size: 2rem !important; } - .fs-3 { - font-size: 1.75rem !important; } - .fs-4 { - font-size: 1.5rem !important; } } - -@media print { - .d-print-inline { - display: inline !important; } - .d-print-inline-block { - display: inline-block !important; } - .d-print-block { - display: block !important; } - .d-print-grid { - display: grid !important; } - .d-print-table { - display: table !important; } - .d-print-table-row { - display: table-row !important; } - .d-print-table-cell { - display: table-cell !important; } - .d-print-flex { - display: flex !important; } - .d-print-inline-flex { - display: inline-flex !important; } - .d-print-none { - display: none !important; } } -" -`; - -exports[`loader should work with "bootstrap" package v5, import as a package (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v5, import as a package (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v5, import as a package (node-sass) (scss): css 1`] = ` -"/*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --bs-blue: #0d6efd; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #d63384; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-gray-100: #f8f9fa; - --bs-gray-200: #e9ecef; - --bs-gray-300: #dee2e6; - --bs-gray-400: #ced4da; - --bs-gray-500: #adb5bd; - --bs-gray-600: #6c757d; - --bs-gray-700: #495057; - --bs-gray-800: #343a40; - --bs-gray-900: #212529; - --bs-primary: #0d6efd; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-primary-rgb: 13, 110, 253; - --bs-secondary-rgb: 108, 117, 125; - --bs-success-rgb: 25, 135, 84; - --bs-info-rgb: 13, 202, 240; - --bs-warning-rgb: 255, 193, 7; - --bs-danger-rgb: 220, 53, 69; - --bs-light-rgb: 248, 249, 250; - --bs-dark-rgb: 33, 37, 41; - --bs-white-rgb: 255, 255, 255; - --bs-black-rgb: 0, 0, 0; - --bs-body-color-rgb: 33, 37, 41; - --bs-body-bg-rgb: 255, 255, 255; - --bs-font-sans-serif: system-ui, -apple-system, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, \\"Noto Sans\\", \\"Liberation Sans\\", sans-serif, \\"Apple Color Emoji\\", \\"Segoe UI Emoji\\", \\"Segoe UI Symbol\\", \\"Noto Color Emoji\\"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \\"Liberation Mono\\", \\"Courier New\\", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); - --bs-body-font-family: var(--bs-font-sans-serif); - --bs-body-font-size: 1rem; - --bs-body-font-weight: 400; - --bs-body-line-height: 1.5; - --bs-body-color: #212529; - --bs-body-bg: #fff; } - -*, -*::before, -*::after { - box-sizing: border-box; } - -@media (prefers-reduced-motion: no-preference) { - :root { - scroll-behavior: smooth; } } - -body { - margin: 0; - font-family: var(--bs-body-font-family); - font-size: var(--bs-body-font-size); - font-weight: var(--bs-body-font-weight); - line-height: var(--bs-body-line-height); - color: var(--bs-body-color); - text-align: var(--bs-body-text-align); - background-color: var(--bs-body-bg); - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.25; } - -hr:not([size]) { - height: 1px; } - -h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { - margin-top: 0; - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - -h1, .h1 { - font-size: calc(1.375rem + 1.5vw); } - @media (min-width: 1200px) { - h1, .h1 { - font-size: 2.5rem; } } - -h2, .h2 { - font-size: calc(1.325rem + 0.9vw); } - @media (min-width: 1200px) { - h2, .h2 { - font-size: 2rem; } } - -h3, .h3 { - font-size: calc(1.3rem + 0.6vw); } - @media (min-width: 1200px) { - h3, .h3 { - font-size: 1.75rem; } } - -h4, .h4 { - font-size: calc(1.275rem + 0.3vw); } - @media (min-width: 1200px) { - h4, .h4 { - font-size: 1.5rem; } } - -h5, .h5 { - font-size: 1.25rem; } - -h6, .h6 { - font-size: 1rem; } - -p { - margin-top: 0; - margin-bottom: 1rem; } - -abbr[title], -abbr[data-bs-original-title] { - text-decoration: underline dotted; - cursor: help; - text-decoration-skip-ink: none; } - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - -ol, -ul { - padding-left: 2rem; } - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; } - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; } - -dt { - font-weight: 700; } - -dd { - margin-bottom: .5rem; - margin-left: 0; } - -blockquote { - margin: 0 0 1rem; } - -b, -strong { - font-weight: bolder; } - -small, .small { - font-size: 0.875em; } - -mark, .mark { - padding: 0.2em; - background-color: #fcf8e3; } - -sub, -sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; } - -sub { - bottom: -.25em; } - -sup { - top: -.5em; } - -a { - color: #0d6efd; - text-decoration: underline; } - a:hover { - color: #0a58ca; } - -a:not([href]):not([class]), a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } - -pre, -code, -kbd, -samp { - font-family: var(--bs-font-monospace); - font-size: 1em; - direction: ltr /* rtl:ignore */; - unicode-bidi: bidi-override; } - -pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; } - pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - -code { - font-size: 0.875em; - color: #d63384; - word-wrap: break-word; } - a > code { - color: inherit; } - -kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; } - -figure { - margin: 0 0 1rem; } - -img, -svg { - vertical-align: middle; } - -table { - caption-side: bottom; - border-collapse: collapse; } - -caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: #6c757d; - text-align: left; } - -th { - text-align: inherit; - text-align: -webkit-match-parent; } - -thead, -tbody, -tfoot, -tr, -td, -th { - border-color: inherit; - border-style: solid; - border-width: 0; } - -label { - display: inline-block; } - -button { - border-radius: 0; } - -button:focus:not(:focus-visible) { - outline: 0; } - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - -button, -select { - text-transform: none; } - -[role=\\"button\\"] { - cursor: pointer; } - -select { - word-wrap: normal; } - select:disabled { - opacity: 1; } - -[list]::-webkit-calendar-picker-indicator { - display: none; } - -button, -[type=\\"button\\"], -[type=\\"reset\\"], -[type=\\"submit\\"] { - -webkit-appearance: button; } - button:not(:disabled), - [type=\\"button\\"]:not(:disabled), - [type=\\"reset\\"]:not(:disabled), - [type=\\"submit\\"]:not(:disabled) { - cursor: pointer; } - -::-moz-focus-inner { - padding: 0; - border-style: none; } - -textarea { - resize: vertical; } - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - -legend { - float: left; - width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: calc(1.275rem + 0.3vw); - line-height: inherit; } - @media (min-width: 1200px) { - legend { - font-size: 1.5rem; } } - legend + * { - clear: left; } - -::-webkit-datetime-edit-fields-wrapper, -::-webkit-datetime-edit-text, -::-webkit-datetime-edit-minute, -::-webkit-datetime-edit-hour-field, -::-webkit-datetime-edit-day-field, -::-webkit-datetime-edit-month-field, -::-webkit-datetime-edit-year-field { - padding: 0; } - -::-webkit-inner-spin-button { - height: auto; } - -[type=\\"search\\"] { - outline-offset: -2px; - -webkit-appearance: textfield; } - -/* rtl:raw: -[type=\\"tel\\"], -[type=\\"url\\"], -[type=\\"email\\"], -[type=\\"number\\"] { - direction: ltr; -} -*/ -::-webkit-search-decoration { - -webkit-appearance: none; } - -::-webkit-color-swatch-wrapper { - padding: 0; } - -::file-selector-button { - font: inherit; } - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - -output { - display: inline-block; } - -iframe { - border: 0; } - -summary { - display: list-item; - cursor: pointer; } - -progress { - vertical-align: baseline; } - -[hidden] { - display: none !important; } - -.lead { - font-size: 1.25rem; - font-weight: 300; } - -.display-1 { - font-size: calc(1.625rem + 4.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-1 { - font-size: 5rem; } } - -.display-2 { - font-size: calc(1.575rem + 3.9vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-2 { - font-size: 4.5rem; } } - -.display-3 { - font-size: calc(1.525rem + 3.3vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-3 { - font-size: 4rem; } } - -.display-4 { - font-size: calc(1.475rem + 2.7vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-4 { - font-size: 3.5rem; } } - -.display-5 { - font-size: calc(1.425rem + 2.1vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-5 { - font-size: 3rem; } } - -.display-6 { - font-size: calc(1.375rem + 1.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .display-6 { - font-size: 2.5rem; } } - -.list-unstyled { - padding-left: 0; - list-style: none; } - -.list-inline { - padding-left: 0; - list-style: none; } - -.list-inline-item { - display: inline-block; } - .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } - -.initialism { - font-size: 0.875em; - text-transform: uppercase; } - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } - .blockquote > :last-child { - margin-bottom: 0; } - -.blockquote-footer { - margin-top: -1rem; - margin-bottom: 1rem; - font-size: 0.875em; - color: #6c757d; } - .blockquote-footer::before { - content: \\"\\\\2014\\\\00A0\\"; } - -.img-fluid { - max-width: 100%; - height: auto; } - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; } - -.figure { - display: inline-block; } - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; } - -.figure-caption { - font-size: 0.875em; - color: #6c757d; } - -.container, -.container-fluid, -.container-sm, -.container-md, -.container-lg, -.container-xl, -.container-xxl { - width: 100%; - padding-right: var(--bs-gutter-x, 0.75rem); - padding-left: var(--bs-gutter-x, 0.75rem); - margin-right: auto; - margin-left: auto; } - -@media (min-width: 576px) { - .container, .container-sm { - max-width: 540px; } } - -@media (min-width: 768px) { - .container, .container-sm, .container-md { - max-width: 720px; } } - -@media (min-width: 992px) { - .container, .container-sm, .container-md, .container-lg { - max-width: 960px; } } - -@media (min-width: 1200px) { - .container, .container-sm, .container-md, .container-lg, .container-xl { - max-width: 1140px; } } - -@media (min-width: 1400px) { - .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { - max-width: 1320px; } } - -.row { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - display: flex; - flex-wrap: wrap; - margin-top: calc(-1 * var(--bs-gutter-y)); - margin-right: calc(-.5 * var(--bs-gutter-x)); - margin-left: calc(-.5 * var(--bs-gutter-x)); } - .row > * { - flex-shrink: 0; - width: 100%; - max-width: 100%; - padding-right: calc(var(--bs-gutter-x) * .5); - padding-left: calc(var(--bs-gutter-x) * .5); - margin-top: var(--bs-gutter-y); } - -.col { - flex: 1 0 0%; } - -.row-cols-auto > * { - flex: 0 0 auto; - width: auto; } - -.row-cols-1 > * { - flex: 0 0 auto; - width: 100%; } - -.row-cols-2 > * { - flex: 0 0 auto; - width: 50%; } - -.row-cols-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - -.row-cols-4 > * { - flex: 0 0 auto; - width: 25%; } - -.row-cols-5 > * { - flex: 0 0 auto; - width: 20%; } - -.row-cols-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - -.col-auto { - flex: 0 0 auto; - width: auto; } - -.col-1 { - flex: 0 0 auto; - width: 8.33333%; } - -.col-2 { - flex: 0 0 auto; - width: 16.66667%; } - -.col-3 { - flex: 0 0 auto; - width: 25%; } - -.col-4 { - flex: 0 0 auto; - width: 33.33333%; } - -.col-5 { - flex: 0 0 auto; - width: 41.66667%; } - -.col-6 { - flex: 0 0 auto; - width: 50%; } - -.col-7 { - flex: 0 0 auto; - width: 58.33333%; } - -.col-8 { - flex: 0 0 auto; - width: 66.66667%; } - -.col-9 { - flex: 0 0 auto; - width: 75%; } - -.col-10 { - flex: 0 0 auto; - width: 83.33333%; } - -.col-11 { - flex: 0 0 auto; - width: 91.66667%; } - -.col-12 { - flex: 0 0 auto; - width: 100%; } - -.offset-1 { - margin-left: 8.33333%; } - -.offset-2 { - margin-left: 16.66667%; } - -.offset-3 { - margin-left: 25%; } - -.offset-4 { - margin-left: 33.33333%; } - -.offset-5 { - margin-left: 41.66667%; } - -.offset-6 { - margin-left: 50%; } - -.offset-7 { - margin-left: 58.33333%; } - -.offset-8 { - margin-left: 66.66667%; } - -.offset-9 { - margin-left: 75%; } - -.offset-10 { - margin-left: 83.33333%; } - -.offset-11 { - margin-left: 91.66667%; } - -.g-0, -.gx-0 { - --bs-gutter-x: 0; } - -.g-0, -.gy-0 { - --bs-gutter-y: 0; } - -.g-1, -.gx-1 { - --bs-gutter-x: 0.25rem; } - -.g-1, -.gy-1 { - --bs-gutter-y: 0.25rem; } - -.g-2, -.gx-2 { - --bs-gutter-x: 0.5rem; } - -.g-2, -.gy-2 { - --bs-gutter-y: 0.5rem; } - -.g-3, -.gx-3 { - --bs-gutter-x: 1rem; } - -.g-3, -.gy-3 { - --bs-gutter-y: 1rem; } - -.g-4, -.gx-4 { - --bs-gutter-x: 1.5rem; } - -.g-4, -.gy-4 { - --bs-gutter-y: 1.5rem; } - -.g-5, -.gx-5 { - --bs-gutter-x: 3rem; } - -.g-5, -.gy-5 { - --bs-gutter-y: 3rem; } - -@media (min-width: 576px) { - .col-sm { - flex: 1 0 0%; } - .row-cols-sm-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-sm-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-sm-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-sm-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-sm-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-sm-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-sm-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-sm-auto { - flex: 0 0 auto; - width: auto; } - .col-sm-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-sm-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-sm-3 { - flex: 0 0 auto; - width: 25%; } - .col-sm-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-sm-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-sm-6 { - flex: 0 0 auto; - width: 50%; } - .col-sm-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-sm-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-sm-9 { - flex: 0 0 auto; - width: 75%; } - .col-sm-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-sm-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-sm-12 { - flex: 0 0 auto; - width: 100%; } - .offset-sm-0 { - margin-left: 0; } - .offset-sm-1 { - margin-left: 8.33333%; } - .offset-sm-2 { - margin-left: 16.66667%; } - .offset-sm-3 { - margin-left: 25%; } - .offset-sm-4 { - margin-left: 33.33333%; } - .offset-sm-5 { - margin-left: 41.66667%; } - .offset-sm-6 { - margin-left: 50%; } - .offset-sm-7 { - margin-left: 58.33333%; } - .offset-sm-8 { - margin-left: 66.66667%; } - .offset-sm-9 { - margin-left: 75%; } - .offset-sm-10 { - margin-left: 83.33333%; } - .offset-sm-11 { - margin-left: 91.66667%; } - .g-sm-0, - .gx-sm-0 { - --bs-gutter-x: 0; } - .g-sm-0, - .gy-sm-0 { - --bs-gutter-y: 0; } - .g-sm-1, - .gx-sm-1 { - --bs-gutter-x: 0.25rem; } - .g-sm-1, - .gy-sm-1 { - --bs-gutter-y: 0.25rem; } - .g-sm-2, - .gx-sm-2 { - --bs-gutter-x: 0.5rem; } - .g-sm-2, - .gy-sm-2 { - --bs-gutter-y: 0.5rem; } - .g-sm-3, - .gx-sm-3 { - --bs-gutter-x: 1rem; } - .g-sm-3, - .gy-sm-3 { - --bs-gutter-y: 1rem; } - .g-sm-4, - .gx-sm-4 { - --bs-gutter-x: 1.5rem; } - .g-sm-4, - .gy-sm-4 { - --bs-gutter-y: 1.5rem; } - .g-sm-5, - .gx-sm-5 { - --bs-gutter-x: 3rem; } - .g-sm-5, - .gy-sm-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 768px) { - .col-md { - flex: 1 0 0%; } - .row-cols-md-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-md-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-md-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-md-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-md-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-md-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-md-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-md-auto { - flex: 0 0 auto; - width: auto; } - .col-md-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-md-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-md-3 { - flex: 0 0 auto; - width: 25%; } - .col-md-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-md-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-md-6 { - flex: 0 0 auto; - width: 50%; } - .col-md-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-md-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-md-9 { - flex: 0 0 auto; - width: 75%; } - .col-md-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-md-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-md-12 { - flex: 0 0 auto; - width: 100%; } - .offset-md-0 { - margin-left: 0; } - .offset-md-1 { - margin-left: 8.33333%; } - .offset-md-2 { - margin-left: 16.66667%; } - .offset-md-3 { - margin-left: 25%; } - .offset-md-4 { - margin-left: 33.33333%; } - .offset-md-5 { - margin-left: 41.66667%; } - .offset-md-6 { - margin-left: 50%; } - .offset-md-7 { - margin-left: 58.33333%; } - .offset-md-8 { - margin-left: 66.66667%; } - .offset-md-9 { - margin-left: 75%; } - .offset-md-10 { - margin-left: 83.33333%; } - .offset-md-11 { - margin-left: 91.66667%; } - .g-md-0, - .gx-md-0 { - --bs-gutter-x: 0; } - .g-md-0, - .gy-md-0 { - --bs-gutter-y: 0; } - .g-md-1, - .gx-md-1 { - --bs-gutter-x: 0.25rem; } - .g-md-1, - .gy-md-1 { - --bs-gutter-y: 0.25rem; } - .g-md-2, - .gx-md-2 { - --bs-gutter-x: 0.5rem; } - .g-md-2, - .gy-md-2 { - --bs-gutter-y: 0.5rem; } - .g-md-3, - .gx-md-3 { - --bs-gutter-x: 1rem; } - .g-md-3, - .gy-md-3 { - --bs-gutter-y: 1rem; } - .g-md-4, - .gx-md-4 { - --bs-gutter-x: 1.5rem; } - .g-md-4, - .gy-md-4 { - --bs-gutter-y: 1.5rem; } - .g-md-5, - .gx-md-5 { - --bs-gutter-x: 3rem; } - .g-md-5, - .gy-md-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 992px) { - .col-lg { - flex: 1 0 0%; } - .row-cols-lg-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-lg-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-lg-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-lg-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-lg-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-lg-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-lg-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-lg-auto { - flex: 0 0 auto; - width: auto; } - .col-lg-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-lg-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-lg-3 { - flex: 0 0 auto; - width: 25%; } - .col-lg-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-lg-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-lg-6 { - flex: 0 0 auto; - width: 50%; } - .col-lg-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-lg-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-lg-9 { - flex: 0 0 auto; - width: 75%; } - .col-lg-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-lg-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-lg-12 { - flex: 0 0 auto; - width: 100%; } - .offset-lg-0 { - margin-left: 0; } - .offset-lg-1 { - margin-left: 8.33333%; } - .offset-lg-2 { - margin-left: 16.66667%; } - .offset-lg-3 { - margin-left: 25%; } - .offset-lg-4 { - margin-left: 33.33333%; } - .offset-lg-5 { - margin-left: 41.66667%; } - .offset-lg-6 { - margin-left: 50%; } - .offset-lg-7 { - margin-left: 58.33333%; } - .offset-lg-8 { - margin-left: 66.66667%; } - .offset-lg-9 { - margin-left: 75%; } - .offset-lg-10 { - margin-left: 83.33333%; } - .offset-lg-11 { - margin-left: 91.66667%; } - .g-lg-0, - .gx-lg-0 { - --bs-gutter-x: 0; } - .g-lg-0, - .gy-lg-0 { - --bs-gutter-y: 0; } - .g-lg-1, - .gx-lg-1 { - --bs-gutter-x: 0.25rem; } - .g-lg-1, - .gy-lg-1 { - --bs-gutter-y: 0.25rem; } - .g-lg-2, - .gx-lg-2 { - --bs-gutter-x: 0.5rem; } - .g-lg-2, - .gy-lg-2 { - --bs-gutter-y: 0.5rem; } - .g-lg-3, - .gx-lg-3 { - --bs-gutter-x: 1rem; } - .g-lg-3, - .gy-lg-3 { - --bs-gutter-y: 1rem; } - .g-lg-4, - .gx-lg-4 { - --bs-gutter-x: 1.5rem; } - .g-lg-4, - .gy-lg-4 { - --bs-gutter-y: 1.5rem; } - .g-lg-5, - .gx-lg-5 { - --bs-gutter-x: 3rem; } - .g-lg-5, - .gy-lg-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 1200px) { - .col-xl { - flex: 1 0 0%; } - .row-cols-xl-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-xl-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-xl-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-xl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-xl-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-xl-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-xl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-xl-auto { - flex: 0 0 auto; - width: auto; } - .col-xl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-xl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-xl-3 { - flex: 0 0 auto; - width: 25%; } - .col-xl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-xl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-xl-6 { - flex: 0 0 auto; - width: 50%; } - .col-xl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-xl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-xl-9 { - flex: 0 0 auto; - width: 75%; } - .col-xl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-xl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-xl-12 { - flex: 0 0 auto; - width: 100%; } - .offset-xl-0 { - margin-left: 0; } - .offset-xl-1 { - margin-left: 8.33333%; } - .offset-xl-2 { - margin-left: 16.66667%; } - .offset-xl-3 { - margin-left: 25%; } - .offset-xl-4 { - margin-left: 33.33333%; } - .offset-xl-5 { - margin-left: 41.66667%; } - .offset-xl-6 { - margin-left: 50%; } - .offset-xl-7 { - margin-left: 58.33333%; } - .offset-xl-8 { - margin-left: 66.66667%; } - .offset-xl-9 { - margin-left: 75%; } - .offset-xl-10 { - margin-left: 83.33333%; } - .offset-xl-11 { - margin-left: 91.66667%; } - .g-xl-0, - .gx-xl-0 { - --bs-gutter-x: 0; } - .g-xl-0, - .gy-xl-0 { - --bs-gutter-y: 0; } - .g-xl-1, - .gx-xl-1 { - --bs-gutter-x: 0.25rem; } - .g-xl-1, - .gy-xl-1 { - --bs-gutter-y: 0.25rem; } - .g-xl-2, - .gx-xl-2 { - --bs-gutter-x: 0.5rem; } - .g-xl-2, - .gy-xl-2 { - --bs-gutter-y: 0.5rem; } - .g-xl-3, - .gx-xl-3 { - --bs-gutter-x: 1rem; } - .g-xl-3, - .gy-xl-3 { - --bs-gutter-y: 1rem; } - .g-xl-4, - .gx-xl-4 { - --bs-gutter-x: 1.5rem; } - .g-xl-4, - .gy-xl-4 { - --bs-gutter-y: 1.5rem; } - .g-xl-5, - .gx-xl-5 { - --bs-gutter-x: 3rem; } - .g-xl-5, - .gy-xl-5 { - --bs-gutter-y: 3rem; } } - -@media (min-width: 1400px) { - .col-xxl { - flex: 1 0 0%; } - .row-cols-xxl-auto > * { - flex: 0 0 auto; - width: auto; } - .row-cols-xxl-1 > * { - flex: 0 0 auto; - width: 100%; } - .row-cols-xxl-2 > * { - flex: 0 0 auto; - width: 50%; } - .row-cols-xxl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .row-cols-xxl-4 > * { - flex: 0 0 auto; - width: 25%; } - .row-cols-xxl-5 > * { - flex: 0 0 auto; - width: 20%; } - .row-cols-xxl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .col-xxl-auto { - flex: 0 0 auto; - width: auto; } - .col-xxl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .col-xxl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .col-xxl-3 { - flex: 0 0 auto; - width: 25%; } - .col-xxl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .col-xxl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .col-xxl-6 { - flex: 0 0 auto; - width: 50%; } - .col-xxl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .col-xxl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .col-xxl-9 { - flex: 0 0 auto; - width: 75%; } - .col-xxl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .col-xxl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .col-xxl-12 { - flex: 0 0 auto; - width: 100%; } - .offset-xxl-0 { - margin-left: 0; } - .offset-xxl-1 { - margin-left: 8.33333%; } - .offset-xxl-2 { - margin-left: 16.66667%; } - .offset-xxl-3 { - margin-left: 25%; } - .offset-xxl-4 { - margin-left: 33.33333%; } - .offset-xxl-5 { - margin-left: 41.66667%; } - .offset-xxl-6 { - margin-left: 50%; } - .offset-xxl-7 { - margin-left: 58.33333%; } - .offset-xxl-8 { - margin-left: 66.66667%; } - .offset-xxl-9 { - margin-left: 75%; } - .offset-xxl-10 { - margin-left: 83.33333%; } - .offset-xxl-11 { - margin-left: 91.66667%; } - .g-xxl-0, - .gx-xxl-0 { - --bs-gutter-x: 0; } - .g-xxl-0, - .gy-xxl-0 { - --bs-gutter-y: 0; } - .g-xxl-1, - .gx-xxl-1 { - --bs-gutter-x: 0.25rem; } - .g-xxl-1, - .gy-xxl-1 { - --bs-gutter-y: 0.25rem; } - .g-xxl-2, - .gx-xxl-2 { - --bs-gutter-x: 0.5rem; } - .g-xxl-2, - .gy-xxl-2 { - --bs-gutter-y: 0.5rem; } - .g-xxl-3, - .gx-xxl-3 { - --bs-gutter-x: 1rem; } - .g-xxl-3, - .gy-xxl-3 { - --bs-gutter-y: 1rem; } - .g-xxl-4, - .gx-xxl-4 { - --bs-gutter-x: 1.5rem; } - .g-xxl-4, - .gy-xxl-4 { - --bs-gutter-y: 1.5rem; } - .g-xxl-5, - .gx-xxl-5 { - --bs-gutter-x: 3rem; } - .g-xxl-5, - .gy-xxl-5 { - --bs-gutter-y: 3rem; } } - -.table { - --bs-table-bg: transparent; - --bs-table-accent-bg: transparent; - --bs-table-striped-color: #212529; - --bs-table-striped-bg: rgba(0, 0, 0, 0.05); - --bs-table-active-color: #212529; - --bs-table-active-bg: rgba(0, 0, 0, 0.1); - --bs-table-hover-color: #212529; - --bs-table-hover-bg: rgba(0, 0, 0, 0.075); - width: 100%; - margin-bottom: 1rem; - color: #212529; - vertical-align: top; - border-color: #dee2e6; } - .table > :not(caption) > * > * { - padding: 0.5rem 0.5rem; - background-color: var(--bs-table-bg); - border-bottom-width: 1px; - box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); } - .table > tbody { - vertical-align: inherit; } - .table > thead { - vertical-align: bottom; } - .table > :not(:first-child) { - border-top: 2px solid currentColor; } - -.caption-top { - caption-side: top; } - -.table-sm > :not(caption) > * > * { - padding: 0.25rem 0.25rem; } - -.table-bordered > :not(caption) > * { - border-width: 1px 0; } - .table-bordered > :not(caption) > * > * { - border-width: 0 1px; } - -.table-borderless > :not(caption) > * > * { - border-bottom-width: 0; } - -.table-borderless > :not(:first-child) { - border-top-width: 0; } - -.table-striped > tbody > tr:nth-of-type(odd) > * { - --bs-table-accent-bg: var(--bs-table-striped-bg); - color: var(--bs-table-striped-color); } - -.table-active { - --bs-table-accent-bg: var(--bs-table-active-bg); - color: var(--bs-table-active-color); } - -.table-hover > tbody > tr:hover > * { - --bs-table-accent-bg: var(--bs-table-hover-bg); - color: var(--bs-table-hover-color); } - -.table-primary { - --bs-table-bg: #cfe2ff; - --bs-table-striped-bg: #c5d7f2; - --bs-table-striped-color: #000; - --bs-table-active-bg: #bacbe6; - --bs-table-active-color: #000; - --bs-table-hover-bg: #bfd1ec; - --bs-table-hover-color: #000; - color: #000; - border-color: #bacbe6; } - -.table-secondary { - --bs-table-bg: #e2e3e5; - --bs-table-striped-bg: #d7d8da; - --bs-table-striped-color: #000; - --bs-table-active-bg: #cbccce; - --bs-table-active-color: #000; - --bs-table-hover-bg: #d1d2d4; - --bs-table-hover-color: #000; - color: #000; - border-color: #cbccce; } - -.table-success { - --bs-table-bg: #d1e7dd; - --bs-table-striped-bg: #c7dbd2; - --bs-table-striped-color: #000; - --bs-table-active-bg: #bcd0c7; - --bs-table-active-color: #000; - --bs-table-hover-bg: #c1d6cc; - --bs-table-hover-color: #000; - color: #000; - border-color: #bcd0c7; } - -.table-info { - --bs-table-bg: #cff4fc; - --bs-table-striped-bg: #c5e8ef; - --bs-table-striped-color: #000; - --bs-table-active-bg: #badce3; - --bs-table-active-color: #000; - --bs-table-hover-bg: #bfe2e9; - --bs-table-hover-color: #000; - color: #000; - border-color: #badce3; } - -.table-warning { - --bs-table-bg: #fff3cd; - --bs-table-striped-bg: #f2e7c3; - --bs-table-striped-color: #000; - --bs-table-active-bg: #e6dbb9; - --bs-table-active-color: #000; - --bs-table-hover-bg: #ece1be; - --bs-table-hover-color: #000; - color: #000; - border-color: #e6dbb9; } - -.table-danger { - --bs-table-bg: #f8d7da; - --bs-table-striped-bg: #eccccf; - --bs-table-striped-color: #000; - --bs-table-active-bg: #dfc2c4; - --bs-table-active-color: #000; - --bs-table-hover-bg: #e5c7ca; - --bs-table-hover-color: #000; - color: #000; - border-color: #dfc2c4; } - -.table-light { - --bs-table-bg: #f8f9fa; - --bs-table-striped-bg: #ecedee; - --bs-table-striped-color: #000; - --bs-table-active-bg: #dfe0e1; - --bs-table-active-color: #000; - --bs-table-hover-bg: #e5e6e7; - --bs-table-hover-color: #000; - color: #000; - border-color: #dfe0e1; } - -.table-dark { - --bs-table-bg: #212529; - --bs-table-striped-bg: #2c3034; - --bs-table-striped-color: #fff; - --bs-table-active-bg: #373b3e; - --bs-table-active-color: #fff; - --bs-table-hover-bg: #323539; - --bs-table-hover-color: #fff; - color: #fff; - border-color: #373b3e; } - -.table-responsive { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } - -@media (max-width: 575.98px) { - .table-responsive-sm { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 767.98px) { - .table-responsive-md { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 991.98px) { - .table-responsive-lg { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 1199.98px) { - .table-responsive-xl { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -@media (max-width: 1399.98px) { - .table-responsive-xxl { - overflow-x: auto; - -webkit-overflow-scrolling: touch; } } - -.form-label { - margin-bottom: 0.5rem; } - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; } - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; } - -.form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: #6c757d; } - -.form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - appearance: none; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; } } - .form-control[type=\\"file\\"] { - overflow: hidden; } - .form-control[type=\\"file\\"]:not(:disabled):not([readonly]) { - cursor: pointer; } - .form-control:focus { - color: #212529; - background-color: #fff; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-control::-webkit-date-and-time-value { - height: 1.5em; } - .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - .form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control::file-selector-button { - transition: none; } } - .form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: #dde0e3; } - .form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-control::-webkit-file-upload-button { - transition: none; } } - .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: #dde0e3; } - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } - -.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - -.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - -textarea.form-control { - min-height: calc(1.5em + 0.75rem + 2px); } - -textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); } - -textarea.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); } - -.form-control-color { - width: 3rem; - height: auto; - padding: 0.375rem; } - .form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; } - .form-control-color::-moz-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .form-control-color::-webkit-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - -.form-select { - display: block; - width: 100%; - padding: 0.375rem 2.25rem 0.375rem 0.75rem; - -moz-padding-start: calc(0.75rem - 3px); - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .form-select { - transition: none; } } - .form-select:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-select[multiple], .form-select[size]:not([size=\\"1\\"]) { - padding-right: 0.75rem; - background-image: none; } - .form-select:disabled { - background-color: #e9ecef; } - .form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #212529; } - -.form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - -.form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - -.form-check { - display: block; - min-height: 1.5rem; - padding-left: 1.5em; - margin-bottom: 0.125rem; } - .form-check .form-check-input { - float: left; - margin-left: -1.5em; } - -.form-check-input { - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - background-color: #fff; - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: 1px solid rgba(0, 0, 0, 0.25); - appearance: none; - color-adjust: exact; } - .form-check-input[type=\\"checkbox\\"] { - border-radius: 0.25em; } - .form-check-input[type=\\"radio\\"] { - border-radius: 50%; } - .form-check-input:active { - filter: brightness(90%); } - .form-check-input:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-check-input:checked { - background-color: #0d6efd; - border-color: #0d6efd; } - .form-check-input:checked[type=\\"checkbox\\"] { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\\"); } - .form-check-input:checked[type=\\"radio\\"] { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\\"); } - .form-check-input[type=\\"checkbox\\"]:indeterminate { - background-color: #0d6efd; - border-color: #0d6efd; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\\"); } - .form-check-input:disabled { - pointer-events: none; - filter: none; - opacity: 0.5; } - .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { - opacity: 0.5; } - -.form-switch { - padding-left: 2.5em; } - .form-switch .form-check-input { - width: 2em; - margin-left: -2.5em; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\\"); - background-position: left center; - border-radius: 2em; - transition: background-position 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-switch .form-check-input { - transition: none; } } - .form-switch .form-check-input:focus { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\\"); } - .form-switch .form-check-input:checked { - background-position: right center; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\\"); } - -.form-check-inline { - display: inline-block; - margin-right: 1rem; } - -.btn-check { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - .btn-check[disabled] + .btn, .btn-check:disabled + .btn { - pointer-events: none; - filter: none; - opacity: 0.65; } - -.form-range { - width: 100%; - height: 1.5rem; - padding: 0; - background-color: transparent; - appearance: none; } - .form-range:focus { - outline: 0; } - .form-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .form-range::-moz-focus-outer { - border: 0; } - .form-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .form-range::-webkit-slider-thumb { - transition: none; } } - .form-range::-webkit-slider-thumb:active { - background-color: #b6d4fe; } - .form-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .form-range::-moz-range-thumb { - transition: none; } } - .form-range::-moz-range-thumb:active { - background-color: #b6d4fe; } - .form-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .form-range:disabled { - pointer-events: none; } - .form-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .form-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - -.form-floating { - position: relative; } - .form-floating > .form-control, - .form-floating > .form-select { - height: calc(3.5rem + 2px); - line-height: 1.25; } - .form-floating > label { - position: absolute; - top: 0; - left: 0; - height: 100%; - padding: 1rem 0.75rem; - pointer-events: none; - border: 1px solid transparent; - transform-origin: 0 0; - transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .form-floating > label { - transition: none; } } - .form-floating > .form-control { - padding: 1rem 0.75rem; } - .form-floating > .form-control::placeholder { - color: transparent; } - .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .form-floating > .form-control:-webkit-autofill { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .form-floating > .form-select { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .form-floating > .form-control:focus ~ label, - .form-floating > .form-control:not(:placeholder-shown) ~ label, - .form-floating > .form-select ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .form-floating > .form-control:-webkit-autofill ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .input-group > .form-control, - .input-group > .form-select { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; } - .input-group > .form-control:focus, - .input-group > .form-select:focus { - z-index: 3; } - .input-group .btn { - position: relative; - z-index: 2; } - .input-group .btn:focus { - z-index: 3; } - -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - -.input-group-lg > .form-control, -.input-group-lg > .form-select, -.input-group-lg > .input-group-text, -.input-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - -.input-group-sm > .form-control, -.input-group-sm > .form-select, -.input-group-sm > .input-group-text, -.input-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - -.input-group-lg > .form-select, -.input-group-sm > .form-select { - padding-right: 3rem; } - -.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), -.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), -.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #198754; } - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(25, 135, 84, 0.9); - border-radius: 0.25rem; } - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; } - -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #198754; - padding-right: calc(1.5em + 0.75rem); - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - -.was-validated .form-select:valid, .form-select.is-valid { - border-color: #198754; } - .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size=\\"1\\"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size=\\"1\\"] { - padding-right: 4.125rem; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\\"); - background-position: right 0.75rem center, center right 2.25rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-select:valid:focus, .form-select.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - -.was-validated .form-check-input:valid, .form-check-input.is-valid { - border-color: #198754; } - .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { - background-color: #198754; } - .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #198754; } - -.form-check-inline .form-check-input ~ .valid-feedback { - margin-left: .5em; } - -.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated -.input-group .form-select:valid, -.input-group .form-select.is-valid { - z-index: 1; } - .was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated - .input-group .form-select:valid:focus, - .input-group .form-select.is-valid:focus { - z-index: 3; } - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #dc3545; } - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; } - -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - -.was-validated .form-select:invalid, .form-select.is-invalid { - border-color: #dc3545; } - .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size=\\"1\\"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size=\\"1\\"] { - padding-right: 4.125rem; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\\"), url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\\"); - background-position: right 0.75rem center, center right 2.25rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - -.was-validated .form-check-input:invalid, .form-check-input.is-invalid { - border-color: #dc3545; } - .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { - background-color: #dc3545; } - .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } - -.form-check-inline .form-check-input ~ .invalid-feedback { - margin-left: .5em; } - -.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated -.input-group .form-select:invalid, -.input-group .form-select.is-invalid { - z-index: 2; } - .was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated - .input-group .form-select:invalid:focus, - .input-group .form-select.is-invalid:focus { - z-index: 3; } - -.btn { - display: inline-block; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - text-decoration: none; - vertical-align: middle; - cursor: pointer; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .btn { - transition: none; } } - .btn:hover { - color: #212529; } - .btn-check:focus + .btn, .btn:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .btn:disabled, .btn.disabled, - fieldset:disabled .btn { - pointer-events: none; - opacity: 0.65; } - -.btn-primary { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-primary:hover { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; } - .btn-check:focus + .btn-primary, .btn-primary:focus { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .btn-check:checked + .btn-primary, - .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, - .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0a58ca; - border-color: #0a53be; } - .btn-check:checked + .btn-primary:focus, - .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, - .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .btn-primary:disabled, .btn-primary.disabled { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-secondary:hover { - color: #fff; - background-color: #5c636a; - border-color: #565e64; } - .btn-check:focus + .btn-secondary, .btn-secondary:focus { - color: #fff; - background-color: #5c636a; - border-color: #565e64; - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-check:checked + .btn-secondary, - .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, - .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #565e64; - border-color: #51585e; } - .btn-check:checked + .btn-secondary:focus, - .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, - .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-secondary:disabled, .btn-secondary.disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - -.btn-success { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-success:hover { - color: #fff; - background-color: #157347; - border-color: #146c43; } - .btn-check:focus + .btn-success, .btn-success:focus { - color: #fff; - background-color: #157347; - border-color: #146c43; - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-check:checked + .btn-success, - .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, - .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #146c43; - border-color: #13653f; } - .btn-check:checked + .btn-success:focus, - .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, - .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-success:disabled, .btn-success.disabled { - color: #fff; - background-color: #198754; - border-color: #198754; } - -.btn-info { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-info:hover { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; } - .btn-check:focus + .btn-info, .btn-info:focus { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-check:checked + .btn-info, - .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, - .show > .btn-info.dropdown-toggle { - color: #000; - background-color: #3dd5f3; - border-color: #25cff2; } - .btn-check:checked + .btn-info:focus, - .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, - .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-info:disabled, .btn-info.disabled { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - -.btn-warning { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-warning:hover { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; } - .btn-check:focus + .btn-warning, .btn-warning:focus { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-check:checked + .btn-warning, - .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, - .show > .btn-warning.dropdown-toggle { - color: #000; - background-color: #ffcd39; - border-color: #ffc720; } - .btn-check:checked + .btn-warning:focus, - .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, - .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-warning:disabled, .btn-warning.disabled { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-danger:hover { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; } - .btn-check:focus + .btn-danger, .btn-danger:focus { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-check:checked + .btn-danger, - .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, - .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b02a37; - border-color: #a52834; } - .btn-check:checked + .btn-danger:focus, - .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, - .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-danger:disabled, .btn-danger.disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - -.btn-light { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-light:hover { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:focus + .btn-light, .btn-light:focus { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-check:checked + .btn-light, - .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, - .show > .btn-light.dropdown-toggle { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:checked + .btn-light:focus, - .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, - .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-light:disabled, .btn-light.disabled { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - -.btn-dark { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-dark:hover { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; } - .btn-check:focus + .btn-dark, .btn-dark:focus { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-check:checked + .btn-dark, - .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, - .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1a1e21; - border-color: #191c1f; } - .btn-check:checked + .btn-dark:focus, - .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, - .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-dark:disabled, .btn-dark.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; } - -.btn-outline-primary { - color: #0d6efd; - border-color: #0d6efd; } - .btn-outline-primary:hover { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .btn-check:checked + .btn-outline-primary, - .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:checked + .btn-outline-primary:focus, - .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .btn-outline-primary:disabled, .btn-outline-primary.disabled { - color: #0d6efd; - background-color: transparent; } - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-check:checked + .btn-outline-secondary, - .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:checked + .btn-outline-secondary:focus, - .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-outline-secondary:disabled, .btn-outline-secondary.disabled { - color: #6c757d; - background-color: transparent; } - -.btn-outline-success { - color: #198754; - border-color: #198754; } - .btn-outline-success:hover { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:focus + .btn-outline-success, .btn-outline-success:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-check:checked + .btn-outline-success, - .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:checked + .btn-outline-success:focus, - .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-outline-success:disabled, .btn-outline-success.disabled { - color: #198754; - background-color: transparent; } - -.btn-outline-info { - color: #0dcaf0; - border-color: #0dcaf0; } - .btn-outline-info:hover { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:focus + .btn-outline-info, .btn-outline-info:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-check:checked + .btn-outline-info, - .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:checked + .btn-outline-info:focus, - .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-outline-info:disabled, .btn-outline-info.disabled { - color: #0dcaf0; - background-color: transparent; } - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .btn-outline-warning:hover { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-check:checked + .btn-outline-warning, - .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:checked + .btn-outline-warning:focus, - .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-outline-warning:disabled, .btn-outline-warning.disabled { - color: #ffc107; - background-color: transparent; } - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-check:checked + .btn-outline-danger, - .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:checked + .btn-outline-danger:focus, - .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-outline-danger:disabled, .btn-outline-danger.disabled { - color: #dc3545; - background-color: transparent; } - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .btn-outline-light:hover { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:focus + .btn-outline-light, .btn-outline-light:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-check:checked + .btn-outline-light, - .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:checked + .btn-outline-light:focus, - .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-outline-light:disabled, .btn-outline-light.disabled { - color: #f8f9fa; - background-color: transparent; } - -.btn-outline-dark { - color: #212529; - border-color: #212529; } - .btn-outline-dark:hover { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-check:checked + .btn-outline-dark, - .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:checked + .btn-outline-dark:focus, - .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-outline-dark:disabled, .btn-outline-dark.disabled { - color: #212529; - background-color: transparent; } - -.btn-link { - font-weight: 400; - color: #0d6efd; - text-decoration: underline; } - .btn-link:hover { - color: #0a58ca; } - .btn-link:disabled, .btn-link.disabled { - color: #6c757d; } - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - -.fade { - transition: opacity 0.15s linear; } - @media (prefers-reduced-motion: reduce) { - .fade { - transition: none; } } - .fade:not(.show) { - opacity: 0; } - -.collapse:not(.show) { - display: none; } - -.collapsing { - height: 0; - overflow: hidden; - transition: height 0.35s ease; } - @media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; } } - .collapsing.collapse-horizontal { - width: 0; - height: auto; - transition: width 0.35s ease; } - @media (prefers-reduced-motion: reduce) { - .collapsing.collapse-horizontal { - transition: none; } } - -.dropup, -.dropend, -.dropdown, -.dropstart { - position: relative; } - -.dropdown-toggle { - white-space: nowrap; } - .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropdown-menu { - position: absolute; - z-index: 1000; - display: none; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .dropdown-menu[data-bs-popper] { - top: 100%; - left: 0; - margin-top: 0.125rem; } - -.dropdown-menu-start { - --bs-position: start; } - .dropdown-menu-start[data-bs-popper] { - right: auto; - left: 0; } - -.dropdown-menu-end { - --bs-position: end; } - .dropdown-menu-end[data-bs-popper] { - right: 0; - left: auto; } - -@media (min-width: 576px) { - .dropdown-menu-sm-start { - --bs-position: start; } - .dropdown-menu-sm-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-sm-end { - --bs-position: end; } - .dropdown-menu-sm-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 768px) { - .dropdown-menu-md-start { - --bs-position: start; } - .dropdown-menu-md-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-md-end { - --bs-position: end; } - .dropdown-menu-md-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 992px) { - .dropdown-menu-lg-start { - --bs-position: start; } - .dropdown-menu-lg-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-lg-end { - --bs-position: end; } - .dropdown-menu-lg-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 1200px) { - .dropdown-menu-xl-start { - --bs-position: start; } - .dropdown-menu-xl-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-xl-end { - --bs-position: end; } - .dropdown-menu-xl-end[data-bs-popper] { - right: 0; - left: auto; } } - -@media (min-width: 1400px) { - .dropdown-menu-xxl-start { - --bs-position: start; } - .dropdown-menu-xxl-start[data-bs-popper] { - right: auto; - left: 0; } - .dropdown-menu-xxl-end { - --bs-position: end; } - .dropdown-menu-xxl-end[data-bs-popper] { - right: 0; - left: auto; } } - -.dropup .dropdown-menu[data-bs-popper] { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropend .dropdown-menu[data-bs-popper] { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - -.dropend .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } - -.dropend .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropend .dropdown-toggle::after { - vertical-align: 0; } - -.dropstart .dropdown-menu[data-bs-popper] { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } - -.dropstart .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; } - -.dropstart .dropdown-toggle::after { - display: none; } - -.dropstart .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: \\"\\"; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - -.dropstart .dropdown-toggle:empty::after { - margin-left: 0; } - -.dropstart .dropdown-toggle::before { - vertical-align: 0; } - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid rgba(0, 0, 0, 0.15); } - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - text-decoration: none; - white-space: nowrap; - background-color: transparent; - border: 0; } - .dropdown-item:hover, .dropdown-item:focus { - color: #1e2125; - background-color: #e9ecef; } - .dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #0d6efd; } - .dropdown-item.disabled, .dropdown-item:disabled { - color: #adb5bd; - pointer-events: none; - background-color: transparent; } - -.dropdown-menu.show { - display: block; } - -.dropdown-header { - display: block; - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - -.dropdown-item-text { - display: block; - padding: 0.25rem 1rem; - color: #212529; } - -.dropdown-menu-dark { - color: #dee2e6; - background-color: #343a40; - border-color: rgba(0, 0, 0, 0.15); } - .dropdown-menu-dark .dropdown-item { - color: #dee2e6; } - .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus { - color: #fff; - background-color: rgba(255, 255, 255, 0.15); } - .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active { - color: #fff; - background-color: #0d6efd; } - .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled { - color: #adb5bd; } - .dropdown-menu-dark .dropdown-divider { - border-color: rgba(0, 0, 0, 0.15); } - .dropdown-menu-dark .dropdown-item-text { - color: #dee2e6; } - .dropdown-menu-dark .dropdown-header { - color: #adb5bd; } - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .btn-group > .btn-check:checked + .btn, - .btn-group > .btn-check:focus + .btn, - .btn-group > .btn:hover, - .btn-group > .btn:focus, - .btn-group > .btn:active, - .btn-group > .btn.active, - .btn-group-vertical > .btn-check:checked + .btn, - .btn-group-vertical > .btn-check:focus + .btn, - .btn-group-vertical > .btn:hover, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 1; } - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .btn-toolbar .input-group { - width: auto; } - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.btn-group > .btn:nth-child(n + 3), -.btn-group > :not(.btn-check) + .btn, -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .dropdown-toggle-split::after, - .dropup .dropdown-toggle-split::after, - .dropend .dropdown-toggle-split::after { - margin-left: 0; } - .dropstart .dropdown-toggle-split::before { - margin-right: 0; } - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .btn-group-vertical > .btn, - .btn-group-vertical > .btn-group { - width: 100%; } - .btn-group-vertical > .btn:not(:first-child), - .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .btn-group-vertical > .btn ~ .btn, - .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - -.nav-link { - display: block; - padding: 0.5rem 1rem; - color: #0d6efd; - text-decoration: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .nav-link { - transition: none; } } - .nav-link:hover, .nav-link:focus { - color: #0a58ca; } - .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } - -.nav-tabs { - border-bottom: 1px solid #dee2e6; } - .nav-tabs .nav-link { - margin-bottom: -1px; - background: none; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; - isolation: isolate; } - .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .nav-tabs .nav-link.active, - .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.nav-pills .nav-link { - background: none; - border: 0; - border-radius: 0.25rem; } - -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #0d6efd; } - -.nav-fill > .nav-link, -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } - -.nav-justified > .nav-link, -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } - -.nav-fill .nav-item .nav-link, -.nav-justified .nav-item .nav-link { - width: 100%; } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .navbar > .container, - .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl { - display: flex; - flex-wrap: inherit; - align-items: center; - justify-content: space-between; } - -.navbar-brand { - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - text-decoration: none; - white-space: nowrap; } - -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .navbar-nav .dropdown-menu { - position: static; } - -.navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; } - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; - transition: box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .navbar-toggler { - transition: none; } } - .navbar-toggler:hover { - text-decoration: none; } - .navbar-toggler:focus { - text-decoration: none; - outline: 0; - box-shadow: 0 0 0 0.25rem; } - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-repeat: no-repeat; - background-position: center; - background-size: 100%; } - -.navbar-nav-scroll { - max-height: var(--bs-scroll-height, 75vh); - overflow-y: auto; } - -@media (min-width: 576px) { - .navbar-expand-sm { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-sm .navbar-toggler { - display: none; } - .navbar-expand-sm .offcanvas-header { - display: none; } - .navbar-expand-sm .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-sm .offcanvas-top, - .navbar-expand-sm .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-sm .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 768px) { - .navbar-expand-md { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-md .navbar-nav { - flex-direction: row; } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-md .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-md .navbar-toggler { - display: none; } - .navbar-expand-md .offcanvas-header { - display: none; } - .navbar-expand-md .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-md .offcanvas-top, - .navbar-expand-md .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-md .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 992px) { - .navbar-expand-lg { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-lg .navbar-toggler { - display: none; } - .navbar-expand-lg .offcanvas-header { - display: none; } - .navbar-expand-lg .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-lg .offcanvas-top, - .navbar-expand-lg .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-lg .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-xl .navbar-toggler { - display: none; } - .navbar-expand-xl .offcanvas-header { - display: none; } - .navbar-expand-xl .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-xl .offcanvas-top, - .navbar-expand-xl .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-xl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -@media (min-width: 1400px) { - .navbar-expand-xxl { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand-xxl .navbar-nav { - flex-direction: row; } - .navbar-expand-xxl .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand-xxl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand-xxl .navbar-nav-scroll { - overflow: visible; } - .navbar-expand-xxl .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand-xxl .navbar-toggler { - display: none; } - .navbar-expand-xxl .offcanvas-header { - display: none; } - .navbar-expand-xxl .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand-xxl .offcanvas-top, - .navbar-expand-xxl .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand-xxl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } } - -.navbar-expand { - flex-wrap: nowrap; - justify-content: flex-start; } - .navbar-expand .navbar-nav { - flex-direction: row; } - .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .navbar-expand .navbar-nav-scroll { - overflow: visible; } - .navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; } - .navbar-expand .navbar-toggler { - display: none; } - .navbar-expand .offcanvas-header { - display: none; } - .navbar-expand .offcanvas { - position: inherit; - bottom: 0; - z-index: 1000; - flex-grow: 1; - visibility: visible !important; - background-color: transparent; - border-right: 0; - border-left: 0; - transition: none; - transform: none; } - .navbar-expand .offcanvas-top, - .navbar-expand .offcanvas-bottom { - height: auto; - border-top: 0; - border-bottom: 0; } - .navbar-expand .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; } - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.55); } - .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } - -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.55); - border-color: rgba(0, 0, 0, 0.1); } - -.navbar-light .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.55); } - .navbar-light .navbar-text a, - .navbar-light .navbar-text a:hover, - .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } - -.navbar-dark .navbar-brand { - color: #fff; } - .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; } - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.55); } - .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(255, 255, 255, 0.1); } - -.navbar-dark .navbar-toggler-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\\"); } - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.55); } - .navbar-dark .navbar-text a, - .navbar-dark .navbar-text a:hover, - .navbar-dark .navbar-text a:focus { - color: #fff; } - -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .card > hr { - margin-right: 0; - margin-left: 0; } - .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .card > .card-header + .list-group, - .card > .list-group + .card-footer { - border-top: 0; } - -.card-body { - flex: 1 1 auto; - padding: 1rem 1rem; } - -.card-title { - margin-bottom: 0.5rem; } - -.card-subtitle { - margin-top: -0.25rem; - margin-bottom: 0; } - -.card-text:last-child { - margin-bottom: 0; } - -.card-link + .card-link { - margin-left: 1rem; } - -.card-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } - -.card-footer { - padding: 0.5rem 1rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } - -.card-header-tabs { - margin-right: -0.5rem; - margin-bottom: -0.5rem; - margin-left: -0.5rem; - border-bottom: 0; } - -.card-header-pills { - margin-right: -0.5rem; - margin-left: -0.5rem; } - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1rem; - border-radius: calc(0.25rem - 1px); } - -.card-img, -.card-img-top, -.card-img-bottom { - width: 100%; } - -.card-img, -.card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - -.card-group > .card { - margin-bottom: 0.75rem; } - -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-top, - .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .card-group > .card:not(:last-child) .card-img-bottom, - .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-top, - .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .card-group > .card:not(:first-child) .card-img-bottom, - .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - -.accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 1.25rem; - font-size: 1rem; - color: #212529; - text-align: left; - background-color: #fff; - border: 0; - border-radius: 0; - overflow-anchor: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .accordion-button { - transition: none; } } - .accordion-button:not(.collapsed) { - color: #0c63e4; - background-color: #e7f1ff; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); } - .accordion-button:not(.collapsed)::after { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); - transform: rotate(-180deg); } - .accordion-button::after { - flex-shrink: 0; - width: 1.25rem; - height: 1.25rem; - margin-left: auto; - content: \\"\\"; - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); - background-repeat: no-repeat; - background-size: 1.25rem; - transition: transform 0.2s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .accordion-button::after { - transition: none; } } - .accordion-button:hover { - z-index: 2; } - .accordion-button:focus { - z-index: 3; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - -.accordion-header { - margin-bottom: 0; } - -.accordion-item { - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .accordion-item:first-of-type { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .accordion-item:first-of-type .accordion-button { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .accordion-item:not(:first-of-type) { - border-top: 0; } - .accordion-item:last-of-type { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .accordion-item:last-of-type .accordion-collapse { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - -.accordion-body { - padding: 1rem 1.25rem; } - -.accordion-flush .accordion-collapse { - border-width: 0; } - -.accordion-flush .accordion-item { - border-right: 0; - border-left: 0; - border-radius: 0; } - .accordion-flush .accordion-item:first-child { - border-top: 0; } - .accordion-flush .accordion-item:last-child { - border-bottom: 0; } - .accordion-flush .accordion-item .accordion-button { - border-radius: 0; } - -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0 0; - margin-bottom: 1rem; - list-style: none; } - -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; } - .breadcrumb-item + .breadcrumb-item::before { - float: left; - padding-right: 0.5rem; - color: #6c757d; - content: var(--bs-breadcrumb-divider, \\"/\\") /* rtl: var(--bs-breadcrumb-divider, \\"/\\") */; } - -.breadcrumb-item.active { - color: #6c757d; } - -.pagination { - display: flex; - padding-left: 0; - list-style: none; } - -.page-link { - position: relative; - display: block; - color: #0d6efd; - text-decoration: none; - background-color: #fff; - border: 1px solid #dee2e6; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .page-link { - transition: none; } } - .page-link:hover { - z-index: 2; - color: #0a58ca; - background-color: #e9ecef; - border-color: #dee2e6; } - .page-link:focus { - z-index: 3; - color: #0a58ca; - background-color: #e9ecef; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - -.page-item:not(:first-child) .page-link { - margin-left: -1px; } - -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - background-color: #fff; - border-color: #dee2e6; } - -.page-link { - padding: 0.375rem 0.75rem; } - -.page-item:first-child .page-link { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; } - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; } - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; } - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; } - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; } - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; } - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; } - -.badge { - display: inline-block; - padding: 0.35em 0.65em; - font-size: 0.75em; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; } - .badge:empty { - display: none; } - -.btn .badge { - position: relative; - top: -1px; } - -.alert { - position: relative; - padding: 1rem 1rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; } - -.alert-heading { - color: inherit; } - -.alert-link { - font-weight: 700; } - -.alert-dismissible { - padding-right: 3rem; } - .alert-dismissible .btn-close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: 1.25rem 1rem; } - -.alert-primary { - color: #084298; - background-color: #cfe2ff; - border-color: #b6d4fe; } - .alert-primary .alert-link { - color: #06357a; } - -.alert-secondary { - color: #41464b; - background-color: #e2e3e5; - border-color: #d3d6d8; } - .alert-secondary .alert-link { - color: #34383c; } - -.alert-success { - color: #0f5132; - background-color: #d1e7dd; - border-color: #badbcc; } - .alert-success .alert-link { - color: #0c4128; } - -.alert-info { - color: #055160; - background-color: #cff4fc; - border-color: #b6effb; } - .alert-info .alert-link { - color: #04414d; } - -.alert-warning { - color: #664d03; - background-color: #fff3cd; - border-color: #ffecb5; } - .alert-warning .alert-link { - color: #523e02; } - -.alert-danger { - color: #842029; - background-color: #f8d7da; - border-color: #f5c2c7; } - .alert-danger .alert-link { - color: #6a1a21; } - -.alert-light { - color: #636464; - background-color: #fefefe; - border-color: #fdfdfe; } - .alert-light .alert-link { - color: #4f5050; } - -.alert-dark { - color: #141619; - background-color: #d3d3d4; - border-color: #bcbebf; } - .alert-dark .alert-link { - color: #101214; } - -@keyframes progress-bar-stripes { - 0% { - background-position-x: 1rem; } } - -.progress { - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; } - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #0d6efd; - transition: width 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; } } - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; } - -.progress-bar-animated { - animation: 1s linear infinite progress-bar-stripes; } - @media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; } } - -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } - -.list-group-numbered { - list-style-type: none; - counter-reset: section; } - .list-group-numbered > li::before { - content: counters(section, \\".\\") \\". \\"; - counter-increment: section; } - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } - -.list-group-item { - position: relative; - display: block; - padding: 0.5rem 1rem; - color: #212529; - text-decoration: none; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .list-group-item + .list-group-item { - border-top-width: 0; } - .list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } - -.list-group-horizontal { - flex-direction: row; } - .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } - -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -@media (min-width: 1400px) { - .list-group-horizontal-xxl { - flex-direction: row; } - .list-group-horizontal-xxl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .list-group-horizontal-xxl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .list-group-horizontal-xxl > .list-group-item.active { - margin-top: 0; } - .list-group-horizontal-xxl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - -.list-group-flush { - border-radius: 0; } - .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } - -.list-group-item-primary { - color: #084298; - background-color: #cfe2ff; } - .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #084298; - background-color: #bacbe6; } - .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #084298; - border-color: #084298; } - -.list-group-item-secondary { - color: #41464b; - background-color: #e2e3e5; } - .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #41464b; - background-color: #cbccce; } - .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #41464b; - border-color: #41464b; } - -.list-group-item-success { - color: #0f5132; - background-color: #d1e7dd; } - .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #0f5132; - background-color: #bcd0c7; } - .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #0f5132; - border-color: #0f5132; } - -.list-group-item-info { - color: #055160; - background-color: #cff4fc; } - .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #055160; - background-color: #badce3; } - .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #055160; - border-color: #055160; } - -.list-group-item-warning { - color: #664d03; - background-color: #fff3cd; } - .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #664d03; - background-color: #e6dbb9; } - .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #664d03; - border-color: #664d03; } - -.list-group-item-danger { - color: #842029; - background-color: #f8d7da; } - .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #842029; - background-color: #dfc2c4; } - .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #842029; - border-color: #842029; } - -.list-group-item-light { - color: #636464; - background-color: #fefefe; } - .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #636464; - background-color: #e5e5e5; } - .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #636464; - border-color: #636464; } - -.list-group-item-dark { - color: #141619; - background-color: #d3d3d4; } - .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #141619; - background-color: #bebebf; } - .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #141619; - border-color: #141619; } - -.btn-close { - box-sizing: content-box; - width: 1em; - height: 1em; - padding: 0.25em 0.25em; - color: #000; - background: transparent url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\\") center/1em auto no-repeat; - border: 0; - border-radius: 0.25rem; - opacity: 0.5; } - .btn-close:hover { - color: #000; - text-decoration: none; - opacity: 0.75; } - .btn-close:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); - opacity: 1; } - .btn-close:disabled, .btn-close.disabled { - pointer-events: none; - user-select: none; - opacity: 0.25; } - -.btn-close-white { - filter: invert(1) grayscale(100%) brightness(200%); } - -.toast { - width: 350px; - max-width: 100%; - font-size: 0.875rem; - pointer-events: auto; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .toast.showing { - opacity: 0; } - .toast:not(.show) { - display: none; } - -.toast-container { - width: max-content; - max-width: 100%; - pointer-events: none; } - .toast-container > :not(:last-child) { - margin-bottom: 0.75rem; } - -.toast-header { - display: flex; - align-items: center; - padding: 0.5rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .toast-header .btn-close { - margin-right: -0.375rem; - margin-left: 0.75rem; } - -.toast-body { - padding: 0.75rem; - word-wrap: break-word; } - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1055; - display: none; - width: 100%; - height: 100%; - overflow-x: hidden; - overflow-y: auto; - outline: 0; } - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; } - .modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); } - @media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; } } - .modal.show .modal-dialog { - transform: none; } - .modal.modal-static .modal-dialog { - transform: scale(1.02); } - -.modal-dialog-scrollable { - height: calc(100% - 1rem); } - .modal-dialog-scrollable .modal-content { - max-height: 100%; - overflow: hidden; } - .modal-dialog-scrollable .modal-body { - overflow-y: auto; } - -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); } - -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; } - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - width: 100vw; - height: 100vh; - background-color: #000; } - .modal-backdrop.fade { - opacity: 0; } - .modal-backdrop.show { - opacity: 0.5; } - -.modal-header { - display: flex; - flex-shrink: 0; - align-items: center; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .modal-header .btn-close { - padding: 0.5rem 0.5rem; - margin: -0.5rem -0.5rem -0.5rem auto; } - -.modal-title { - margin-bottom: 0; - line-height: 1.5; } - -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; } - -.modal-footer { - display: flex; - flex-wrap: wrap; - flex-shrink: 0; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(0.3rem - 1px); - border-bottom-left-radius: calc(0.3rem - 1px); } - .modal-footer > * { - margin: 0.25rem; } - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; } - .modal-dialog-scrollable { - height: calc(100% - 3.5rem); } - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); } - .modal-sm { - max-width: 300px; } } - -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; } } - -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; } } - -.modal-fullscreen { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen .modal-header { - border-radius: 0; } - .modal-fullscreen .modal-body { - overflow-y: auto; } - .modal-fullscreen .modal-footer { - border-radius: 0; } - -@media (max-width: 575.98px) { - .modal-fullscreen-sm-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-sm-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-sm-down .modal-header { - border-radius: 0; } - .modal-fullscreen-sm-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-sm-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 767.98px) { - .modal-fullscreen-md-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-md-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-md-down .modal-header { - border-radius: 0; } - .modal-fullscreen-md-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-md-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 991.98px) { - .modal-fullscreen-lg-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-lg-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-lg-down .modal-header { - border-radius: 0; } - .modal-fullscreen-lg-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-lg-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 1199.98px) { - .modal-fullscreen-xl-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-xl-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-xl-down .modal-header { - border-radius: 0; } - .modal-fullscreen-xl-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-xl-down .modal-footer { - border-radius: 0; } } - -@media (max-width: 1399.98px) { - .modal-fullscreen-xxl-down { - width: 100vw; - max-width: none; - height: 100%; - margin: 0; } - .modal-fullscreen-xxl-down .modal-content { - height: 100%; - border: 0; - border-radius: 0; } - .modal-fullscreen-xxl-down .modal-header { - border-radius: 0; } - .modal-fullscreen-xxl-down .modal-body { - overflow-y: auto; } - .modal-fullscreen-xxl-down .modal-footer { - border-radius: 0; } } - -.tooltip { - position: absolute; - z-index: 1080; - display: block; - margin: 0; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .tooltip.show { - opacity: 0.9; } - .tooltip .tooltip-arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .tooltip .tooltip-arrow::before { - position: absolute; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=\\"top\\"] { - padding: 0.4rem 0; } - .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"top\\"] .tooltip-arrow { - bottom: 0; } - .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"top\\"] .tooltip-arrow::before { - top: -1px; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - -.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=\\"right\\"] { - padding: 0 0.4rem; } - .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"right\\"] .tooltip-arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"right\\"] .tooltip-arrow::before { - right: -1px; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - -.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=\\"bottom\\"] { - padding: 0.4rem 0; } - .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"bottom\\"] .tooltip-arrow { - top: 0; } - .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"bottom\\"] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - -.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=\\"left\\"] { - padding: 0 0.4rem; } - .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=\\"left\\"] .tooltip-arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=\\"left\\"] .tooltip-arrow::before { - left: -1px; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } - -.popover { - position: absolute; - top: 0; - left: 0 /* rtl:ignore */; - z-index: 1070; - display: block; - max-width: 276px; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .popover .popover-arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; } - .popover .popover-arrow::before, .popover .popover-arrow::after { - position: absolute; - display: block; - content: \\"\\"; - border-color: transparent; - border-style: solid; } - -.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"top\\"] > .popover-arrow { - bottom: calc(-0.5rem - 1px); } - .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"top\\"] > .popover-arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"top\\"] > .popover-arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - -.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"right\\"] > .popover-arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; } - .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"right\\"] > .popover-arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"right\\"] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - -.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] > .popover-arrow { - top: calc(-0.5rem - 1px); } - .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - -.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=\\"bottom\\"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: \\"\\"; - border-bottom: 1px solid #f0f0f0; } - -.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=\\"left\\"] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; } - .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=\\"left\\"] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=\\"left\\"] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } - -.popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .popover-header:empty { - display: none; } - -.popover-body { - padding: 1rem 1rem; - color: #212529; } - -.carousel { - position: relative; } - -.carousel.pointer-event { - touch-action: pan-y; } - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; } - .carousel-inner::after { - display: block; - clear: both; - content: \\"\\"; } - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; } } - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; } - -/* rtl:begin:ignore */ -.carousel-item-next:not(.carousel-item-start), -.active.carousel-item-end { - transform: translateX(100%); } - -.carousel-item-prev:not(.carousel-item-end), -.active.carousel-item-start { - transform: translateX(-100%); } - -/* rtl:end:ignore */ -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; } - -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-start, -.carousel-fade .carousel-item-prev.carousel-item-end { - z-index: 1; - opacity: 1; } - -.carousel-fade .active.carousel-item-start, -.carousel-fade .active.carousel-item-end { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; } - @media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-start, - .carousel-fade .active.carousel-item-end { - transition: none; } } - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - padding: 0; - color: #fff; - text-align: center; - background: none; - border: 0; - opacity: 0.5; - transition: opacity 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; } } - .carousel-control-prev:hover, .carousel-control-prev:focus, - .carousel-control-next:hover, - .carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; } - -.carousel-control-prev { - left: 0; } - -.carousel-control-next { - right: 0; } - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 2rem; - height: 2rem; - background-repeat: no-repeat; - background-position: 50%; - background-size: 100% 100%; } - -/* rtl:options: { - \\"autoRename\\": true, - \\"stringMap\\":[ { - \\"name\\" : \\"prev-next\\", - \\"search\\" : \\"prev\\", - \\"replace\\" : \\"next\\" - } ] -} */ -.carousel-control-prev-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\\"); } - -.carousel-control-next-icon { - background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); } - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 2; - display: flex; - justify-content: center; - padding: 0; - margin-right: 15%; - margin-bottom: 1rem; - margin-left: 15%; - list-style: none; } - .carousel-indicators [data-bs-target] { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - padding: 0; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border: 0; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: 0.5; - transition: opacity 0.6s ease; } - @media (prefers-reduced-motion: reduce) { - .carousel-indicators [data-bs-target] { - transition: none; } } - .carousel-indicators .active { - opacity: 1; } - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 1.25rem; - left: 15%; - padding-top: 1.25rem; - padding-bottom: 1.25rem; - color: #fff; - text-align: center; } - -.carousel-dark .carousel-control-prev-icon, -.carousel-dark .carousel-control-next-icon { - filter: invert(1) grayscale(100); } - -.carousel-dark .carousel-indicators [data-bs-target] { - background-color: #000; } - -.carousel-dark .carousel-caption { - color: #000; } - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; } } - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; } - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } - -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -0.125em; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; } - -.spinner-grow-sm { - width: 1rem; - height: 1rem; } - -@media (prefers-reduced-motion: reduce) { - .spinner-border, - .spinner-grow { - animation-duration: 1.5s; } } - -.offcanvas { - position: fixed; - bottom: 0; - z-index: 1045; - display: flex; - flex-direction: column; - max-width: 100%; - visibility: hidden; - background-color: #fff; - background-clip: padding-box; - outline: 0; - transition: transform 0.3s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .offcanvas { - transition: none; } } - -.offcanvas-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; } - .offcanvas-backdrop.fade { - opacity: 0; } - .offcanvas-backdrop.show { - opacity: 0.5; } - -.offcanvas-header { - display: flex; - align-items: center; - justify-content: space-between; - padding: 1rem 1rem; } - .offcanvas-header .btn-close { - padding: 0.5rem 0.5rem; - margin-top: -0.5rem; - margin-right: -0.5rem; - margin-bottom: -0.5rem; } - -.offcanvas-title { - margin-bottom: 0; - line-height: 1.5; } - -.offcanvas-body { - flex-grow: 1; - padding: 1rem 1rem; - overflow-y: auto; } - -.offcanvas-start { - top: 0; - left: 0; - width: 400px; - border-right: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(-100%); } - -.offcanvas-end { - top: 0; - right: 0; - width: 400px; - border-left: 1px solid rgba(0, 0, 0, 0.2); - transform: translateX(100%); } - -.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(-100%); } - -.offcanvas-bottom { - right: 0; - left: 0; - height: 30vh; - max-height: 100%; - border-top: 1px solid rgba(0, 0, 0, 0.2); - transform: translateY(100%); } - -.offcanvas.show { - transform: none; } - -.placeholder { - display: inline-block; - min-height: 1em; - vertical-align: middle; - cursor: wait; - background-color: currentColor; - opacity: 0.5; } - .placeholder.btn::before { - display: inline-block; - content: \\"\\"; } - -.placeholder-xs { - min-height: .6em; } - -.placeholder-sm { - min-height: .8em; } - -.placeholder-lg { - min-height: 1.2em; } - -.placeholder-glow .placeholder { - animation: placeholder-glow 2s ease-in-out infinite; } - -@keyframes placeholder-glow { - 50% { - opacity: 0.2; } } - -.placeholder-wave { - mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); - mask-size: 200% 100%; - animation: placeholder-wave 2s linear infinite; } - -@keyframes placeholder-wave { - 100% { - mask-position: -200% 0%; } } - -.clearfix::after { - display: block; - clear: both; - content: \\"\\"; } - -.link-primary { - color: #0d6efd; } - .link-primary:hover, .link-primary:focus { - color: #0a58ca; } - -.link-secondary { - color: #6c757d; } - .link-secondary:hover, .link-secondary:focus { - color: #565e64; } - -.link-success { - color: #198754; } - .link-success:hover, .link-success:focus { - color: #146c43; } - -.link-info { - color: #0dcaf0; } - .link-info:hover, .link-info:focus { - color: #3dd5f3; } - -.link-warning { - color: #ffc107; } - .link-warning:hover, .link-warning:focus { - color: #ffcd39; } - -.link-danger { - color: #dc3545; } - .link-danger:hover, .link-danger:focus { - color: #b02a37; } - -.link-light { - color: #f8f9fa; } - .link-light:hover, .link-light:focus { - color: #f9fafb; } - -.link-dark { - color: #212529; } - .link-dark:hover, .link-dark:focus { - color: #1a1e21; } - -.ratio { - position: relative; - width: 100%; } - .ratio::before { - display: block; - padding-top: var(--bs-aspect-ratio); - content: \\"\\"; } - .ratio > * { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; } - -.ratio-1x1 { - --bs-aspect-ratio: 100%; } - -.ratio-4x3 { - --bs-aspect-ratio: calc(3 / 4 * 100%); } - -.ratio-16x9 { - --bs-aspect-ratio: calc(9 / 16 * 100%); } - -.ratio-21x9 { - --bs-aspect-ratio: calc(9 / 21 * 100%); } - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; } - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; } - -.sticky-top { - position: sticky; - top: 0; - z-index: 1020; } - -@media (min-width: 576px) { - .sticky-sm-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 768px) { - .sticky-md-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 992px) { - .sticky-lg-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 1200px) { - .sticky-xl-top { - position: sticky; - top: 0; - z-index: 1020; } } - -@media (min-width: 1400px) { - .sticky-xxl-top { - position: sticky; - top: 0; - z-index: 1020; } } - -.hstack { - display: flex; - flex-direction: row; - align-items: center; - align-self: stretch; } - -.vstack { - display: flex; - flex: 1 1 auto; - flex-direction: column; - align-self: stretch; } - -.visually-hidden, -.visually-hidden-focusable:not(:focus):not(:focus-within) { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; } - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - content: \\"\\"; } - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } - -.vr { - display: inline-block; - align-self: stretch; - width: 1px; - min-height: 1em; - background-color: currentColor; - opacity: 0.25; } - -.align-baseline { - vertical-align: baseline !important; } - -.align-top { - vertical-align: top !important; } - -.align-middle { - vertical-align: middle !important; } - -.align-bottom { - vertical-align: bottom !important; } - -.align-text-bottom { - vertical-align: text-bottom !important; } - -.align-text-top { - vertical-align: text-top !important; } - -.float-start { - float: left !important; } - -.float-end { - float: right !important; } - -.float-none { - float: none !important; } - -.opacity-0 { - opacity: 0 !important; } - -.opacity-25 { - opacity: 0.25 !important; } - -.opacity-50 { - opacity: 0.5 !important; } - -.opacity-75 { - opacity: 0.75 !important; } - -.opacity-100 { - opacity: 1 !important; } - -.overflow-auto { - overflow: auto !important; } - -.overflow-hidden { - overflow: hidden !important; } - -.overflow-visible { - overflow: visible !important; } - -.overflow-scroll { - overflow: scroll !important; } - -.d-inline { - display: inline !important; } - -.d-inline-block { - display: inline-block !important; } - -.d-block { - display: block !important; } - -.d-grid { - display: grid !important; } - -.d-table { - display: table !important; } - -.d-table-row { - display: table-row !important; } - -.d-table-cell { - display: table-cell !important; } - -.d-flex { - display: flex !important; } - -.d-inline-flex { - display: inline-flex !important; } - -.d-none { - display: none !important; } - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } - -.shadow-none { - box-shadow: none !important; } - -.position-static { - position: static !important; } - -.position-relative { - position: relative !important; } - -.position-absolute { - position: absolute !important; } - -.position-fixed { - position: fixed !important; } - -.position-sticky { - position: sticky !important; } - -.top-0 { - top: 0 !important; } - -.top-50 { - top: 50% !important; } - -.top-100 { - top: 100% !important; } - -.bottom-0 { - bottom: 0 !important; } - -.bottom-50 { - bottom: 50% !important; } - -.bottom-100 { - bottom: 100% !important; } - -.start-0 { - left: 0 !important; } - -.start-50 { - left: 50% !important; } - -.start-100 { - left: 100% !important; } - -.end-0 { - right: 0 !important; } - -.end-50 { - right: 50% !important; } - -.end-100 { - right: 100% !important; } - -.translate-middle { - transform: translate(-50%, -50%) !important; } - -.translate-middle-x { - transform: translateX(-50%) !important; } - -.translate-middle-y { - transform: translateY(-50%) !important; } - -.border { - border: 1px solid #dee2e6 !important; } - -.border-0 { - border: 0 !important; } - -.border-top { - border-top: 1px solid #dee2e6 !important; } - -.border-top-0 { - border-top: 0 !important; } - -.border-end { - border-right: 1px solid #dee2e6 !important; } - -.border-end-0 { - border-right: 0 !important; } - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; } - -.border-bottom-0 { - border-bottom: 0 !important; } - -.border-start { - border-left: 1px solid #dee2e6 !important; } - -.border-start-0 { - border-left: 0 !important; } - -.border-primary { - border-color: #0d6efd !important; } - -.border-secondary { - border-color: #6c757d !important; } - -.border-success { - border-color: #198754 !important; } - -.border-info { - border-color: #0dcaf0 !important; } - -.border-warning { - border-color: #ffc107 !important; } - -.border-danger { - border-color: #dc3545 !important; } - -.border-light { - border-color: #f8f9fa !important; } - -.border-dark { - border-color: #212529 !important; } - -.border-white { - border-color: #fff !important; } - -.border-1 { - border-width: 1px !important; } - -.border-2 { - border-width: 2px !important; } - -.border-3 { - border-width: 3px !important; } - -.border-4 { - border-width: 4px !important; } - -.border-5 { - border-width: 5px !important; } - -.w-25 { - width: 25% !important; } - -.w-50 { - width: 50% !important; } - -.w-75 { - width: 75% !important; } - -.w-100 { - width: 100% !important; } - -.w-auto { - width: auto !important; } - -.mw-100 { - max-width: 100% !important; } - -.vw-100 { - width: 100vw !important; } - -.min-vw-100 { - min-width: 100vw !important; } - -.h-25 { - height: 25% !important; } - -.h-50 { - height: 50% !important; } - -.h-75 { - height: 75% !important; } - -.h-100 { - height: 100% !important; } - -.h-auto { - height: auto !important; } - -.mh-100 { - max-height: 100% !important; } - -.vh-100 { - height: 100vh !important; } - -.min-vh-100 { - min-height: 100vh !important; } - -.flex-fill { - flex: 1 1 auto !important; } - -.flex-row { - flex-direction: row !important; } - -.flex-column { - flex-direction: column !important; } - -.flex-row-reverse { - flex-direction: row-reverse !important; } - -.flex-column-reverse { - flex-direction: column-reverse !important; } - -.flex-grow-0 { - flex-grow: 0 !important; } - -.flex-grow-1 { - flex-grow: 1 !important; } - -.flex-shrink-0 { - flex-shrink: 0 !important; } - -.flex-shrink-1 { - flex-shrink: 1 !important; } - -.flex-wrap { - flex-wrap: wrap !important; } - -.flex-nowrap { - flex-wrap: nowrap !important; } - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; } - -.gap-0 { - gap: 0 !important; } - -.gap-1 { - gap: 0.25rem !important; } - -.gap-2 { - gap: 0.5rem !important; } - -.gap-3 { - gap: 1rem !important; } - -.gap-4 { - gap: 1.5rem !important; } - -.gap-5 { - gap: 3rem !important; } - -.justify-content-start { - justify-content: flex-start !important; } - -.justify-content-end { - justify-content: flex-end !important; } - -.justify-content-center { - justify-content: center !important; } - -.justify-content-between { - justify-content: space-between !important; } - -.justify-content-around { - justify-content: space-around !important; } - -.justify-content-evenly { - justify-content: space-evenly !important; } - -.align-items-start { - align-items: flex-start !important; } - -.align-items-end { - align-items: flex-end !important; } - -.align-items-center { - align-items: center !important; } - -.align-items-baseline { - align-items: baseline !important; } - -.align-items-stretch { - align-items: stretch !important; } - -.align-content-start { - align-content: flex-start !important; } - -.align-content-end { - align-content: flex-end !important; } - -.align-content-center { - align-content: center !important; } - -.align-content-between { - align-content: space-between !important; } - -.align-content-around { - align-content: space-around !important; } - -.align-content-stretch { - align-content: stretch !important; } - -.align-self-auto { - align-self: auto !important; } - -.align-self-start { - align-self: flex-start !important; } - -.align-self-end { - align-self: flex-end !important; } - -.align-self-center { - align-self: center !important; } - -.align-self-baseline { - align-self: baseline !important; } - -.align-self-stretch { - align-self: stretch !important; } - -.order-first { - order: -1 !important; } - -.order-0 { - order: 0 !important; } - -.order-1 { - order: 1 !important; } - -.order-2 { - order: 2 !important; } - -.order-3 { - order: 3 !important; } - -.order-4 { - order: 4 !important; } - -.order-5 { - order: 5 !important; } - -.order-last { - order: 6 !important; } - -.m-0 { - margin: 0 !important; } - -.m-1 { - margin: 0.25rem !important; } - -.m-2 { - margin: 0.5rem !important; } - -.m-3 { - margin: 1rem !important; } - -.m-4 { - margin: 1.5rem !important; } - -.m-5 { - margin: 3rem !important; } - -.m-auto { - margin: auto !important; } - -.mx-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - -.mx-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - -.mx-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - -.mx-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - -.mx-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - -.mx-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - -.mx-auto { - margin-right: auto !important; - margin-left: auto !important; } - -.my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - -.my-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - -.my-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - -.my-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - -.mt-0 { - margin-top: 0 !important; } - -.mt-1 { - margin-top: 0.25rem !important; } - -.mt-2 { - margin-top: 0.5rem !important; } - -.mt-3 { - margin-top: 1rem !important; } - -.mt-4 { - margin-top: 1.5rem !important; } - -.mt-5 { - margin-top: 3rem !important; } - -.mt-auto { - margin-top: auto !important; } - -.me-0 { - margin-right: 0 !important; } - -.me-1 { - margin-right: 0.25rem !important; } - -.me-2 { - margin-right: 0.5rem !important; } - -.me-3 { - margin-right: 1rem !important; } - -.me-4 { - margin-right: 1.5rem !important; } - -.me-5 { - margin-right: 3rem !important; } - -.me-auto { - margin-right: auto !important; } - -.mb-0 { - margin-bottom: 0 !important; } - -.mb-1 { - margin-bottom: 0.25rem !important; } - -.mb-2 { - margin-bottom: 0.5rem !important; } - -.mb-3 { - margin-bottom: 1rem !important; } - -.mb-4 { - margin-bottom: 1.5rem !important; } - -.mb-5 { - margin-bottom: 3rem !important; } - -.mb-auto { - margin-bottom: auto !important; } - -.ms-0 { - margin-left: 0 !important; } - -.ms-1 { - margin-left: 0.25rem !important; } - -.ms-2 { - margin-left: 0.5rem !important; } - -.ms-3 { - margin-left: 1rem !important; } - -.ms-4 { - margin-left: 1.5rem !important; } - -.ms-5 { - margin-left: 3rem !important; } - -.ms-auto { - margin-left: auto !important; } - -.p-0 { - padding: 0 !important; } - -.p-1 { - padding: 0.25rem !important; } - -.p-2 { - padding: 0.5rem !important; } - -.p-3 { - padding: 1rem !important; } - -.p-4 { - padding: 1.5rem !important; } - -.p-5 { - padding: 3rem !important; } - -.px-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - -.px-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - -.px-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - -.px-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - -.px-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - -.px-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - -.py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - -.py-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - -.py-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - -.py-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - -.pt-0 { - padding-top: 0 !important; } - -.pt-1 { - padding-top: 0.25rem !important; } - -.pt-2 { - padding-top: 0.5rem !important; } - -.pt-3 { - padding-top: 1rem !important; } - -.pt-4 { - padding-top: 1.5rem !important; } - -.pt-5 { - padding-top: 3rem !important; } - -.pe-0 { - padding-right: 0 !important; } - -.pe-1 { - padding-right: 0.25rem !important; } - -.pe-2 { - padding-right: 0.5rem !important; } - -.pe-3 { - padding-right: 1rem !important; } - -.pe-4 { - padding-right: 1.5rem !important; } - -.pe-5 { - padding-right: 3rem !important; } - -.pb-0 { - padding-bottom: 0 !important; } - -.pb-1 { - padding-bottom: 0.25rem !important; } - -.pb-2 { - padding-bottom: 0.5rem !important; } - -.pb-3 { - padding-bottom: 1rem !important; } - -.pb-4 { - padding-bottom: 1.5rem !important; } - -.pb-5 { - padding-bottom: 3rem !important; } - -.ps-0 { - padding-left: 0 !important; } - -.ps-1 { - padding-left: 0.25rem !important; } - -.ps-2 { - padding-left: 0.5rem !important; } - -.ps-3 { - padding-left: 1rem !important; } - -.ps-4 { - padding-left: 1.5rem !important; } - -.ps-5 { - padding-left: 3rem !important; } - -.font-monospace { - font-family: var(--bs-font-monospace) !important; } - -.fs-1 { - font-size: calc(1.375rem + 1.5vw) !important; } - -.fs-2 { - font-size: calc(1.325rem + 0.9vw) !important; } - -.fs-3 { - font-size: calc(1.3rem + 0.6vw) !important; } - -.fs-4 { - font-size: calc(1.275rem + 0.3vw) !important; } - -.fs-5 { - font-size: 1.25rem !important; } - -.fs-6 { - font-size: 1rem !important; } - -.fst-italic { - font-style: italic !important; } - -.fst-normal { - font-style: normal !important; } - -.fw-light { - font-weight: 300 !important; } - -.fw-lighter { - font-weight: lighter !important; } - -.fw-normal { - font-weight: 400 !important; } - -.fw-bold { - font-weight: 700 !important; } - -.fw-bolder { - font-weight: bolder !important; } - -.lh-1 { - line-height: 1 !important; } - -.lh-sm { - line-height: 1.25 !important; } - -.lh-base { - line-height: 1.5 !important; } - -.lh-lg { - line-height: 2 !important; } - -.text-start { - text-align: left !important; } - -.text-end { - text-align: right !important; } - -.text-center { - text-align: center !important; } - -.text-decoration-none { - text-decoration: none !important; } - -.text-decoration-underline { - text-decoration: underline !important; } - -.text-decoration-line-through { - text-decoration: line-through !important; } - -.text-lowercase { - text-transform: lowercase !important; } - -.text-uppercase { - text-transform: uppercase !important; } - -.text-capitalize { - text-transform: capitalize !important; } - -.text-wrap { - white-space: normal !important; } - -.text-nowrap { - white-space: nowrap !important; } - -/* rtl:begin:remove */ -.text-break { - word-wrap: break-word !important; - word-break: break-word !important; } - -/* rtl:end:remove */ -.text-primary { - --bs-text-opacity: 1; - color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; } - -.text-secondary { - --bs-text-opacity: 1; - color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; } - -.text-success { - --bs-text-opacity: 1; - color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; } - -.text-info { - --bs-text-opacity: 1; - color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; } - -.text-warning { - --bs-text-opacity: 1; - color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; } - -.text-danger { - --bs-text-opacity: 1; - color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; } - -.text-light { - --bs-text-opacity: 1; - color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; } - -.text-dark { - --bs-text-opacity: 1; - color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; } - -.text-black { - --bs-text-opacity: 1; - color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; } - -.text-white { - --bs-text-opacity: 1; - color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; } - -.text-body { - --bs-text-opacity: 1; - color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; } - -.text-muted { - --bs-text-opacity: 1; - color: #6c757d !important; } - -.text-black-50 { - --bs-text-opacity: 1; - color: rgba(0, 0, 0, 0.5) !important; } - -.text-white-50 { - --bs-text-opacity: 1; - color: rgba(255, 255, 255, 0.5) !important; } - -.text-reset { - --bs-text-opacity: 1; - color: inherit !important; } - -.text-opacity-25 { - --bs-text-opacity: 0.25; } - -.text-opacity-50 { - --bs-text-opacity: 0.5; } - -.text-opacity-75 { - --bs-text-opacity: 0.75; } - -.text-opacity-100 { - --bs-text-opacity: 1; } - -.bg-primary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; } - -.bg-secondary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; } - -.bg-success { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; } - -.bg-info { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; } - -.bg-warning { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; } - -.bg-danger { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; } - -.bg-light { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; } - -.bg-dark { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; } - -.bg-black { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; } - -.bg-white { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; } - -.bg-body { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; } - -.bg-transparent { - --bs-bg-opacity: 1; - background-color: transparent !important; } - -.bg-opacity-10 { - --bs-bg-opacity: 0.1; } - -.bg-opacity-25 { - --bs-bg-opacity: 0.25; } - -.bg-opacity-50 { - --bs-bg-opacity: 0.5; } - -.bg-opacity-75 { - --bs-bg-opacity: 0.75; } - -.bg-opacity-100 { - --bs-bg-opacity: 1; } - -.bg-gradient { - background-image: var(--bs-gradient) !important; } - -.user-select-all { - user-select: all !important; } - -.user-select-auto { - user-select: auto !important; } - -.user-select-none { - user-select: none !important; } - -.pe-none { - pointer-events: none !important; } - -.pe-auto { - pointer-events: auto !important; } - -.rounded { - border-radius: 0.25rem !important; } - -.rounded-0 { - border-radius: 0 !important; } - -.rounded-1 { - border-radius: 0.2rem !important; } - -.rounded-2 { - border-radius: 0.25rem !important; } - -.rounded-3 { - border-radius: 0.3rem !important; } - -.rounded-circle { - border-radius: 50% !important; } - -.rounded-pill { - border-radius: 50rem !important; } - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; } - -.rounded-end { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; } - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; } - -.rounded-start { - border-bottom-left-radius: 0.25rem !important; - border-top-left-radius: 0.25rem !important; } - -.visible { - visibility: visible !important; } - -.invisible { - visibility: hidden !important; } - -@media (min-width: 576px) { - .float-sm-start { - float: left !important; } - .float-sm-end { - float: right !important; } - .float-sm-none { - float: none !important; } - .d-sm-inline { - display: inline !important; } - .d-sm-inline-block { - display: inline-block !important; } - .d-sm-block { - display: block !important; } - .d-sm-grid { - display: grid !important; } - .d-sm-table { - display: table !important; } - .d-sm-table-row { - display: table-row !important; } - .d-sm-table-cell { - display: table-cell !important; } - .d-sm-flex { - display: flex !important; } - .d-sm-inline-flex { - display: inline-flex !important; } - .d-sm-none { - display: none !important; } - .flex-sm-fill { - flex: 1 1 auto !important; } - .flex-sm-row { - flex-direction: row !important; } - .flex-sm-column { - flex-direction: column !important; } - .flex-sm-row-reverse { - flex-direction: row-reverse !important; } - .flex-sm-column-reverse { - flex-direction: column-reverse !important; } - .flex-sm-grow-0 { - flex-grow: 0 !important; } - .flex-sm-grow-1 { - flex-grow: 1 !important; } - .flex-sm-shrink-0 { - flex-shrink: 0 !important; } - .flex-sm-shrink-1 { - flex-shrink: 1 !important; } - .flex-sm-wrap { - flex-wrap: wrap !important; } - .flex-sm-nowrap { - flex-wrap: nowrap !important; } - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-sm-0 { - gap: 0 !important; } - .gap-sm-1 { - gap: 0.25rem !important; } - .gap-sm-2 { - gap: 0.5rem !important; } - .gap-sm-3 { - gap: 1rem !important; } - .gap-sm-4 { - gap: 1.5rem !important; } - .gap-sm-5 { - gap: 3rem !important; } - .justify-content-sm-start { - justify-content: flex-start !important; } - .justify-content-sm-end { - justify-content: flex-end !important; } - .justify-content-sm-center { - justify-content: center !important; } - .justify-content-sm-between { - justify-content: space-between !important; } - .justify-content-sm-around { - justify-content: space-around !important; } - .justify-content-sm-evenly { - justify-content: space-evenly !important; } - .align-items-sm-start { - align-items: flex-start !important; } - .align-items-sm-end { - align-items: flex-end !important; } - .align-items-sm-center { - align-items: center !important; } - .align-items-sm-baseline { - align-items: baseline !important; } - .align-items-sm-stretch { - align-items: stretch !important; } - .align-content-sm-start { - align-content: flex-start !important; } - .align-content-sm-end { - align-content: flex-end !important; } - .align-content-sm-center { - align-content: center !important; } - .align-content-sm-between { - align-content: space-between !important; } - .align-content-sm-around { - align-content: space-around !important; } - .align-content-sm-stretch { - align-content: stretch !important; } - .align-self-sm-auto { - align-self: auto !important; } - .align-self-sm-start { - align-self: flex-start !important; } - .align-self-sm-end { - align-self: flex-end !important; } - .align-self-sm-center { - align-self: center !important; } - .align-self-sm-baseline { - align-self: baseline !important; } - .align-self-sm-stretch { - align-self: stretch !important; } - .order-sm-first { - order: -1 !important; } - .order-sm-0 { - order: 0 !important; } - .order-sm-1 { - order: 1 !important; } - .order-sm-2 { - order: 2 !important; } - .order-sm-3 { - order: 3 !important; } - .order-sm-4 { - order: 4 !important; } - .order-sm-5 { - order: 5 !important; } - .order-sm-last { - order: 6 !important; } - .m-sm-0 { - margin: 0 !important; } - .m-sm-1 { - margin: 0.25rem !important; } - .m-sm-2 { - margin: 0.5rem !important; } - .m-sm-3 { - margin: 1rem !important; } - .m-sm-4 { - margin: 1.5rem !important; } - .m-sm-5 { - margin: 3rem !important; } - .m-sm-auto { - margin: auto !important; } - .mx-sm-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-sm-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-sm-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-sm-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-sm-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-sm-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-sm-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-sm-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-sm-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-sm-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-sm-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-sm-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-sm-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-sm-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-sm-0 { - margin-top: 0 !important; } - .mt-sm-1 { - margin-top: 0.25rem !important; } - .mt-sm-2 { - margin-top: 0.5rem !important; } - .mt-sm-3 { - margin-top: 1rem !important; } - .mt-sm-4 { - margin-top: 1.5rem !important; } - .mt-sm-5 { - margin-top: 3rem !important; } - .mt-sm-auto { - margin-top: auto !important; } - .me-sm-0 { - margin-right: 0 !important; } - .me-sm-1 { - margin-right: 0.25rem !important; } - .me-sm-2 { - margin-right: 0.5rem !important; } - .me-sm-3 { - margin-right: 1rem !important; } - .me-sm-4 { - margin-right: 1.5rem !important; } - .me-sm-5 { - margin-right: 3rem !important; } - .me-sm-auto { - margin-right: auto !important; } - .mb-sm-0 { - margin-bottom: 0 !important; } - .mb-sm-1 { - margin-bottom: 0.25rem !important; } - .mb-sm-2 { - margin-bottom: 0.5rem !important; } - .mb-sm-3 { - margin-bottom: 1rem !important; } - .mb-sm-4 { - margin-bottom: 1.5rem !important; } - .mb-sm-5 { - margin-bottom: 3rem !important; } - .mb-sm-auto { - margin-bottom: auto !important; } - .ms-sm-0 { - margin-left: 0 !important; } - .ms-sm-1 { - margin-left: 0.25rem !important; } - .ms-sm-2 { - margin-left: 0.5rem !important; } - .ms-sm-3 { - margin-left: 1rem !important; } - .ms-sm-4 { - margin-left: 1.5rem !important; } - .ms-sm-5 { - margin-left: 3rem !important; } - .ms-sm-auto { - margin-left: auto !important; } - .p-sm-0 { - padding: 0 !important; } - .p-sm-1 { - padding: 0.25rem !important; } - .p-sm-2 { - padding: 0.5rem !important; } - .p-sm-3 { - padding: 1rem !important; } - .p-sm-4 { - padding: 1.5rem !important; } - .p-sm-5 { - padding: 3rem !important; } - .px-sm-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-sm-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-sm-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-sm-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-sm-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-sm-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-sm-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-sm-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-sm-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-sm-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-sm-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-sm-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-sm-0 { - padding-top: 0 !important; } - .pt-sm-1 { - padding-top: 0.25rem !important; } - .pt-sm-2 { - padding-top: 0.5rem !important; } - .pt-sm-3 { - padding-top: 1rem !important; } - .pt-sm-4 { - padding-top: 1.5rem !important; } - .pt-sm-5 { - padding-top: 3rem !important; } - .pe-sm-0 { - padding-right: 0 !important; } - .pe-sm-1 { - padding-right: 0.25rem !important; } - .pe-sm-2 { - padding-right: 0.5rem !important; } - .pe-sm-3 { - padding-right: 1rem !important; } - .pe-sm-4 { - padding-right: 1.5rem !important; } - .pe-sm-5 { - padding-right: 3rem !important; } - .pb-sm-0 { - padding-bottom: 0 !important; } - .pb-sm-1 { - padding-bottom: 0.25rem !important; } - .pb-sm-2 { - padding-bottom: 0.5rem !important; } - .pb-sm-3 { - padding-bottom: 1rem !important; } - .pb-sm-4 { - padding-bottom: 1.5rem !important; } - .pb-sm-5 { - padding-bottom: 3rem !important; } - .ps-sm-0 { - padding-left: 0 !important; } - .ps-sm-1 { - padding-left: 0.25rem !important; } - .ps-sm-2 { - padding-left: 0.5rem !important; } - .ps-sm-3 { - padding-left: 1rem !important; } - .ps-sm-4 { - padding-left: 1.5rem !important; } - .ps-sm-5 { - padding-left: 3rem !important; } - .text-sm-start { - text-align: left !important; } - .text-sm-end { - text-align: right !important; } - .text-sm-center { - text-align: center !important; } } - -@media (min-width: 768px) { - .float-md-start { - float: left !important; } - .float-md-end { - float: right !important; } - .float-md-none { - float: none !important; } - .d-md-inline { - display: inline !important; } - .d-md-inline-block { - display: inline-block !important; } - .d-md-block { - display: block !important; } - .d-md-grid { - display: grid !important; } - .d-md-table { - display: table !important; } - .d-md-table-row { - display: table-row !important; } - .d-md-table-cell { - display: table-cell !important; } - .d-md-flex { - display: flex !important; } - .d-md-inline-flex { - display: inline-flex !important; } - .d-md-none { - display: none !important; } - .flex-md-fill { - flex: 1 1 auto !important; } - .flex-md-row { - flex-direction: row !important; } - .flex-md-column { - flex-direction: column !important; } - .flex-md-row-reverse { - flex-direction: row-reverse !important; } - .flex-md-column-reverse { - flex-direction: column-reverse !important; } - .flex-md-grow-0 { - flex-grow: 0 !important; } - .flex-md-grow-1 { - flex-grow: 1 !important; } - .flex-md-shrink-0 { - flex-shrink: 0 !important; } - .flex-md-shrink-1 { - flex-shrink: 1 !important; } - .flex-md-wrap { - flex-wrap: wrap !important; } - .flex-md-nowrap { - flex-wrap: nowrap !important; } - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-md-0 { - gap: 0 !important; } - .gap-md-1 { - gap: 0.25rem !important; } - .gap-md-2 { - gap: 0.5rem !important; } - .gap-md-3 { - gap: 1rem !important; } - .gap-md-4 { - gap: 1.5rem !important; } - .gap-md-5 { - gap: 3rem !important; } - .justify-content-md-start { - justify-content: flex-start !important; } - .justify-content-md-end { - justify-content: flex-end !important; } - .justify-content-md-center { - justify-content: center !important; } - .justify-content-md-between { - justify-content: space-between !important; } - .justify-content-md-around { - justify-content: space-around !important; } - .justify-content-md-evenly { - justify-content: space-evenly !important; } - .align-items-md-start { - align-items: flex-start !important; } - .align-items-md-end { - align-items: flex-end !important; } - .align-items-md-center { - align-items: center !important; } - .align-items-md-baseline { - align-items: baseline !important; } - .align-items-md-stretch { - align-items: stretch !important; } - .align-content-md-start { - align-content: flex-start !important; } - .align-content-md-end { - align-content: flex-end !important; } - .align-content-md-center { - align-content: center !important; } - .align-content-md-between { - align-content: space-between !important; } - .align-content-md-around { - align-content: space-around !important; } - .align-content-md-stretch { - align-content: stretch !important; } - .align-self-md-auto { - align-self: auto !important; } - .align-self-md-start { - align-self: flex-start !important; } - .align-self-md-end { - align-self: flex-end !important; } - .align-self-md-center { - align-self: center !important; } - .align-self-md-baseline { - align-self: baseline !important; } - .align-self-md-stretch { - align-self: stretch !important; } - .order-md-first { - order: -1 !important; } - .order-md-0 { - order: 0 !important; } - .order-md-1 { - order: 1 !important; } - .order-md-2 { - order: 2 !important; } - .order-md-3 { - order: 3 !important; } - .order-md-4 { - order: 4 !important; } - .order-md-5 { - order: 5 !important; } - .order-md-last { - order: 6 !important; } - .m-md-0 { - margin: 0 !important; } - .m-md-1 { - margin: 0.25rem !important; } - .m-md-2 { - margin: 0.5rem !important; } - .m-md-3 { - margin: 1rem !important; } - .m-md-4 { - margin: 1.5rem !important; } - .m-md-5 { - margin: 3rem !important; } - .m-md-auto { - margin: auto !important; } - .mx-md-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-md-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-md-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-md-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-md-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-md-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-md-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-md-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-md-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-md-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-md-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-md-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-md-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-md-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-md-0 { - margin-top: 0 !important; } - .mt-md-1 { - margin-top: 0.25rem !important; } - .mt-md-2 { - margin-top: 0.5rem !important; } - .mt-md-3 { - margin-top: 1rem !important; } - .mt-md-4 { - margin-top: 1.5rem !important; } - .mt-md-5 { - margin-top: 3rem !important; } - .mt-md-auto { - margin-top: auto !important; } - .me-md-0 { - margin-right: 0 !important; } - .me-md-1 { - margin-right: 0.25rem !important; } - .me-md-2 { - margin-right: 0.5rem !important; } - .me-md-3 { - margin-right: 1rem !important; } - .me-md-4 { - margin-right: 1.5rem !important; } - .me-md-5 { - margin-right: 3rem !important; } - .me-md-auto { - margin-right: auto !important; } - .mb-md-0 { - margin-bottom: 0 !important; } - .mb-md-1 { - margin-bottom: 0.25rem !important; } - .mb-md-2 { - margin-bottom: 0.5rem !important; } - .mb-md-3 { - margin-bottom: 1rem !important; } - .mb-md-4 { - margin-bottom: 1.5rem !important; } - .mb-md-5 { - margin-bottom: 3rem !important; } - .mb-md-auto { - margin-bottom: auto !important; } - .ms-md-0 { - margin-left: 0 !important; } - .ms-md-1 { - margin-left: 0.25rem !important; } - .ms-md-2 { - margin-left: 0.5rem !important; } - .ms-md-3 { - margin-left: 1rem !important; } - .ms-md-4 { - margin-left: 1.5rem !important; } - .ms-md-5 { - margin-left: 3rem !important; } - .ms-md-auto { - margin-left: auto !important; } - .p-md-0 { - padding: 0 !important; } - .p-md-1 { - padding: 0.25rem !important; } - .p-md-2 { - padding: 0.5rem !important; } - .p-md-3 { - padding: 1rem !important; } - .p-md-4 { - padding: 1.5rem !important; } - .p-md-5 { - padding: 3rem !important; } - .px-md-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-md-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-md-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-md-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-md-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-md-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-md-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-md-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-md-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-md-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-md-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-md-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-md-0 { - padding-top: 0 !important; } - .pt-md-1 { - padding-top: 0.25rem !important; } - .pt-md-2 { - padding-top: 0.5rem !important; } - .pt-md-3 { - padding-top: 1rem !important; } - .pt-md-4 { - padding-top: 1.5rem !important; } - .pt-md-5 { - padding-top: 3rem !important; } - .pe-md-0 { - padding-right: 0 !important; } - .pe-md-1 { - padding-right: 0.25rem !important; } - .pe-md-2 { - padding-right: 0.5rem !important; } - .pe-md-3 { - padding-right: 1rem !important; } - .pe-md-4 { - padding-right: 1.5rem !important; } - .pe-md-5 { - padding-right: 3rem !important; } - .pb-md-0 { - padding-bottom: 0 !important; } - .pb-md-1 { - padding-bottom: 0.25rem !important; } - .pb-md-2 { - padding-bottom: 0.5rem !important; } - .pb-md-3 { - padding-bottom: 1rem !important; } - .pb-md-4 { - padding-bottom: 1.5rem !important; } - .pb-md-5 { - padding-bottom: 3rem !important; } - .ps-md-0 { - padding-left: 0 !important; } - .ps-md-1 { - padding-left: 0.25rem !important; } - .ps-md-2 { - padding-left: 0.5rem !important; } - .ps-md-3 { - padding-left: 1rem !important; } - .ps-md-4 { - padding-left: 1.5rem !important; } - .ps-md-5 { - padding-left: 3rem !important; } - .text-md-start { - text-align: left !important; } - .text-md-end { - text-align: right !important; } - .text-md-center { - text-align: center !important; } } - -@media (min-width: 992px) { - .float-lg-start { - float: left !important; } - .float-lg-end { - float: right !important; } - .float-lg-none { - float: none !important; } - .d-lg-inline { - display: inline !important; } - .d-lg-inline-block { - display: inline-block !important; } - .d-lg-block { - display: block !important; } - .d-lg-grid { - display: grid !important; } - .d-lg-table { - display: table !important; } - .d-lg-table-row { - display: table-row !important; } - .d-lg-table-cell { - display: table-cell !important; } - .d-lg-flex { - display: flex !important; } - .d-lg-inline-flex { - display: inline-flex !important; } - .d-lg-none { - display: none !important; } - .flex-lg-fill { - flex: 1 1 auto !important; } - .flex-lg-row { - flex-direction: row !important; } - .flex-lg-column { - flex-direction: column !important; } - .flex-lg-row-reverse { - flex-direction: row-reverse !important; } - .flex-lg-column-reverse { - flex-direction: column-reverse !important; } - .flex-lg-grow-0 { - flex-grow: 0 !important; } - .flex-lg-grow-1 { - flex-grow: 1 !important; } - .flex-lg-shrink-0 { - flex-shrink: 0 !important; } - .flex-lg-shrink-1 { - flex-shrink: 1 !important; } - .flex-lg-wrap { - flex-wrap: wrap !important; } - .flex-lg-nowrap { - flex-wrap: nowrap !important; } - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-lg-0 { - gap: 0 !important; } - .gap-lg-1 { - gap: 0.25rem !important; } - .gap-lg-2 { - gap: 0.5rem !important; } - .gap-lg-3 { - gap: 1rem !important; } - .gap-lg-4 { - gap: 1.5rem !important; } - .gap-lg-5 { - gap: 3rem !important; } - .justify-content-lg-start { - justify-content: flex-start !important; } - .justify-content-lg-end { - justify-content: flex-end !important; } - .justify-content-lg-center { - justify-content: center !important; } - .justify-content-lg-between { - justify-content: space-between !important; } - .justify-content-lg-around { - justify-content: space-around !important; } - .justify-content-lg-evenly { - justify-content: space-evenly !important; } - .align-items-lg-start { - align-items: flex-start !important; } - .align-items-lg-end { - align-items: flex-end !important; } - .align-items-lg-center { - align-items: center !important; } - .align-items-lg-baseline { - align-items: baseline !important; } - .align-items-lg-stretch { - align-items: stretch !important; } - .align-content-lg-start { - align-content: flex-start !important; } - .align-content-lg-end { - align-content: flex-end !important; } - .align-content-lg-center { - align-content: center !important; } - .align-content-lg-between { - align-content: space-between !important; } - .align-content-lg-around { - align-content: space-around !important; } - .align-content-lg-stretch { - align-content: stretch !important; } - .align-self-lg-auto { - align-self: auto !important; } - .align-self-lg-start { - align-self: flex-start !important; } - .align-self-lg-end { - align-self: flex-end !important; } - .align-self-lg-center { - align-self: center !important; } - .align-self-lg-baseline { - align-self: baseline !important; } - .align-self-lg-stretch { - align-self: stretch !important; } - .order-lg-first { - order: -1 !important; } - .order-lg-0 { - order: 0 !important; } - .order-lg-1 { - order: 1 !important; } - .order-lg-2 { - order: 2 !important; } - .order-lg-3 { - order: 3 !important; } - .order-lg-4 { - order: 4 !important; } - .order-lg-5 { - order: 5 !important; } - .order-lg-last { - order: 6 !important; } - .m-lg-0 { - margin: 0 !important; } - .m-lg-1 { - margin: 0.25rem !important; } - .m-lg-2 { - margin: 0.5rem !important; } - .m-lg-3 { - margin: 1rem !important; } - .m-lg-4 { - margin: 1.5rem !important; } - .m-lg-5 { - margin: 3rem !important; } - .m-lg-auto { - margin: auto !important; } - .mx-lg-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-lg-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-lg-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-lg-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-lg-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-lg-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-lg-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-lg-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-lg-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-lg-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-lg-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-lg-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-lg-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-lg-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-lg-0 { - margin-top: 0 !important; } - .mt-lg-1 { - margin-top: 0.25rem !important; } - .mt-lg-2 { - margin-top: 0.5rem !important; } - .mt-lg-3 { - margin-top: 1rem !important; } - .mt-lg-4 { - margin-top: 1.5rem !important; } - .mt-lg-5 { - margin-top: 3rem !important; } - .mt-lg-auto { - margin-top: auto !important; } - .me-lg-0 { - margin-right: 0 !important; } - .me-lg-1 { - margin-right: 0.25rem !important; } - .me-lg-2 { - margin-right: 0.5rem !important; } - .me-lg-3 { - margin-right: 1rem !important; } - .me-lg-4 { - margin-right: 1.5rem !important; } - .me-lg-5 { - margin-right: 3rem !important; } - .me-lg-auto { - margin-right: auto !important; } - .mb-lg-0 { - margin-bottom: 0 !important; } - .mb-lg-1 { - margin-bottom: 0.25rem !important; } - .mb-lg-2 { - margin-bottom: 0.5rem !important; } - .mb-lg-3 { - margin-bottom: 1rem !important; } - .mb-lg-4 { - margin-bottom: 1.5rem !important; } - .mb-lg-5 { - margin-bottom: 3rem !important; } - .mb-lg-auto { - margin-bottom: auto !important; } - .ms-lg-0 { - margin-left: 0 !important; } - .ms-lg-1 { - margin-left: 0.25rem !important; } - .ms-lg-2 { - margin-left: 0.5rem !important; } - .ms-lg-3 { - margin-left: 1rem !important; } - .ms-lg-4 { - margin-left: 1.5rem !important; } - .ms-lg-5 { - margin-left: 3rem !important; } - .ms-lg-auto { - margin-left: auto !important; } - .p-lg-0 { - padding: 0 !important; } - .p-lg-1 { - padding: 0.25rem !important; } - .p-lg-2 { - padding: 0.5rem !important; } - .p-lg-3 { - padding: 1rem !important; } - .p-lg-4 { - padding: 1.5rem !important; } - .p-lg-5 { - padding: 3rem !important; } - .px-lg-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-lg-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-lg-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-lg-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-lg-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-lg-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-lg-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-lg-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-lg-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-lg-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-lg-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-lg-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-lg-0 { - padding-top: 0 !important; } - .pt-lg-1 { - padding-top: 0.25rem !important; } - .pt-lg-2 { - padding-top: 0.5rem !important; } - .pt-lg-3 { - padding-top: 1rem !important; } - .pt-lg-4 { - padding-top: 1.5rem !important; } - .pt-lg-5 { - padding-top: 3rem !important; } - .pe-lg-0 { - padding-right: 0 !important; } - .pe-lg-1 { - padding-right: 0.25rem !important; } - .pe-lg-2 { - padding-right: 0.5rem !important; } - .pe-lg-3 { - padding-right: 1rem !important; } - .pe-lg-4 { - padding-right: 1.5rem !important; } - .pe-lg-5 { - padding-right: 3rem !important; } - .pb-lg-0 { - padding-bottom: 0 !important; } - .pb-lg-1 { - padding-bottom: 0.25rem !important; } - .pb-lg-2 { - padding-bottom: 0.5rem !important; } - .pb-lg-3 { - padding-bottom: 1rem !important; } - .pb-lg-4 { - padding-bottom: 1.5rem !important; } - .pb-lg-5 { - padding-bottom: 3rem !important; } - .ps-lg-0 { - padding-left: 0 !important; } - .ps-lg-1 { - padding-left: 0.25rem !important; } - .ps-lg-2 { - padding-left: 0.5rem !important; } - .ps-lg-3 { - padding-left: 1rem !important; } - .ps-lg-4 { - padding-left: 1.5rem !important; } - .ps-lg-5 { - padding-left: 3rem !important; } - .text-lg-start { - text-align: left !important; } - .text-lg-end { - text-align: right !important; } - .text-lg-center { - text-align: center !important; } } - -@media (min-width: 1200px) { - .float-xl-start { - float: left !important; } - .float-xl-end { - float: right !important; } - .float-xl-none { - float: none !important; } - .d-xl-inline { - display: inline !important; } - .d-xl-inline-block { - display: inline-block !important; } - .d-xl-block { - display: block !important; } - .d-xl-grid { - display: grid !important; } - .d-xl-table { - display: table !important; } - .d-xl-table-row { - display: table-row !important; } - .d-xl-table-cell { - display: table-cell !important; } - .d-xl-flex { - display: flex !important; } - .d-xl-inline-flex { - display: inline-flex !important; } - .d-xl-none { - display: none !important; } - .flex-xl-fill { - flex: 1 1 auto !important; } - .flex-xl-row { - flex-direction: row !important; } - .flex-xl-column { - flex-direction: column !important; } - .flex-xl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xl-grow-0 { - flex-grow: 0 !important; } - .flex-xl-grow-1 { - flex-grow: 1 !important; } - .flex-xl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xl-shrink-1 { - flex-shrink: 1 !important; } - .flex-xl-wrap { - flex-wrap: wrap !important; } - .flex-xl-nowrap { - flex-wrap: nowrap !important; } - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-xl-0 { - gap: 0 !important; } - .gap-xl-1 { - gap: 0.25rem !important; } - .gap-xl-2 { - gap: 0.5rem !important; } - .gap-xl-3 { - gap: 1rem !important; } - .gap-xl-4 { - gap: 1.5rem !important; } - .gap-xl-5 { - gap: 3rem !important; } - .justify-content-xl-start { - justify-content: flex-start !important; } - .justify-content-xl-end { - justify-content: flex-end !important; } - .justify-content-xl-center { - justify-content: center !important; } - .justify-content-xl-between { - justify-content: space-between !important; } - .justify-content-xl-around { - justify-content: space-around !important; } - .justify-content-xl-evenly { - justify-content: space-evenly !important; } - .align-items-xl-start { - align-items: flex-start !important; } - .align-items-xl-end { - align-items: flex-end !important; } - .align-items-xl-center { - align-items: center !important; } - .align-items-xl-baseline { - align-items: baseline !important; } - .align-items-xl-stretch { - align-items: stretch !important; } - .align-content-xl-start { - align-content: flex-start !important; } - .align-content-xl-end { - align-content: flex-end !important; } - .align-content-xl-center { - align-content: center !important; } - .align-content-xl-between { - align-content: space-between !important; } - .align-content-xl-around { - align-content: space-around !important; } - .align-content-xl-stretch { - align-content: stretch !important; } - .align-self-xl-auto { - align-self: auto !important; } - .align-self-xl-start { - align-self: flex-start !important; } - .align-self-xl-end { - align-self: flex-end !important; } - .align-self-xl-center { - align-self: center !important; } - .align-self-xl-baseline { - align-self: baseline !important; } - .align-self-xl-stretch { - align-self: stretch !important; } - .order-xl-first { - order: -1 !important; } - .order-xl-0 { - order: 0 !important; } - .order-xl-1 { - order: 1 !important; } - .order-xl-2 { - order: 2 !important; } - .order-xl-3 { - order: 3 !important; } - .order-xl-4 { - order: 4 !important; } - .order-xl-5 { - order: 5 !important; } - .order-xl-last { - order: 6 !important; } - .m-xl-0 { - margin: 0 !important; } - .m-xl-1 { - margin: 0.25rem !important; } - .m-xl-2 { - margin: 0.5rem !important; } - .m-xl-3 { - margin: 1rem !important; } - .m-xl-4 { - margin: 1.5rem !important; } - .m-xl-5 { - margin: 3rem !important; } - .m-xl-auto { - margin: auto !important; } - .mx-xl-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-xl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-xl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-xl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-xl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-xl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-xl-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-xl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-xl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-xl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-xl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-xl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-xl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-xl-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-xl-0 { - margin-top: 0 !important; } - .mt-xl-1 { - margin-top: 0.25rem !important; } - .mt-xl-2 { - margin-top: 0.5rem !important; } - .mt-xl-3 { - margin-top: 1rem !important; } - .mt-xl-4 { - margin-top: 1.5rem !important; } - .mt-xl-5 { - margin-top: 3rem !important; } - .mt-xl-auto { - margin-top: auto !important; } - .me-xl-0 { - margin-right: 0 !important; } - .me-xl-1 { - margin-right: 0.25rem !important; } - .me-xl-2 { - margin-right: 0.5rem !important; } - .me-xl-3 { - margin-right: 1rem !important; } - .me-xl-4 { - margin-right: 1.5rem !important; } - .me-xl-5 { - margin-right: 3rem !important; } - .me-xl-auto { - margin-right: auto !important; } - .mb-xl-0 { - margin-bottom: 0 !important; } - .mb-xl-1 { - margin-bottom: 0.25rem !important; } - .mb-xl-2 { - margin-bottom: 0.5rem !important; } - .mb-xl-3 { - margin-bottom: 1rem !important; } - .mb-xl-4 { - margin-bottom: 1.5rem !important; } - .mb-xl-5 { - margin-bottom: 3rem !important; } - .mb-xl-auto { - margin-bottom: auto !important; } - .ms-xl-0 { - margin-left: 0 !important; } - .ms-xl-1 { - margin-left: 0.25rem !important; } - .ms-xl-2 { - margin-left: 0.5rem !important; } - .ms-xl-3 { - margin-left: 1rem !important; } - .ms-xl-4 { - margin-left: 1.5rem !important; } - .ms-xl-5 { - margin-left: 3rem !important; } - .ms-xl-auto { - margin-left: auto !important; } - .p-xl-0 { - padding: 0 !important; } - .p-xl-1 { - padding: 0.25rem !important; } - .p-xl-2 { - padding: 0.5rem !important; } - .p-xl-3 { - padding: 1rem !important; } - .p-xl-4 { - padding: 1.5rem !important; } - .p-xl-5 { - padding: 3rem !important; } - .px-xl-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-xl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-xl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-xl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-xl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-xl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-xl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-xl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-xl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-xl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-xl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-xl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-xl-0 { - padding-top: 0 !important; } - .pt-xl-1 { - padding-top: 0.25rem !important; } - .pt-xl-2 { - padding-top: 0.5rem !important; } - .pt-xl-3 { - padding-top: 1rem !important; } - .pt-xl-4 { - padding-top: 1.5rem !important; } - .pt-xl-5 { - padding-top: 3rem !important; } - .pe-xl-0 { - padding-right: 0 !important; } - .pe-xl-1 { - padding-right: 0.25rem !important; } - .pe-xl-2 { - padding-right: 0.5rem !important; } - .pe-xl-3 { - padding-right: 1rem !important; } - .pe-xl-4 { - padding-right: 1.5rem !important; } - .pe-xl-5 { - padding-right: 3rem !important; } - .pb-xl-0 { - padding-bottom: 0 !important; } - .pb-xl-1 { - padding-bottom: 0.25rem !important; } - .pb-xl-2 { - padding-bottom: 0.5rem !important; } - .pb-xl-3 { - padding-bottom: 1rem !important; } - .pb-xl-4 { - padding-bottom: 1.5rem !important; } - .pb-xl-5 { - padding-bottom: 3rem !important; } - .ps-xl-0 { - padding-left: 0 !important; } - .ps-xl-1 { - padding-left: 0.25rem !important; } - .ps-xl-2 { - padding-left: 0.5rem !important; } - .ps-xl-3 { - padding-left: 1rem !important; } - .ps-xl-4 { - padding-left: 1.5rem !important; } - .ps-xl-5 { - padding-left: 3rem !important; } - .text-xl-start { - text-align: left !important; } - .text-xl-end { - text-align: right !important; } - .text-xl-center { - text-align: center !important; } } - -@media (min-width: 1400px) { - .float-xxl-start { - float: left !important; } - .float-xxl-end { - float: right !important; } - .float-xxl-none { - float: none !important; } - .d-xxl-inline { - display: inline !important; } - .d-xxl-inline-block { - display: inline-block !important; } - .d-xxl-block { - display: block !important; } - .d-xxl-grid { - display: grid !important; } - .d-xxl-table { - display: table !important; } - .d-xxl-table-row { - display: table-row !important; } - .d-xxl-table-cell { - display: table-cell !important; } - .d-xxl-flex { - display: flex !important; } - .d-xxl-inline-flex { - display: inline-flex !important; } - .d-xxl-none { - display: none !important; } - .flex-xxl-fill { - flex: 1 1 auto !important; } - .flex-xxl-row { - flex-direction: row !important; } - .flex-xxl-column { - flex-direction: column !important; } - .flex-xxl-row-reverse { - flex-direction: row-reverse !important; } - .flex-xxl-column-reverse { - flex-direction: column-reverse !important; } - .flex-xxl-grow-0 { - flex-grow: 0 !important; } - .flex-xxl-grow-1 { - flex-grow: 1 !important; } - .flex-xxl-shrink-0 { - flex-shrink: 0 !important; } - .flex-xxl-shrink-1 { - flex-shrink: 1 !important; } - .flex-xxl-wrap { - flex-wrap: wrap !important; } - .flex-xxl-nowrap { - flex-wrap: nowrap !important; } - .flex-xxl-wrap-reverse { - flex-wrap: wrap-reverse !important; } - .gap-xxl-0 { - gap: 0 !important; } - .gap-xxl-1 { - gap: 0.25rem !important; } - .gap-xxl-2 { - gap: 0.5rem !important; } - .gap-xxl-3 { - gap: 1rem !important; } - .gap-xxl-4 { - gap: 1.5rem !important; } - .gap-xxl-5 { - gap: 3rem !important; } - .justify-content-xxl-start { - justify-content: flex-start !important; } - .justify-content-xxl-end { - justify-content: flex-end !important; } - .justify-content-xxl-center { - justify-content: center !important; } - .justify-content-xxl-between { - justify-content: space-between !important; } - .justify-content-xxl-around { - justify-content: space-around !important; } - .justify-content-xxl-evenly { - justify-content: space-evenly !important; } - .align-items-xxl-start { - align-items: flex-start !important; } - .align-items-xxl-end { - align-items: flex-end !important; } - .align-items-xxl-center { - align-items: center !important; } - .align-items-xxl-baseline { - align-items: baseline !important; } - .align-items-xxl-stretch { - align-items: stretch !important; } - .align-content-xxl-start { - align-content: flex-start !important; } - .align-content-xxl-end { - align-content: flex-end !important; } - .align-content-xxl-center { - align-content: center !important; } - .align-content-xxl-between { - align-content: space-between !important; } - .align-content-xxl-around { - align-content: space-around !important; } - .align-content-xxl-stretch { - align-content: stretch !important; } - .align-self-xxl-auto { - align-self: auto !important; } - .align-self-xxl-start { - align-self: flex-start !important; } - .align-self-xxl-end { - align-self: flex-end !important; } - .align-self-xxl-center { - align-self: center !important; } - .align-self-xxl-baseline { - align-self: baseline !important; } - .align-self-xxl-stretch { - align-self: stretch !important; } - .order-xxl-first { - order: -1 !important; } - .order-xxl-0 { - order: 0 !important; } - .order-xxl-1 { - order: 1 !important; } - .order-xxl-2 { - order: 2 !important; } - .order-xxl-3 { - order: 3 !important; } - .order-xxl-4 { - order: 4 !important; } - .order-xxl-5 { - order: 5 !important; } - .order-xxl-last { - order: 6 !important; } - .m-xxl-0 { - margin: 0 !important; } - .m-xxl-1 { - margin: 0.25rem !important; } - .m-xxl-2 { - margin: 0.5rem !important; } - .m-xxl-3 { - margin: 1rem !important; } - .m-xxl-4 { - margin: 1.5rem !important; } - .m-xxl-5 { - margin: 3rem !important; } - .m-xxl-auto { - margin: auto !important; } - .mx-xxl-0 { - margin-right: 0 !important; - margin-left: 0 !important; } - .mx-xxl-1 { - margin-right: 0.25rem !important; - margin-left: 0.25rem !important; } - .mx-xxl-2 { - margin-right: 0.5rem !important; - margin-left: 0.5rem !important; } - .mx-xxl-3 { - margin-right: 1rem !important; - margin-left: 1rem !important; } - .mx-xxl-4 { - margin-right: 1.5rem !important; - margin-left: 1.5rem !important; } - .mx-xxl-5 { - margin-right: 3rem !important; - margin-left: 3rem !important; } - .mx-xxl-auto { - margin-right: auto !important; - margin-left: auto !important; } - .my-xxl-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; } - .my-xxl-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; } - .my-xxl-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; } - .my-xxl-3 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; } - .my-xxl-4 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; } - .my-xxl-5 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; } - .my-xxl-auto { - margin-top: auto !important; - margin-bottom: auto !important; } - .mt-xxl-0 { - margin-top: 0 !important; } - .mt-xxl-1 { - margin-top: 0.25rem !important; } - .mt-xxl-2 { - margin-top: 0.5rem !important; } - .mt-xxl-3 { - margin-top: 1rem !important; } - .mt-xxl-4 { - margin-top: 1.5rem !important; } - .mt-xxl-5 { - margin-top: 3rem !important; } - .mt-xxl-auto { - margin-top: auto !important; } - .me-xxl-0 { - margin-right: 0 !important; } - .me-xxl-1 { - margin-right: 0.25rem !important; } - .me-xxl-2 { - margin-right: 0.5rem !important; } - .me-xxl-3 { - margin-right: 1rem !important; } - .me-xxl-4 { - margin-right: 1.5rem !important; } - .me-xxl-5 { - margin-right: 3rem !important; } - .me-xxl-auto { - margin-right: auto !important; } - .mb-xxl-0 { - margin-bottom: 0 !important; } - .mb-xxl-1 { - margin-bottom: 0.25rem !important; } - .mb-xxl-2 { - margin-bottom: 0.5rem !important; } - .mb-xxl-3 { - margin-bottom: 1rem !important; } - .mb-xxl-4 { - margin-bottom: 1.5rem !important; } - .mb-xxl-5 { - margin-bottom: 3rem !important; } - .mb-xxl-auto { - margin-bottom: auto !important; } - .ms-xxl-0 { - margin-left: 0 !important; } - .ms-xxl-1 { - margin-left: 0.25rem !important; } - .ms-xxl-2 { - margin-left: 0.5rem !important; } - .ms-xxl-3 { - margin-left: 1rem !important; } - .ms-xxl-4 { - margin-left: 1.5rem !important; } - .ms-xxl-5 { - margin-left: 3rem !important; } - .ms-xxl-auto { - margin-left: auto !important; } - .p-xxl-0 { - padding: 0 !important; } - .p-xxl-1 { - padding: 0.25rem !important; } - .p-xxl-2 { - padding: 0.5rem !important; } - .p-xxl-3 { - padding: 1rem !important; } - .p-xxl-4 { - padding: 1.5rem !important; } - .p-xxl-5 { - padding: 3rem !important; } - .px-xxl-0 { - padding-right: 0 !important; - padding-left: 0 !important; } - .px-xxl-1 { - padding-right: 0.25rem !important; - padding-left: 0.25rem !important; } - .px-xxl-2 { - padding-right: 0.5rem !important; - padding-left: 0.5rem !important; } - .px-xxl-3 { - padding-right: 1rem !important; - padding-left: 1rem !important; } - .px-xxl-4 { - padding-right: 1.5rem !important; - padding-left: 1.5rem !important; } - .px-xxl-5 { - padding-right: 3rem !important; - padding-left: 3rem !important; } - .py-xxl-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; } - .py-xxl-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; } - .py-xxl-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; } - .py-xxl-3 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; } - .py-xxl-4 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; } - .py-xxl-5 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; } - .pt-xxl-0 { - padding-top: 0 !important; } - .pt-xxl-1 { - padding-top: 0.25rem !important; } - .pt-xxl-2 { - padding-top: 0.5rem !important; } - .pt-xxl-3 { - padding-top: 1rem !important; } - .pt-xxl-4 { - padding-top: 1.5rem !important; } - .pt-xxl-5 { - padding-top: 3rem !important; } - .pe-xxl-0 { - padding-right: 0 !important; } - .pe-xxl-1 { - padding-right: 0.25rem !important; } - .pe-xxl-2 { - padding-right: 0.5rem !important; } - .pe-xxl-3 { - padding-right: 1rem !important; } - .pe-xxl-4 { - padding-right: 1.5rem !important; } - .pe-xxl-5 { - padding-right: 3rem !important; } - .pb-xxl-0 { - padding-bottom: 0 !important; } - .pb-xxl-1 { - padding-bottom: 0.25rem !important; } - .pb-xxl-2 { - padding-bottom: 0.5rem !important; } - .pb-xxl-3 { - padding-bottom: 1rem !important; } - .pb-xxl-4 { - padding-bottom: 1.5rem !important; } - .pb-xxl-5 { - padding-bottom: 3rem !important; } - .ps-xxl-0 { - padding-left: 0 !important; } - .ps-xxl-1 { - padding-left: 0.25rem !important; } - .ps-xxl-2 { - padding-left: 0.5rem !important; } - .ps-xxl-3 { - padding-left: 1rem !important; } - .ps-xxl-4 { - padding-left: 1.5rem !important; } - .ps-xxl-5 { - padding-left: 3rem !important; } - .text-xxl-start { - text-align: left !important; } - .text-xxl-end { - text-align: right !important; } - .text-xxl-center { - text-align: center !important; } } - -@media (min-width: 1200px) { - .fs-1 { - font-size: 2.5rem !important; } - .fs-2 { - font-size: 2rem !important; } - .fs-3 { - font-size: 1.75rem !important; } - .fs-4 { - font-size: 1.5rem !important; } } - -@media print { - .d-print-inline { - display: inline !important; } - .d-print-inline-block { - display: inline-block !important; } - .d-print-block { - display: block !important; } - .d-print-grid { - display: grid !important; } - .d-print-table { - display: table !important; } - .d-print-table-row { - display: table-row !important; } - .d-print-table-cell { - display: table-cell !important; } - .d-print-flex { - display: flex !important; } - .d-print-inline-flex { - display: inline-flex !important; } - .d-print-none { - display: none !important; } } -" -`; - -exports[`loader should work with "bootstrap" package v5, import as a package (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with "bootstrap" package v5, import as a package (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (sass): css 1`] = ` -".load-me { - color: red; -}" -`; - -exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (scss): css 1`] = ` -".load-me { - color: red; -}" -`; - -exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (node-sass) (sass): css 1`] = ` -".load-me { - color: red; } -" -`; - -exports[`loader should work with a package with "sass" and "exports" fields (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (node-sass) (scss): css 1`] = ` -".load-me { - color: red; } -" -`; - -exports[`loader should work with a package with "sass" and "exports" fields (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with a package with "sass" and "exports" fields (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with an alias (dart-sass) (sass): css 1`] = ` -"a { - color: red; -} - -.directory-6-file { - color: #faf; -} - -.dir-with-underscore-index { - color: red; -} - -.dir-with-underscore-index { - color: red; -} - -.dir-with-underscore-index { - color: red; -}" -`; - -exports[`loader should work with an alias (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with an alias (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with an alias (dart-sass) (scss): css 1`] = ` -".alias { - color: red; -} - -.directory-6-file { - color: #faf; -} - -.dir-with-underscore-index { - color: red; -} - -.dir-with-underscore-index { - color: red; -} - -.dir-with-underscore-index { - color: red; -}" -`; - -exports[`loader should work with an alias (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with an alias (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with an alias (node-sass) (sass): css 1`] = ` -"a { - color: red; } - -.directory-6-file { - color: #faf; } - -.dir-with-underscore-index { - color: red; } - -.dir-with-underscore-index { - color: red; } - -.dir-with-underscore-index { - color: red; } -" -`; - -exports[`loader should work with an alias (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with an alias (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with an alias (node-sass) (scss): css 1`] = ` -".alias { - color: red; } - -.directory-6-file { - color: #faf; } - -.dir-with-underscore-index { - color: red; } - -.dir-with-underscore-index { - color: red; } - -.dir-with-underscore-index { - color: red; } -" -`; - -exports[`loader should work with an alias (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with an alias (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with an empty file (dart-sass) (sass): css 1`] = `""`; - -exports[`loader should work with an empty file (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with an empty file (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with an empty file (dart-sass) (scss): css 1`] = `""`; - -exports[`loader should work with an empty file (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with an empty file (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with an empty file (node-sass) (sass): css 1`] = `""`; - -exports[`loader should work with an empty file (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with an empty file (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with an empty file (node-sass) (scss): css 1`] = `""`; - -exports[`loader should work with an empty file (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with an empty file (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with an empty file (sass-embedded) (sass): css 1`] = `""`; - -exports[`loader should work with an empty file (sass-embedded) (sass): errors 1`] = `Array []`; - -exports[`loader should work with an empty file (sass-embedded) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with an empty file (sass-embedded) (scss): css 1`] = `""`; - -exports[`loader should work with an empty file (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`loader should work with an empty file (sass-embedded) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -/* @import another/module */ -@import url(http://example.com/something/from/the/interwebs); -.another-sass-module { - background: hotpink; -} - -/* @import another/underscore */ -.underscore { - background: hotpink; -} - -/* @import another/_underscore */ -.underscore { - background: hotpink; -} - -/* @import ~sass/underscore */ -.underscore-sass { - background: hotpink; -} - -/* @import ~sass/some.module */ -.some-sass-module { - background: hotpink; -} - -/* @import url(http://example.com/something/from/the/interwebs); */ -/* scoped import @import language */ -.scoped-import { - @import \\"./file.css\\"; -} -.scoped-import body { - font: 100% Helvetica, sans-serif; - color: #333; -} -.scoped-import nav ul { - margin: 0; - padding: 0; - list-style: none; -} -.scoped-import nav li { - display: inline-block; -} -.scoped-import nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} -.scoped-import .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} -.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success { - border: 1px solid #ccc; - padding: 10px; - color: #333; -} -.scoped-import .success { - border-color: green; -} -.scoped-import .error { - border-color: red; -} -.scoped-import .warning { - border-color: yellow; -} -.scoped-import .foo:before { - content: \\"\\\\e0c6\\"; -} -.scoped-import .bar:before { - content: \\"∑\\"; -} - -/* @import util */ -.util { - color: hotpink; -} - -/* @import ~module */ -.module { - background: hotpink; -} - -/* @import ~another */ -.another-scss-module-from-node-modules { - background: hotpink; -} - -a { - color: red; -}" -`; - -exports[`loader should work with difference "@import" at-rules (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (dart-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -/* @import \\"another/module\\"; */ -@import url(http://example.com/something/from/the/interwebs); -.another-scss-module { - background: hotpink; -} - -/* @import \\"another/underscore\\"; */ -.underscore { - background: hotpink; -} - -/* @import \\"another/_underscore\\"; */ -.underscore { - background: hotpink; -} - -/* @import \\"~scss/underscore\\"; */ -.underscore-scss { - background: hotpink; -} - -/* @import \\"~scss/some.module\\"; */ -.some-scss-module { - background: hotpink; -} - -/* @import url(http://example.com/something/from/the/interwebs); */ -/* scoped import @import \\"language\\"; */ -.scoped-import { - @import \\"./file.css\\"; -} -.scoped-import body { - font: 100% Helvetica, sans-serif; - color: #333; -} -.scoped-import nav ul { - margin: 0; - padding: 0; - list-style: none; -} -.scoped-import nav li { - display: inline-block; -} -.scoped-import nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} -.scoped-import .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} -.scoped-import .foo:before { - content: \\"\\\\e0c6\\"; -} -.scoped-import .bar:before { - content: \\"∑\\"; -} - -/* @import \\"util\\"; */ -.util { - color: hotpink; -} - -/* @import \\"~module\\"; */ -.module { - background: hotpink; -} - -/* @import \\"~another\\"; */ -.another-scss-module-from-node-modules { - background: hotpink; -} - -/* @import \\"~@org/style\\"; */ -a { - color: red; -}" -`; - -exports[`loader should work with difference "@import" at-rules (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -/* @import another/module */ -@import url(http://example.com/something/from/the/interwebs); -@import url(./file.css); -.another-sass-module { - background: hotpink; } - -/* @import another/underscore */ -.underscore { - background: hotpink; } - -/* @import another/_underscore */ -.underscore { - background: hotpink; } - -/* @import ~sass/underscore */ -.underscore-sass { - background: hotpink; } - -/* @import ~sass/some.module */ -.some-sass-module { - background: hotpink; } - -/* @import url(http://example.com/something/from/the/interwebs); */ -/* scoped import @import language */ -.scoped-import { } - .scoped-import body { - font: 100% Helvetica, sans-serif; - color: #333; } - .scoped-import nav ul { - margin: 0; - padding: 0; - list-style: none; } - .scoped-import nav li { - display: inline-block; } - .scoped-import nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - .scoped-import .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - .scoped-import .message, .scoped-import .success, .scoped-import .error, .scoped-import .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - .scoped-import .success { - border-color: green; } - .scoped-import .error { - border-color: red; } - .scoped-import .warning { - border-color: yellow; } - .scoped-import .foo:before { - content: \\"\\"; } - .scoped-import .bar:before { - content: \\"∑\\"; } - -/* @import util */ -.util { - color: hotpink; } - -/* @import ~module */ -.module { - background: hotpink; } - -/* @import ~another */ -.another-scss-module-from-node-modules { - background: hotpink; } - -a { - color: red; } -" -`; - -exports[`loader should work with difference "@import" at-rules (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -/* @import \\"another/module\\"; */ -@import url(http://example.com/something/from/the/interwebs); -@import url(./file.css); -.another-scss-module { - background: hotpink; } - -/* @import \\"another/underscore\\"; */ -.underscore { - background: hotpink; } - -/* @import \\"another/_underscore\\"; */ -.underscore { - background: hotpink; } - -/* @import \\"~scss/underscore\\"; */ -.underscore-scss { - background: hotpink; } - -/* @import \\"~scss/some.module\\"; */ -.some-scss-module { - background: hotpink; } - -/* @import url(http://example.com/something/from/the/interwebs); */ -/* scoped import @import \\"language\\"; */ -.scoped-import { } - .scoped-import body { - font: 100% Helvetica, sans-serif; - color: #333; } - .scoped-import nav ul { - margin: 0; - padding: 0; - list-style: none; } - .scoped-import nav li { - display: inline-block; } - .scoped-import nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - .scoped-import .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - .scoped-import .foo:before { - content: \\"\\"; } - .scoped-import .bar:before { - content: \\"∑\\"; } - -/* @import \\"util\\"; */ -.util { - color: hotpink; } - -/* @import \\"~module\\"; */ -.module { - background: hotpink; } - -/* @import \\"~another\\"; */ -.another-scss-module-from-node-modules { - background: hotpink; } - -/* @import \\"~@org/style\\"; */ -a { - color: red; } -" -`; - -exports[`loader should work with difference "@import" at-rules (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with difference "@import" at-rules (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with different "@use" at-rules (dart-sass) (sass): css 1`] = ` -".another-sass-module { - background: hotpink; -} - -.underscore { - background: hotpink; -} - -.underscore-sass { - background: hotpink; -} - -.some-sass-module { - background: hotpink; -} - -.util { - color: hotpink; -} - -.module { - background: hotpink; -} - -.another-scss-module-from-node-modules { - background: hotpink; -} - -a { - color: red; -} - -/* @use another/module */ -/* @use another/underscore */ -/* @use another/_underscore */ -/* @use ~sass/underscore */ -/* @use ~sass/some.module */ -/* @use util */ -/* @use ~module */ -/* @use ~another */" -`; - -exports[`loader should work with different "@use" at-rules (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with different "@use" at-rules (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with different "@use" at-rules (dart-sass) (scss): css 1`] = ` -".another-scss-module { - background: hotpink; -} - -.underscore { - background: hotpink; -} - -.underscore-scss { - background: hotpink; -} - -.some-scss-module { - background: hotpink; -} - -.util { - color: hotpink; -} - -.module { - background: hotpink; -} - -.another-scss-module-from-node-modules { - background: hotpink; -} - -a { - color: red; -} - -/* @use \\"another/module\\"; */ -/* @use \\"another/underscore\\"; */ -/* @use \\"another/_underscore\\"; */ -/* @use \\"~scss/underscore\\"; */ -/* @use \\"~scss/some.module\\"; */ -/* @use \\"util\\"; */ -/* @use \\"~module\\"; */ -/* @use \\"~another\\"; */ -/* @use \\"~@org/style\\"; */" -`; - -exports[`loader should work with different "@use" at-rules (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with different "@use" at-rules (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.message, .warning, .error, .success { - border: 1px solid #ccc; - padding: 10px; - color: #333; -} - -.success { - border-color: green; -} - -.error { - border-color: red; -} - -.warning { - border-color: yellow; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -} - -.another-sass-module { - background: hotpink; -} - -body { - background: lightgrey; -}" -`; - -exports[`loader should work with multiple "@import" at-rules (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (dart-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -} - -.another-scss-module { - background: hotpink; -} - -body { - background: lightgrey; -}" -`; - -exports[`loader should work with multiple "@import" at-rules (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } - -.another-sass-module { - background: hotpink; } - -body { - background: lightgrey; } -" -`; - -exports[`loader should work with multiple "@import" at-rules (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } - -.another-scss-module { - background: hotpink; } - -body { - background: lightgrey; } -" -`; - -exports[`loader should work with multiple "@import" at-rules (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules without quotes (dart-sass) (sass): css 1`] = ` -".example { - color: red; -} - -.example { - color: red; -} - -.example { - color: red; -} - -.example { - color: red; -} - -.example-2 { - color: blue; -} - -.example-2 { - color: blue; -} - -.example-2 { - color: blue; -} - -.example-2 { - color: blue; -} - -.directory-file { - color: #000066; -} - -.directory-file { - color: #000066; -} - -.directory-file { - color: #000066; -} - -.directory-file { - color: #000066; -} - -.directory-6-file { - color: #faf; -} - -.directory-6-file { - color: #faf; -} - -.directory-6-file { - color: #faf; -} - -.directory-6-file { - color: #faf; -} - -.directory-6-file { - color: #faf; -} - -.directory-6-file { - color: #faf; -} - -.directory-6-file { - color: #faf; -} - -.directory-6-file { - color: #faf; -} - -.underscore-sass { - background: hotpink; -}" -`; - -exports[`loader should work with multiple "@import" at-rules without quotes (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules without quotes (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules without quotes (node-sass) (sass): css 1`] = ` -".example { - color: red; } - -.example { - color: red; } - -.example { - color: red; } - -.example { - color: red; } - -.example-2 { - color: blue; } - -.example-2 { - color: blue; } - -.example-2 { - color: blue; } - -.example-2 { - color: blue; } - -.directory-file { - color: #000066; } - -.directory-file { - color: #000066; } - -.directory-file { - color: #000066; } - -.directory-file { - color: #000066; } - -.directory-6-file { - color: #faf; } - -.directory-6-file { - color: #faf; } - -.directory-6-file { - color: #faf; } - -.directory-6-file { - color: #faf; } - -.directory-6-file { - color: #faf; } - -.directory-6-file { - color: #faf; } - -.directory-6-file { - color: #faf; } - -.directory-6-file { - color: #faf; } - -.underscore-sass { - background: hotpink; } -" -`; - -exports[`loader should work with multiple "@import" at-rules without quotes (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with multiple "@import" at-rules without quotes (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -/*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -[hidden], -template { - display: none; -} - -a { - background-color: transparent; -} - -a:active, -a:hover { - outline: 0; -} - -abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted; -} - -b, -strong { - font-weight: bold; -} - -dfn { - font-style: italic; -} - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -mark { - background: #ff0; - color: #000; -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -img { - border: 0; -} - -svg:not(:root) { - overflow: hidden; -} - -figure { - margin: 1em 40px; -} - -hr { - box-sizing: content-box; - height: 0; -} - -pre { - overflow: auto; -} - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} - -button { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html input[type=button], -input[type=reset], -input[type=submit] { - -webkit-appearance: button; - cursor: pointer; -} - -button[disabled], -html input[disabled] { - cursor: default; -} - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -input { - line-height: normal; -} - -input[type=checkbox], -input[type=radio] { - box-sizing: border-box; - padding: 0; -} - -input[type=number]::-webkit-inner-spin-button, -input[type=number]::-webkit-outer-spin-button { - height: auto; -} - -input[type=search] { - -webkit-appearance: textfield; - box-sizing: content-box; -} - -input[type=search]::-webkit-search-cancel-button, -input[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -legend { - border: 0; - padding: 0; -} - -textarea { - overflow: auto; -} - -optgroup { - font-weight: bold; -} - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} - -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, -*:before, -*:after { - color: #000 !important; - text-shadow: none !important; - background: transparent !important; - box-shadow: none !important; - } - - a, -a:visited { - text-decoration: underline; - } - - a[href]:after { - content: \\" (\\" attr(href) \\")\\"; - } - - abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; - } - - a[href^=\\"#\\"]:after, -a[href^=\\"javascript:\\"]:after { - content: \\"\\"; - } - - pre, -blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - tr, -img { - page-break-inside: avoid; - } - - img { - max-width: 100% !important; - } - - p, -h2, -h3 { - orphans: 3; - widows: 3; - } - - h2, -h3 { - page-break-after: avoid; - } - - .navbar { - display: none; - } - - .btn > .caret, -.dropup > .btn > .caret { - border-top-color: #000 !important; - } - - .label { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - } - .table td, -.table th { - background-color: #fff !important; - } - - .table-bordered th, -.table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: \\"Glyphicons Halflings\\"; - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: \\"Glyphicons Halflings\\"; - font-style: normal; - font-weight: 400; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.glyphicon-asterisk:before { - content: \\"*\\"; -} - -.glyphicon-plus:before { - content: \\"+\\"; -} - -.glyphicon-euro:before, -.glyphicon-eur:before { - content: \\"€\\"; -} - -.glyphicon-minus:before { - content: \\"−\\"; -} - -.glyphicon-cloud:before { - content: \\"☁\\"; -} - -.glyphicon-envelope:before { - content: \\"✉\\"; -} - -.glyphicon-pencil:before { - content: \\"✏\\"; -} - -.glyphicon-glass:before { - content: \\"\\\\e001\\"; -} - -.glyphicon-music:before { - content: \\"\\\\e002\\"; -} - -.glyphicon-search:before { - content: \\"\\\\e003\\"; -} - -.glyphicon-heart:before { - content: \\"\\\\e005\\"; -} - -.glyphicon-star:before { - content: \\"\\\\e006\\"; -} - -.glyphicon-star-empty:before { - content: \\"\\\\e007\\"; -} - -.glyphicon-user:before { - content: \\"\\\\e008\\"; -} - -.glyphicon-film:before { - content: \\"\\\\e009\\"; -} - -.glyphicon-th-large:before { - content: \\"\\\\e010\\"; -} - -.glyphicon-th:before { - content: \\"\\\\e011\\"; -} - -.glyphicon-th-list:before { - content: \\"\\\\e012\\"; -} - -.glyphicon-ok:before { - content: \\"\\\\e013\\"; -} - -.glyphicon-remove:before { - content: \\"\\\\e014\\"; -} - -.glyphicon-zoom-in:before { - content: \\"\\\\e015\\"; -} - -.glyphicon-zoom-out:before { - content: \\"\\\\e016\\"; -} - -.glyphicon-off:before { - content: \\"\\\\e017\\"; -} - -.glyphicon-signal:before { - content: \\"\\\\e018\\"; -} - -.glyphicon-cog:before { - content: \\"\\\\e019\\"; -} - -.glyphicon-trash:before { - content: \\"\\\\e020\\"; -} - -.glyphicon-home:before { - content: \\"\\\\e021\\"; -} - -.glyphicon-file:before { - content: \\"\\\\e022\\"; -} - -.glyphicon-time:before { - content: \\"\\\\e023\\"; -} - -.glyphicon-road:before { - content: \\"\\\\e024\\"; -} - -.glyphicon-download-alt:before { - content: \\"\\\\e025\\"; -} - -.glyphicon-download:before { - content: \\"\\\\e026\\"; -} - -.glyphicon-upload:before { - content: \\"\\\\e027\\"; -} - -.glyphicon-inbox:before { - content: \\"\\\\e028\\"; -} - -.glyphicon-play-circle:before { - content: \\"\\\\e029\\"; -} - -.glyphicon-repeat:before { - content: \\"\\\\e030\\"; -} - -.glyphicon-refresh:before { - content: \\"\\\\e031\\"; -} - -.glyphicon-list-alt:before { - content: \\"\\\\e032\\"; -} - -.glyphicon-lock:before { - content: \\"\\\\e033\\"; -} - -.glyphicon-flag:before { - content: \\"\\\\e034\\"; -} - -.glyphicon-headphones:before { - content: \\"\\\\e035\\"; -} - -.glyphicon-volume-off:before { - content: \\"\\\\e036\\"; -} - -.glyphicon-volume-down:before { - content: \\"\\\\e037\\"; -} - -.glyphicon-volume-up:before { - content: \\"\\\\e038\\"; -} - -.glyphicon-qrcode:before { - content: \\"\\\\e039\\"; -} - -.glyphicon-barcode:before { - content: \\"\\\\e040\\"; -} - -.glyphicon-tag:before { - content: \\"\\\\e041\\"; -} - -.glyphicon-tags:before { - content: \\"\\\\e042\\"; -} - -.glyphicon-book:before { - content: \\"\\\\e043\\"; -} - -.glyphicon-bookmark:before { - content: \\"\\\\e044\\"; -} - -.glyphicon-print:before { - content: \\"\\\\e045\\"; -} - -.glyphicon-camera:before { - content: \\"\\\\e046\\"; -} - -.glyphicon-font:before { - content: \\"\\\\e047\\"; -} - -.glyphicon-bold:before { - content: \\"\\\\e048\\"; -} - -.glyphicon-italic:before { - content: \\"\\\\e049\\"; -} - -.glyphicon-text-height:before { - content: \\"\\\\e050\\"; -} - -.glyphicon-text-width:before { - content: \\"\\\\e051\\"; -} - -.glyphicon-align-left:before { - content: \\"\\\\e052\\"; -} - -.glyphicon-align-center:before { - content: \\"\\\\e053\\"; -} - -.glyphicon-align-right:before { - content: \\"\\\\e054\\"; -} - -.glyphicon-align-justify:before { - content: \\"\\\\e055\\"; -} - -.glyphicon-list:before { - content: \\"\\\\e056\\"; -} - -.glyphicon-indent-left:before { - content: \\"\\\\e057\\"; -} - -.glyphicon-indent-right:before { - content: \\"\\\\e058\\"; -} - -.glyphicon-facetime-video:before { - content: \\"\\\\e059\\"; -} - -.glyphicon-picture:before { - content: \\"\\\\e060\\"; -} - -.glyphicon-map-marker:before { - content: \\"\\\\e062\\"; -} - -.glyphicon-adjust:before { - content: \\"\\\\e063\\"; -} - -.glyphicon-tint:before { - content: \\"\\\\e064\\"; -} - -.glyphicon-edit:before { - content: \\"\\\\e065\\"; -} - -.glyphicon-share:before { - content: \\"\\\\e066\\"; -} - -.glyphicon-check:before { - content: \\"\\\\e067\\"; -} - -.glyphicon-move:before { - content: \\"\\\\e068\\"; -} - -.glyphicon-step-backward:before { - content: \\"\\\\e069\\"; -} - -.glyphicon-fast-backward:before { - content: \\"\\\\e070\\"; -} - -.glyphicon-backward:before { - content: \\"\\\\e071\\"; -} - -.glyphicon-play:before { - content: \\"\\\\e072\\"; -} - -.glyphicon-pause:before { - content: \\"\\\\e073\\"; -} - -.glyphicon-stop:before { - content: \\"\\\\e074\\"; -} - -.glyphicon-forward:before { - content: \\"\\\\e075\\"; -} - -.glyphicon-fast-forward:before { - content: \\"\\\\e076\\"; -} - -.glyphicon-step-forward:before { - content: \\"\\\\e077\\"; -} - -.glyphicon-eject:before { - content: \\"\\\\e078\\"; -} - -.glyphicon-chevron-left:before { - content: \\"\\\\e079\\"; -} - -.glyphicon-chevron-right:before { - content: \\"\\\\e080\\"; -} - -.glyphicon-plus-sign:before { - content: \\"\\\\e081\\"; -} - -.glyphicon-minus-sign:before { - content: \\"\\\\e082\\"; -} - -.glyphicon-remove-sign:before { - content: \\"\\\\e083\\"; -} - -.glyphicon-ok-sign:before { - content: \\"\\\\e084\\"; -} - -.glyphicon-question-sign:before { - content: \\"\\\\e085\\"; -} - -.glyphicon-info-sign:before { - content: \\"\\\\e086\\"; -} - -.glyphicon-screenshot:before { - content: \\"\\\\e087\\"; -} - -.glyphicon-remove-circle:before { - content: \\"\\\\e088\\"; -} - -.glyphicon-ok-circle:before { - content: \\"\\\\e089\\"; -} - -.glyphicon-ban-circle:before { - content: \\"\\\\e090\\"; -} - -.glyphicon-arrow-left:before { - content: \\"\\\\e091\\"; -} - -.glyphicon-arrow-right:before { - content: \\"\\\\e092\\"; -} - -.glyphicon-arrow-up:before { - content: \\"\\\\e093\\"; -} - -.glyphicon-arrow-down:before { - content: \\"\\\\e094\\"; -} - -.glyphicon-share-alt:before { - content: \\"\\\\e095\\"; -} - -.glyphicon-resize-full:before { - content: \\"\\\\e096\\"; -} - -.glyphicon-resize-small:before { - content: \\"\\\\e097\\"; -} - -.glyphicon-exclamation-sign:before { - content: \\"\\\\e101\\"; -} - -.glyphicon-gift:before { - content: \\"\\\\e102\\"; -} - -.glyphicon-leaf:before { - content: \\"\\\\e103\\"; -} - -.glyphicon-fire:before { - content: \\"\\\\e104\\"; -} - -.glyphicon-eye-open:before { - content: \\"\\\\e105\\"; -} - -.glyphicon-eye-close:before { - content: \\"\\\\e106\\"; -} - -.glyphicon-warning-sign:before { - content: \\"\\\\e107\\"; -} - -.glyphicon-plane:before { - content: \\"\\\\e108\\"; -} - -.glyphicon-calendar:before { - content: \\"\\\\e109\\"; -} - -.glyphicon-random:before { - content: \\"\\\\e110\\"; -} - -.glyphicon-comment:before { - content: \\"\\\\e111\\"; -} - -.glyphicon-magnet:before { - content: \\"\\\\e112\\"; -} - -.glyphicon-chevron-up:before { - content: \\"\\\\e113\\"; -} - -.glyphicon-chevron-down:before { - content: \\"\\\\e114\\"; -} - -.glyphicon-retweet:before { - content: \\"\\\\e115\\"; -} - -.glyphicon-shopping-cart:before { - content: \\"\\\\e116\\"; -} - -.glyphicon-folder-close:before { - content: \\"\\\\e117\\"; -} - -.glyphicon-folder-open:before { - content: \\"\\\\e118\\"; -} - -.glyphicon-resize-vertical:before { - content: \\"\\\\e119\\"; -} - -.glyphicon-resize-horizontal:before { - content: \\"\\\\e120\\"; -} - -.glyphicon-hdd:before { - content: \\"\\\\e121\\"; -} - -.glyphicon-bullhorn:before { - content: \\"\\\\e122\\"; -} - -.glyphicon-bell:before { - content: \\"\\\\e123\\"; -} - -.glyphicon-certificate:before { - content: \\"\\\\e124\\"; -} - -.glyphicon-thumbs-up:before { - content: \\"\\\\e125\\"; -} - -.glyphicon-thumbs-down:before { - content: \\"\\\\e126\\"; -} - -.glyphicon-hand-right:before { - content: \\"\\\\e127\\"; -} - -.glyphicon-hand-left:before { - content: \\"\\\\e128\\"; -} - -.glyphicon-hand-up:before { - content: \\"\\\\e129\\"; -} - -.glyphicon-hand-down:before { - content: \\"\\\\e130\\"; -} - -.glyphicon-circle-arrow-right:before { - content: \\"\\\\e131\\"; -} - -.glyphicon-circle-arrow-left:before { - content: \\"\\\\e132\\"; -} - -.glyphicon-circle-arrow-up:before { - content: \\"\\\\e133\\"; -} - -.glyphicon-circle-arrow-down:before { - content: \\"\\\\e134\\"; -} - -.glyphicon-globe:before { - content: \\"\\\\e135\\"; -} - -.glyphicon-wrench:before { - content: \\"\\\\e136\\"; -} - -.glyphicon-tasks:before { - content: \\"\\\\e137\\"; -} - -.glyphicon-filter:before { - content: \\"\\\\e138\\"; -} - -.glyphicon-briefcase:before { - content: \\"\\\\e139\\"; -} - -.glyphicon-fullscreen:before { - content: \\"\\\\e140\\"; -} - -.glyphicon-dashboard:before { - content: \\"\\\\e141\\"; -} - -.glyphicon-paperclip:before { - content: \\"\\\\e142\\"; -} - -.glyphicon-heart-empty:before { - content: \\"\\\\e143\\"; -} - -.glyphicon-link:before { - content: \\"\\\\e144\\"; -} - -.glyphicon-phone:before { - content: \\"\\\\e145\\"; -} - -.glyphicon-pushpin:before { - content: \\"\\\\e146\\"; -} - -.glyphicon-usd:before { - content: \\"\\\\e148\\"; -} - -.glyphicon-gbp:before { - content: \\"\\\\e149\\"; -} - -.glyphicon-sort:before { - content: \\"\\\\e150\\"; -} - -.glyphicon-sort-by-alphabet:before { - content: \\"\\\\e151\\"; -} - -.glyphicon-sort-by-alphabet-alt:before { - content: \\"\\\\e152\\"; -} - -.glyphicon-sort-by-order:before { - content: \\"\\\\e153\\"; -} - -.glyphicon-sort-by-order-alt:before { - content: \\"\\\\e154\\"; -} - -.glyphicon-sort-by-attributes:before { - content: \\"\\\\e155\\"; -} - -.glyphicon-sort-by-attributes-alt:before { - content: \\"\\\\e156\\"; -} - -.glyphicon-unchecked:before { - content: \\"\\\\e157\\"; -} - -.glyphicon-expand:before { - content: \\"\\\\e158\\"; -} - -.glyphicon-collapse-down:before { - content: \\"\\\\e159\\"; -} - -.glyphicon-collapse-up:before { - content: \\"\\\\e160\\"; -} - -.glyphicon-log-in:before { - content: \\"\\\\e161\\"; -} - -.glyphicon-flash:before { - content: \\"\\\\e162\\"; -} - -.glyphicon-log-out:before { - content: \\"\\\\e163\\"; -} - -.glyphicon-new-window:before { - content: \\"\\\\e164\\"; -} - -.glyphicon-record:before { - content: \\"\\\\e165\\"; -} - -.glyphicon-save:before { - content: \\"\\\\e166\\"; -} - -.glyphicon-open:before { - content: \\"\\\\e167\\"; -} - -.glyphicon-saved:before { - content: \\"\\\\e168\\"; -} - -.glyphicon-import:before { - content: \\"\\\\e169\\"; -} - -.glyphicon-export:before { - content: \\"\\\\e170\\"; -} - -.glyphicon-send:before { - content: \\"\\\\e171\\"; -} - -.glyphicon-floppy-disk:before { - content: \\"\\\\e172\\"; -} - -.glyphicon-floppy-saved:before { - content: \\"\\\\e173\\"; -} - -.glyphicon-floppy-remove:before { - content: \\"\\\\e174\\"; -} - -.glyphicon-floppy-save:before { - content: \\"\\\\e175\\"; -} - -.glyphicon-floppy-open:before { - content: \\"\\\\e176\\"; -} - -.glyphicon-credit-card:before { - content: \\"\\\\e177\\"; -} - -.glyphicon-transfer:before { - content: \\"\\\\e178\\"; -} - -.glyphicon-cutlery:before { - content: \\"\\\\e179\\"; -} - -.glyphicon-header:before { - content: \\"\\\\e180\\"; -} - -.glyphicon-compressed:before { - content: \\"\\\\e181\\"; -} - -.glyphicon-earphone:before { - content: \\"\\\\e182\\"; -} - -.glyphicon-phone-alt:before { - content: \\"\\\\e183\\"; -} - -.glyphicon-tower:before { - content: \\"\\\\e184\\"; -} - -.glyphicon-stats:before { - content: \\"\\\\e185\\"; -} - -.glyphicon-sd-video:before { - content: \\"\\\\e186\\"; -} - -.glyphicon-hd-video:before { - content: \\"\\\\e187\\"; -} - -.glyphicon-subtitles:before { - content: \\"\\\\e188\\"; -} - -.glyphicon-sound-stereo:before { - content: \\"\\\\e189\\"; -} - -.glyphicon-sound-dolby:before { - content: \\"\\\\e190\\"; -} - -.glyphicon-sound-5-1:before { - content: \\"\\\\e191\\"; -} - -.glyphicon-sound-6-1:before { - content: \\"\\\\e192\\"; -} - -.glyphicon-sound-7-1:before { - content: \\"\\\\e193\\"; -} - -.glyphicon-copyright-mark:before { - content: \\"\\\\e194\\"; -} - -.glyphicon-registration-mark:before { - content: \\"\\\\e195\\"; -} - -.glyphicon-cloud-download:before { - content: \\"\\\\e197\\"; -} - -.glyphicon-cloud-upload:before { - content: \\"\\\\e198\\"; -} - -.glyphicon-tree-conifer:before { - content: \\"\\\\e199\\"; -} - -.glyphicon-tree-deciduous:before { - content: \\"\\\\e200\\"; -} - -.glyphicon-cd:before { - content: \\"\\\\e201\\"; -} - -.glyphicon-save-file:before { - content: \\"\\\\e202\\"; -} - -.glyphicon-open-file:before { - content: \\"\\\\e203\\"; -} - -.glyphicon-level-up:before { - content: \\"\\\\e204\\"; -} - -.glyphicon-copy:before { - content: \\"\\\\e205\\"; -} - -.glyphicon-paste:before { - content: \\"\\\\e206\\"; -} - -.glyphicon-alert:before { - content: \\"\\\\e209\\"; -} - -.glyphicon-equalizer:before { - content: \\"\\\\e210\\"; -} - -.glyphicon-king:before { - content: \\"\\\\e211\\"; -} - -.glyphicon-queen:before { - content: \\"\\\\e212\\"; -} - -.glyphicon-pawn:before { - content: \\"\\\\e213\\"; -} - -.glyphicon-bishop:before { - content: \\"\\\\e214\\"; -} - -.glyphicon-knight:before { - content: \\"\\\\e215\\"; -} - -.glyphicon-baby-formula:before { - content: \\"\\\\e216\\"; -} - -.glyphicon-tent:before { - content: \\"⛺\\"; -} - -.glyphicon-blackboard:before { - content: \\"\\\\e218\\"; -} - -.glyphicon-bed:before { - content: \\"\\\\e219\\"; -} - -.glyphicon-apple:before { - content: \\"\\\\f8ff\\"; -} - -.glyphicon-erase:before { - content: \\"\\\\e221\\"; -} - -.glyphicon-hourglass:before { - content: \\"⌛\\"; -} - -.glyphicon-lamp:before { - content: \\"\\\\e223\\"; -} - -.glyphicon-duplicate:before { - content: \\"\\\\e224\\"; -} - -.glyphicon-piggy-bank:before { - content: \\"\\\\e225\\"; -} - -.glyphicon-scissors:before { - content: \\"\\\\e226\\"; -} - -.glyphicon-bitcoin:before { - content: \\"\\\\e227\\"; -} - -.glyphicon-btc:before { - content: \\"\\\\e227\\"; -} - -.glyphicon-xbt:before { - content: \\"\\\\e227\\"; -} - -.glyphicon-yen:before { - content: \\"¥\\"; -} - -.glyphicon-jpy:before { - content: \\"¥\\"; -} - -.glyphicon-ruble:before { - content: \\"₽\\"; -} - -.glyphicon-rub:before { - content: \\"₽\\"; -} - -.glyphicon-scale:before { - content: \\"\\\\e230\\"; -} - -.glyphicon-ice-lolly:before { - content: \\"\\\\e231\\"; -} - -.glyphicon-ice-lolly-tasted:before { - content: \\"\\\\e232\\"; -} - -.glyphicon-education:before { - content: \\"\\\\e233\\"; -} - -.glyphicon-option-horizontal:before { - content: \\"\\\\e234\\"; -} - -.glyphicon-option-vertical:before { - content: \\"\\\\e235\\"; -} - -.glyphicon-menu-hamburger:before { - content: \\"\\\\e236\\"; -} - -.glyphicon-modal-window:before { - content: \\"\\\\e237\\"; -} - -.glyphicon-oil:before { - content: \\"\\\\e238\\"; -} - -.glyphicon-grain:before { - content: \\"\\\\e239\\"; -} - -.glyphicon-sunglasses:before { - content: \\"\\\\e240\\"; -} - -.glyphicon-text-size:before { - content: \\"\\\\e241\\"; -} - -.glyphicon-text-color:before { - content: \\"\\\\e242\\"; -} - -.glyphicon-text-background:before { - content: \\"\\\\e243\\"; -} - -.glyphicon-object-align-top:before { - content: \\"\\\\e244\\"; -} - -.glyphicon-object-align-bottom:before { - content: \\"\\\\e245\\"; -} - -.glyphicon-object-align-horizontal:before { - content: \\"\\\\e246\\"; -} - -.glyphicon-object-align-left:before { - content: \\"\\\\e247\\"; -} - -.glyphicon-object-align-vertical:before { - content: \\"\\\\e248\\"; -} - -.glyphicon-object-align-right:before { - content: \\"\\\\e249\\"; -} - -.glyphicon-triangle-right:before { - content: \\"\\\\e250\\"; -} - -.glyphicon-triangle-left:before { - content: \\"\\\\e251\\"; -} - -.glyphicon-triangle-bottom:before { - content: \\"\\\\e252\\"; -} - -.glyphicon-triangle-top:before { - content: \\"\\\\e253\\"; -} - -.glyphicon-console:before { - content: \\"\\\\e254\\"; -} - -.glyphicon-superscript:before { - content: \\"\\\\e255\\"; -} - -.glyphicon-subscript:before { - content: \\"\\\\e256\\"; -} - -.glyphicon-menu-left:before { - content: \\"\\\\e257\\"; -} - -.glyphicon-menu-right:before { - content: \\"\\\\e258\\"; -} - -.glyphicon-menu-down:before { - content: \\"\\\\e259\\"; -} - -.glyphicon-menu-up:before { - content: \\"\\\\e260\\"; -} - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -body { - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.428571429; - color: #333333; - background-color: #fff; -} - -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -a { - color: #337ab7; - text-decoration: none; -} -a:hover, a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -figure { - margin: 0; -} - -img { - vertical-align: middle; -} - -.img-responsive { - display: block; - max-width: 100%; - height: auto; -} - -.img-rounded { - border-radius: 6px; -} - -.img-thumbnail { - padding: 4px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} - -.img-circle { - border-radius: 50%; -} - -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} - -[role=button] { - cursor: pointer; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h1 .small, h2 small, -h2 .small, h3 small, -h3 .small, h4 small, -h4 .small, h5 small, -h5 .small, h6 small, -h6 .small, -.h1 small, -.h1 .small, .h2 small, -.h2 .small, .h3 small, -.h3 .small, .h4 small, -.h4 .small, .h5 small, -.h5 .small, .h6 small, -.h6 .small { - font-weight: 400; - line-height: 1; - color: #777777; -} - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -h1 .small, .h1 small, -.h1 .small, -h2 small, -h2 .small, .h2 small, -.h2 .small, -h3 small, -h3 .small, .h3 small, -.h3 .small { - font-size: 65%; -} - -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -h4 .small, .h4 small, -.h4 .small, -h5 small, -h5 .small, .h5 small, -.h5 .small, -h6 small, -h6 .small, .h6 small, -.h6 .small { - font-size: 75%; -} - -h1, .h1 { - font-size: 36px; -} - -h2, .h2 { - font-size: 30px; -} - -h3, .h3 { - font-size: 24px; -} - -h4, .h4 { - font-size: 18px; -} - -h5, .h5 { - font-size: 14px; -} - -h6, .h6 { - font-size: 12px; -} - -p { - margin: 0 0 10px; -} - -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} - -small, -.small { - font-size: 85%; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.text-left { - text-align: left; -} - -.text-right { - text-align: right; -} - -.text-center { - text-align: center; -} - -.text-justify { - text-align: justify; -} - -.text-nowrap { - white-space: nowrap; -} - -.text-lowercase { - text-transform: lowercase; -} - -.text-uppercase, .initialism { - text-transform: uppercase; -} - -.text-capitalize { - text-transform: capitalize; -} - -.text-muted { - color: #777777; -} - -.text-primary { - color: #337ab7; -} - -a.text-primary:hover, -a.text-primary:focus { - color: #286090; -} - -.text-success { - color: #3c763d; -} - -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} - -.text-info { - color: #31708f; -} - -a.text-info:hover, -a.text-info:focus { - color: #245269; -} - -.text-warning { - color: #8a6d3b; -} - -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} - -.text-danger { - color: #a94442; -} - -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} - -.bg-primary { - color: #fff; -} - -.bg-primary { - background-color: #337ab7; -} - -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; -} - -.bg-success { - background-color: #dff0d8; -} - -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} - -.bg-info { - background-color: #d9edf7; -} - -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} - -.bg-warning { - background-color: #fcf8e3; -} - -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} - -.bg-danger { - background-color: #f2dede; -} - -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} - -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; -} - -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ul ol, -ol ul, -ol ol { - margin-bottom: 0; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} - -dl { - margin-top: 0; - margin-bottom: 20px; -} - -dt, -dd { - line-height: 1.428571429; -} - -dt { - font-weight: 700; -} - -dd { - margin-left: 0; -} - -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: \\" \\"; -} -.dl-horizontal dd:after { - clear: both; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} - -abbr[title], -abbr[data-original-title] { - cursor: help; -} - -.initialism { - font-size: 90%; -} - -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.428571429; - color: #777777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: \\"— \\"; -} - -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eeeeee; - border-left: 0; -} -.blockquote-reverse footer:before, -.blockquote-reverse small:before, -.blockquote-reverse .small:before, -blockquote.pull-right footer:before, -blockquote.pull-right small:before, -blockquote.pull-right .small:before { - content: \\"\\"; -} -.blockquote-reverse footer:after, -.blockquote-reverse small:after, -.blockquote-reverse .small:after, -blockquote.pull-right footer:after, -blockquote.pull-right small:after, -blockquote.pull-right .small:after { - content: \\" —\\"; -} - -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.428571429; -} - -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; -} - -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} - -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; -} - -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.428571429; - color: #333333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.container:before, .container:after { - display: table; - content: \\" \\"; -} -.container:after { - clear: both; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} - -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.container-fluid:before, .container-fluid:after { - display: table; - content: \\" \\"; -} -.container-fluid:after { - clear: both; -} - -.row { - margin-right: -15px; - margin-left: -15px; -} -.row:before, .row:after { - display: table; - content: \\" \\"; -} -.row:after { - clear: both; -} - -.row-no-gutters { - margin-right: 0; - margin-left: 0; -} -.row-no-gutters [class*=col-] { - padding-right: 0; - padding-left: 0; -} - -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} - -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} - -.col-xs-1 { - width: 8.3333333333%; -} - -.col-xs-2 { - width: 16.6666666667%; -} - -.col-xs-3 { - width: 25%; -} - -.col-xs-4 { - width: 33.3333333333%; -} - -.col-xs-5 { - width: 41.6666666667%; -} - -.col-xs-6 { - width: 50%; -} - -.col-xs-7 { - width: 58.3333333333%; -} - -.col-xs-8 { - width: 66.6666666667%; -} - -.col-xs-9 { - width: 75%; -} - -.col-xs-10 { - width: 83.3333333333%; -} - -.col-xs-11 { - width: 91.6666666667%; -} - -.col-xs-12 { - width: 100%; -} - -.col-xs-pull-0 { - right: auto; -} - -.col-xs-pull-1 { - right: 8.3333333333%; -} - -.col-xs-pull-2 { - right: 16.6666666667%; -} - -.col-xs-pull-3 { - right: 25%; -} - -.col-xs-pull-4 { - right: 33.3333333333%; -} - -.col-xs-pull-5 { - right: 41.6666666667%; -} - -.col-xs-pull-6 { - right: 50%; -} - -.col-xs-pull-7 { - right: 58.3333333333%; -} - -.col-xs-pull-8 { - right: 66.6666666667%; -} - -.col-xs-pull-9 { - right: 75%; -} - -.col-xs-pull-10 { - right: 83.3333333333%; -} - -.col-xs-pull-11 { - right: 91.6666666667%; -} - -.col-xs-pull-12 { - right: 100%; -} - -.col-xs-push-0 { - left: auto; -} - -.col-xs-push-1 { - left: 8.3333333333%; -} - -.col-xs-push-2 { - left: 16.6666666667%; -} - -.col-xs-push-3 { - left: 25%; -} - -.col-xs-push-4 { - left: 33.3333333333%; -} - -.col-xs-push-5 { - left: 41.6666666667%; -} - -.col-xs-push-6 { - left: 50%; -} - -.col-xs-push-7 { - left: 58.3333333333%; -} - -.col-xs-push-8 { - left: 66.6666666667%; -} - -.col-xs-push-9 { - left: 75%; -} - -.col-xs-push-10 { - left: 83.3333333333%; -} - -.col-xs-push-11 { - left: 91.6666666667%; -} - -.col-xs-push-12 { - left: 100%; -} - -.col-xs-offset-0 { - margin-left: 0%; -} - -.col-xs-offset-1 { - margin-left: 8.3333333333%; -} - -.col-xs-offset-2 { - margin-left: 16.6666666667%; -} - -.col-xs-offset-3 { - margin-left: 25%; -} - -.col-xs-offset-4 { - margin-left: 33.3333333333%; -} - -.col-xs-offset-5 { - margin-left: 41.6666666667%; -} - -.col-xs-offset-6 { - margin-left: 50%; -} - -.col-xs-offset-7 { - margin-left: 58.3333333333%; -} - -.col-xs-offset-8 { - margin-left: 66.6666666667%; -} - -.col-xs-offset-9 { - margin-left: 75%; -} - -.col-xs-offset-10 { - margin-left: 83.3333333333%; -} - -.col-xs-offset-11 { - margin-left: 91.6666666667%; -} - -.col-xs-offset-12 { - margin-left: 100%; -} - -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - - .col-sm-1 { - width: 8.3333333333%; - } - - .col-sm-2 { - width: 16.6666666667%; - } - - .col-sm-3 { - width: 25%; - } - - .col-sm-4 { - width: 33.3333333333%; - } - - .col-sm-5 { - width: 41.6666666667%; - } - - .col-sm-6 { - width: 50%; - } - - .col-sm-7 { - width: 58.3333333333%; - } - - .col-sm-8 { - width: 66.6666666667%; - } - - .col-sm-9 { - width: 75%; - } - - .col-sm-10 { - width: 83.3333333333%; - } - - .col-sm-11 { - width: 91.6666666667%; - } - - .col-sm-12 { - width: 100%; - } - - .col-sm-pull-0 { - right: auto; - } - - .col-sm-pull-1 { - right: 8.3333333333%; - } - - .col-sm-pull-2 { - right: 16.6666666667%; - } - - .col-sm-pull-3 { - right: 25%; - } - - .col-sm-pull-4 { - right: 33.3333333333%; - } - - .col-sm-pull-5 { - right: 41.6666666667%; - } - - .col-sm-pull-6 { - right: 50%; - } - - .col-sm-pull-7 { - right: 58.3333333333%; - } - - .col-sm-pull-8 { - right: 66.6666666667%; - } - - .col-sm-pull-9 { - right: 75%; - } - - .col-sm-pull-10 { - right: 83.3333333333%; - } - - .col-sm-pull-11 { - right: 91.6666666667%; - } - - .col-sm-pull-12 { - right: 100%; - } - - .col-sm-push-0 { - left: auto; - } - - .col-sm-push-1 { - left: 8.3333333333%; - } - - .col-sm-push-2 { - left: 16.6666666667%; - } - - .col-sm-push-3 { - left: 25%; - } - - .col-sm-push-4 { - left: 33.3333333333%; - } - - .col-sm-push-5 { - left: 41.6666666667%; - } - - .col-sm-push-6 { - left: 50%; - } - - .col-sm-push-7 { - left: 58.3333333333%; - } - - .col-sm-push-8 { - left: 66.6666666667%; - } - - .col-sm-push-9 { - left: 75%; - } - - .col-sm-push-10 { - left: 83.3333333333%; - } - - .col-sm-push-11 { - left: 91.6666666667%; - } - - .col-sm-push-12 { - left: 100%; - } - - .col-sm-offset-0 { - margin-left: 0%; - } - - .col-sm-offset-1 { - margin-left: 8.3333333333%; - } - - .col-sm-offset-2 { - margin-left: 16.6666666667%; - } - - .col-sm-offset-3 { - margin-left: 25%; - } - - .col-sm-offset-4 { - margin-left: 33.3333333333%; - } - - .col-sm-offset-5 { - margin-left: 41.6666666667%; - } - - .col-sm-offset-6 { - margin-left: 50%; - } - - .col-sm-offset-7 { - margin-left: 58.3333333333%; - } - - .col-sm-offset-8 { - margin-left: 66.6666666667%; - } - - .col-sm-offset-9 { - margin-left: 75%; - } - - .col-sm-offset-10 { - margin-left: 83.3333333333%; - } - - .col-sm-offset-11 { - margin-left: 91.6666666667%; - } - - .col-sm-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - - .col-md-1 { - width: 8.3333333333%; - } - - .col-md-2 { - width: 16.6666666667%; - } - - .col-md-3 { - width: 25%; - } - - .col-md-4 { - width: 33.3333333333%; - } - - .col-md-5 { - width: 41.6666666667%; - } - - .col-md-6 { - width: 50%; - } - - .col-md-7 { - width: 58.3333333333%; - } - - .col-md-8 { - width: 66.6666666667%; - } - - .col-md-9 { - width: 75%; - } - - .col-md-10 { - width: 83.3333333333%; - } - - .col-md-11 { - width: 91.6666666667%; - } - - .col-md-12 { - width: 100%; - } - - .col-md-pull-0 { - right: auto; - } - - .col-md-pull-1 { - right: 8.3333333333%; - } - - .col-md-pull-2 { - right: 16.6666666667%; - } - - .col-md-pull-3 { - right: 25%; - } - - .col-md-pull-4 { - right: 33.3333333333%; - } - - .col-md-pull-5 { - right: 41.6666666667%; - } - - .col-md-pull-6 { - right: 50%; - } - - .col-md-pull-7 { - right: 58.3333333333%; - } - - .col-md-pull-8 { - right: 66.6666666667%; - } - - .col-md-pull-9 { - right: 75%; - } - - .col-md-pull-10 { - right: 83.3333333333%; - } - - .col-md-pull-11 { - right: 91.6666666667%; - } - - .col-md-pull-12 { - right: 100%; - } - - .col-md-push-0 { - left: auto; - } - - .col-md-push-1 { - left: 8.3333333333%; - } - - .col-md-push-2 { - left: 16.6666666667%; - } - - .col-md-push-3 { - left: 25%; - } - - .col-md-push-4 { - left: 33.3333333333%; - } - - .col-md-push-5 { - left: 41.6666666667%; - } - - .col-md-push-6 { - left: 50%; - } - - .col-md-push-7 { - left: 58.3333333333%; - } - - .col-md-push-8 { - left: 66.6666666667%; - } - - .col-md-push-9 { - left: 75%; - } - - .col-md-push-10 { - left: 83.3333333333%; - } - - .col-md-push-11 { - left: 91.6666666667%; - } - - .col-md-push-12 { - left: 100%; - } - - .col-md-offset-0 { - margin-left: 0%; - } - - .col-md-offset-1 { - margin-left: 8.3333333333%; - } - - .col-md-offset-2 { - margin-left: 16.6666666667%; - } - - .col-md-offset-3 { - margin-left: 25%; - } - - .col-md-offset-4 { - margin-left: 33.3333333333%; - } - - .col-md-offset-5 { - margin-left: 41.6666666667%; - } - - .col-md-offset-6 { - margin-left: 50%; - } - - .col-md-offset-7 { - margin-left: 58.3333333333%; - } - - .col-md-offset-8 { - margin-left: 66.6666666667%; - } - - .col-md-offset-9 { - margin-left: 75%; - } - - .col-md-offset-10 { - margin-left: 83.3333333333%; - } - - .col-md-offset-11 { - margin-left: 91.6666666667%; - } - - .col-md-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - - .col-lg-1 { - width: 8.3333333333%; - } - - .col-lg-2 { - width: 16.6666666667%; - } - - .col-lg-3 { - width: 25%; - } - - .col-lg-4 { - width: 33.3333333333%; - } - - .col-lg-5 { - width: 41.6666666667%; - } - - .col-lg-6 { - width: 50%; - } - - .col-lg-7 { - width: 58.3333333333%; - } - - .col-lg-8 { - width: 66.6666666667%; - } - - .col-lg-9 { - width: 75%; - } - - .col-lg-10 { - width: 83.3333333333%; - } - - .col-lg-11 { - width: 91.6666666667%; - } - - .col-lg-12 { - width: 100%; - } - - .col-lg-pull-0 { - right: auto; - } - - .col-lg-pull-1 { - right: 8.3333333333%; - } - - .col-lg-pull-2 { - right: 16.6666666667%; - } - - .col-lg-pull-3 { - right: 25%; - } - - .col-lg-pull-4 { - right: 33.3333333333%; - } - - .col-lg-pull-5 { - right: 41.6666666667%; - } - - .col-lg-pull-6 { - right: 50%; - } - - .col-lg-pull-7 { - right: 58.3333333333%; - } - - .col-lg-pull-8 { - right: 66.6666666667%; - } - - .col-lg-pull-9 { - right: 75%; - } - - .col-lg-pull-10 { - right: 83.3333333333%; - } - - .col-lg-pull-11 { - right: 91.6666666667%; - } - - .col-lg-pull-12 { - right: 100%; - } - - .col-lg-push-0 { - left: auto; - } - - .col-lg-push-1 { - left: 8.3333333333%; - } - - .col-lg-push-2 { - left: 16.6666666667%; - } - - .col-lg-push-3 { - left: 25%; - } - - .col-lg-push-4 { - left: 33.3333333333%; - } - - .col-lg-push-5 { - left: 41.6666666667%; - } - - .col-lg-push-6 { - left: 50%; - } - - .col-lg-push-7 { - left: 58.3333333333%; - } - - .col-lg-push-8 { - left: 66.6666666667%; - } - - .col-lg-push-9 { - left: 75%; - } - - .col-lg-push-10 { - left: 83.3333333333%; - } - - .col-lg-push-11 { - left: 91.6666666667%; - } - - .col-lg-push-12 { - left: 100%; - } - - .col-lg-offset-0 { - margin-left: 0%; - } - - .col-lg-offset-1 { - margin-left: 8.3333333333%; - } - - .col-lg-offset-2 { - margin-left: 16.6666666667%; - } - - .col-lg-offset-3 { - margin-left: 25%; - } - - .col-lg-offset-4 { - margin-left: 33.3333333333%; - } - - .col-lg-offset-5 { - margin-left: 41.6666666667%; - } - - .col-lg-offset-6 { - margin-left: 50%; - } - - .col-lg-offset-7 { - margin-left: 58.3333333333%; - } - - .col-lg-offset-8 { - margin-left: 66.6666666667%; - } - - .col-lg-offset-9 { - margin-left: 75%; - } - - .col-lg-offset-10 { - margin-left: 83.3333333333%; - } - - .col-lg-offset-11 { - margin-left: 91.6666666667%; - } - - .col-lg-offset-12 { - margin-left: 100%; - } -} -table { - background-color: transparent; -} -table col[class*=col-] { - position: static; - display: table-column; - float: none; -} -table td[class*=col-], -table th[class*=col-] { - position: static; - display: table-cell; - float: none; -} - -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; -} - -th { - text-align: left; -} - -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > thead > tr > td, -.table > tbody > tr > th, -.table > tbody > tr > td, -.table > tfoot > tr > th, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.428571429; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > th, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} - -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; -} - -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > th, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > th, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} - -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} - -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} - -.table > thead > tr > td.active, -.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} - -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} - -.table > thead > tr > td.success, -.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} - -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} - -.table > thead > tr > td.info, -.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} - -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} - -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} - -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} - -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} - -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} - -.table-responsive { - min-height: 0.01%; - overflow-x: auto; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, -.table-responsive > .table > thead > tr > td, -.table-responsive > .table > tbody > tr > th, -.table-responsive > .table > tbody > tr > td, -.table-responsive > .table > tfoot > tr > th, -.table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, -.table-responsive > .table-bordered > thead > tr > td:first-child, -.table-responsive > .table-bordered > tbody > tr > th:first-child, -.table-responsive > .table-bordered > tbody > tr > td:first-child, -.table-responsive > .table-bordered > tfoot > tr > th:first-child, -.table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, -.table-responsive > .table-bordered > thead > tr > td:last-child, -.table-responsive > .table-bordered > tbody > tr > th:last-child, -.table-responsive > .table-bordered > tbody > tr > td:last-child, -.table-responsive > .table-bordered > tfoot > tr > th:last-child, -.table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, -.table-responsive > .table-bordered > tbody > tr:last-child > td, -.table-responsive > .table-bordered > tfoot > tr:last-child > th, -.table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} - -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: 700; -} - -input[type=search] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - appearance: none; -} - -input[type=radio], -input[type=checkbox] { - margin: 4px 0 0; - margin-top: 1px \\\\9 ; - line-height: normal; -} -input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], -input[type=checkbox][disabled], -input[type=checkbox].disabled, -fieldset[disabled] input[type=checkbox] { - cursor: not-allowed; -} - -input[type=file] { - display: block; -} - -input[type=range] { - display: block; - width: 100%; -} - -select[multiple], -select[size] { - height: auto; -} - -input[type=file]:focus, -input[type=radio]:focus, -input[type=checkbox]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.428571429; - color: #555555; -} - -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - color: #555555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; -} -.form-control[disabled], fieldset[disabled] .form-control { - cursor: not-allowed; -} - -textarea.form-control { - height: auto; -} - -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type=date].form-control, -input[type=time].form-control, -input[type=datetime-local].form-control, -input[type=month].form-control { - line-height: 34px; - } - input[type=date].input-sm, -.input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date], -input[type=time].input-sm, -.input-group-sm > .input-group-btn > input[type=time].btn, -.input-group-sm input[type=time], -input[type=datetime-local].input-sm, -.input-group-sm > .input-group-btn > input[type=datetime-local].btn, -.input-group-sm input[type=datetime-local], -input[type=month].input-sm, -.input-group-sm > .input-group-btn > input[type=month].btn, -.input-group-sm input[type=month] { - line-height: 30px; - } - input[type=date].input-lg, -.input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date], -input[type=time].input-lg, -.input-group-lg > .input-group-btn > input[type=time].btn, -.input-group-lg input[type=time], -input[type=datetime-local].input-lg, -.input-group-lg > .input-group-btn > input[type=datetime-local].btn, -.input-group-lg input[type=datetime-local], -input[type=month].input-lg, -.input-group-lg > .input-group-btn > input[type=month].btn, -.input-group-lg input[type=month] { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} - -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio.disabled label, fieldset[disabled] .radio label, -.checkbox.disabled label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; -} - -.radio input[type=radio], -.radio-inline input[type=radio], -.checkbox input[type=checkbox], -.checkbox-inline input[type=checkbox] { - position: absolute; - margin-top: 4px \\\\9 ; - margin-left: -20px; -} - -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} - -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - vertical-align: middle; - cursor: pointer; -} -.radio-inline.disabled, fieldset[disabled] .radio-inline, -.checkbox-inline.disabled, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} - -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} - -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, -.input-group-lg > .form-control-static.input-group-addon, -.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, -.input-group-sm > .form-control-static.input-group-addon, -.input-group-sm > .input-group-btn > .form-control-static.btn { - padding-right: 0; - padding-left: 0; -} - -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 30px; - line-height: 30px; -} - -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select[multiple].form-control, -.input-group-sm > select[multiple].input-group-addon, -.input-group-sm > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; -} - -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} - -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 46px; - line-height: 46px; -} - -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select[multiple].form-control, -.input-group-lg > select[multiple].input-group-addon, -.input-group-lg > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.3333333; -} - -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} - -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} - -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, -.input-group-lg > .input-group-addon + .form-control-feedback, -.input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} - -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, -.input-group-sm > .input-group-addon + .form-control-feedback, -.input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} - -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; -} -.has-success .form-control-feedback { - color: #3c763d; -} - -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} - -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; -} -.has-error .form-control-feedback { - color: #a94442; -} - -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} - -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} - -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, -.form-inline .input-group .input-group-btn, -.form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, -.form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, -.form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type=radio], -.form-inline .checkbox input[type=checkbox] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} - -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: \\" \\"; -} -.form-horizontal .form-group:after { - clear: both; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; - } -} - -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, .btn[disabled], fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - opacity: 0.65; - -webkit-box-shadow: none; - box-shadow: none; -} - -a.btn.disabled, fieldset[disabled] a.btn { - pointer-events: none; -} - -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - background-image: none; - border-color: #adadad; -} -.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} - -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - background-image: none; - border-color: #204d74; -} -.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} - -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - background-image: none; - border-color: #398439; -} -.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; -} -.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} - -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - background-image: none; - border-color: #269abc; -} -.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} - -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - background-image: none; - border-color: #d58512; -} -.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} - -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - background-image: none; - border-color: #ac2925; -} -.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} - -.btn-link { - font-weight: 400; - color: #337ab7; - border-radius: 0; -} -.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; -} -.btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-block { - display: block; - width: 100%; -} - -.btn-block + .btn-block { - margin-top: 5px; -} - -input[type=submit].btn-block, -input[type=reset].btn-block, -input[type=button].btn-block { - width: 100%; -} - -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.in { - opacity: 1; -} - -.collapse { - display: none; -} -.collapse.in { - display: block; -} - -tr.collapse.in { - display: table-row; -} - -tbody.collapse.in { - display: table-row-group; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \\\\9 ; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} - -.dropup, -.dropdown { - position: relative; -} - -.dropdown-toggle:focus { - outline: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.428571429; - color: #333333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} - -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} - -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; -} -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} - -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} - -.dropdown-menu-right { - right: 0; - left: auto; -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.428571429; - color: #777777; - white-space: nowrap; -} - -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; -} - -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} - -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: \\"\\"; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \\\\9 ; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} - -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:hover, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 2; -} - -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} - -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: \\" \\"; -} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar .btn, -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} - -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} - -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group > .btn-group { - float: left; -} - -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} - -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} - -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; -} - -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; -} - -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} - -.btn .caret { - margin-left: 0; -} - -.btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} - -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; -} - -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { - display: table; - content: \\" \\"; -} -.btn-group-vertical > .btn-group:after { - clear: both; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} - -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} - -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} - -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} - -[data-toggle=buttons] > .btn input[type=radio], -[data-toggle=buttons] > .btn input[type=checkbox], -[data-toggle=buttons] > .btn-group > .btn input[type=radio], -[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*=col-] { - float: none; - padding-right: 0; - padding-left: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group .form-control:focus { - z-index: 3; -} - -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} - -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} - -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: 400; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type=radio], -.input-group-addon input[type=checkbox] { - margin-top: 0; -} - -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group-addon:first-child { - border-right: 0; -} - -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-addon:last-child { - border-left: 0; -} - -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; -} - -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav:before, .nav:after { - display: table; - content: \\" \\"; -} -.nav:after { - clear: both; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.nav > li.disabled > a { - color: #777777; -} -.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} - -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.428571429; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; -} -.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} - -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} - -.nav-justified, .nav-tabs.nav-justified { - width: 100%; -} -.nav-justified > li, .nav-tabs.nav-justified > li { - float: none; -} -.nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} - -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border-bottom-color: #fff; - } -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -.navbar:before, .navbar:after { - display: table; - content: \\" \\"; -} -.navbar:after { - clear: both; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} - -.navbar-header:before, .navbar-header:after { - display: table; - content: \\" \\"; -} -.navbar-header:after { - clear: both; -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} - -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: \\" \\"; -} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; - } -} - -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -@media (min-width: 768px) { - .navbar-fixed-top, -.navbar-fixed-bottom { - border-radius: 0; - } -} - -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} - -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} - -.container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} - -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} - -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} - -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-right: 15px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} - -.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, -.navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; - } -} - -.navbar-form { - padding: 10px 15px; - margin-right: -15px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px; -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, -.navbar-form .input-group .input-group-btn, -.navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, -.navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, -.navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type=radio], -.navbar-form .checkbox input[type=checkbox] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} - -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 14px; - margin-bottom: 14px; -} - -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; - } -} - -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav > li > a { - color: #777; -} -.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; - } -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-default .btn-link { - color: #777; -} -.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; -} -.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} - -.navbar-inverse { - background-color: #222; - border-color: #090909; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #090909; -} -.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #090909; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; - } -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} - -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: \\"/ \\"; -} -.breadcrumb > .active { - color: #777777; -} - -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.428571429; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -.pagination > li > a:hover, .pagination > li > a:focus, -.pagination > li > span:hover, -.pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, -.pagination > .active > span, -.pagination > .active > span:hover, -.pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} - -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; -} -.pager:before, .pager:after { - display: table; - content: \\" \\"; -} -.pager:after { - clear: both; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777777; - cursor: not-allowed; - background-color: #fff; -} - -.label { - display: inline; - padding: 0.2em 0.6em 0.3em; - font-size: 75%; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25em; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} - -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.label-default { - background-color: #777777; -} -.label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; -} - -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; -} - -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; -} - -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; -} - -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; -} - -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; -} - -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -.list-group-item.active > .badge, .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} - -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, .container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron, .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; - } - .jumbotron h1, -.jumbotron .h1 { - font-size: 63px; - } -} - -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-right: auto; - margin-left: auto; -} -.thumbnail .caption { - padding: 9px; - color: #333333; -} - -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} - -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} - -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} - -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} - -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} - -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} - -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} - -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} - -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} - -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} - -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} - -.media, -.media-body { - overflow: hidden; - zoom: 1; -} - -.media-body { - width: 10000px; -} - -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} - -.media-right, -.media > .pull-right { - padding-left: 10px; -} - -.media-left, -.media > .pull-left { - padding-right: 10px; -} - -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} - -.media-middle { - vertical-align: middle; -} - -.media-bottom { - vertical-align: bottom; -} - -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.media-list { - padding-left: 0; - list-style: none; -} - -.list-group { - padding-left: 0; - margin-bottom: 20px; -} - -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - color: #777777; - cursor: not-allowed; - background-color: #eeeeee; -} -.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; -} -.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} - -a.list-group-item, -button.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, a.list-group-item:focus, -button.list-group-item:hover, -button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} - -button.list-group-item { - width: 100%; - text-align: left; -} - -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} - -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, a.list-group-item-success:focus, -button.list-group-item-success:hover, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, -button.list-group-item-success.active, -button.list-group-item-success.active:hover, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} - -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} - -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, a.list-group-item-info:focus, -button.list-group-item-info:hover, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, -button.list-group-item-info.active, -button.list-group-item-info.active:hover, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} - -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} - -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, a.list-group-item-warning:focus, -button.list-group-item-warning:hover, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, -button.list-group-item-warning.active, -button.list-group-item-warning.active:hover, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} - -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} - -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, a.list-group-item-danger:focus, -button.list-group-item-danger:hover, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, -button.list-group-item-danger.active, -button.list-group-item-danger.active:hover, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} - -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} - -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} - -.panel-body { - padding: 15px; -} -.panel-body:before, .panel-body:after { - display: table; - content: \\" \\"; -} -.panel-body:after { - clear: both; -} - -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} - -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} - -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} - -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} - -.list-group + .panel-footer { - border-top-width: 0; -} - -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - margin-bottom: 0; - border: 0; -} - -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} - -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} - -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} - -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} - -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} - -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} - -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} - -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} - -.embed-responsive-4by3 { - padding-bottom: 75%; -} - -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} - -.well-lg { - padding: 24px; - border-radius: 6px; -} - -.well-sm { - padding: 9px; - border-radius: 3px; -} - -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: 0.2; -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: 0.5; -} - -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - appearance: none; -} - -.modal-open { - overflow: hidden; -} - -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} - -.modal-content { - position: relative; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; -} -.modal-backdrop.in { - filter: alpha(opacity=50); - opacity: 0.5; -} - -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header:before, .modal-header:after { - display: table; - content: \\" \\"; -} -.modal-header:after { - clear: both; -} - -.modal-header .close { - margin-top: -2px; -} - -.modal-title { - margin: 0; - line-height: 1.428571429; -} - -.modal-body { - position: relative; - padding: 15px; -} - -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: \\" \\"; -} -.modal-footer:after { - clear: both; -} -.modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - } - - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.428571429; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 12px; - filter: alpha(opacity=0); - opacity: 0; -} -.tooltip.in { - filter: alpha(opacity=90); - opacity: 0.9; -} -.tooltip.top { - padding: 5px 0; - margin-top: -3px; -} -.tooltip.right { - padding: 0 5px; - margin-left: 3px; -} -.tooltip.bottom { - padding: 5px 0; - margin-top: 3px; -} -.tooltip.left { - padding: 0 5px; - margin-left: -3px; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; -} - -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.428571429; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 14px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow, .popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow:after { - content: \\"\\"; - border-width: 10px; -} -.popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; -} -.popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-color: #fff; - border-bottom-width: 0; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; -} -.popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: \\" \\"; - border-right-color: #fff; - border-left-width: 0; -} -.popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-width: 0; - border-bottom-color: #fff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); -} -.popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: \\" \\"; - border-right-width: 0; - border-left-color: #fff; -} - -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} - -.popover-content { - padding: 9px 14px; -} - -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; - } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; - } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} - -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: 0.5; -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#80000000\\", endColorstr=\\"#00000000\\", GradientType=1); - background-repeat: repeat-x; -} -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#00000000\\", endColorstr=\\"#80000000\\", GradientType=1); - background-repeat: repeat-x; -} -.carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - filter: alpha(opacity=90); - opacity: 0.9; -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; -} -.carousel-control .icon-prev:before { - content: \\"‹\\"; -} -.carousel-control .icon-next:before { - content: \\"›\\"; -} - -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \\\\9 ; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; -} -.carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-caption .btn { - text-shadow: none; -} - -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right, -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, -.carousel-control .icon-prev { - margin-left: -10px; - } - .carousel-control .glyphicon-chevron-right, -.carousel-control .icon-next { - margin-right: -10px; - } - - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } - - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, .clearfix:after { - display: table; - content: \\" \\"; -} -.clearfix:after { - clear: both; -} - -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} - -.pull-right { - float: right !important; -} - -.pull-left { - float: left !important; -} - -.hide { - display: none !important; -} - -.show { - display: block !important; -} - -.invisible { - visibility: hidden; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.hidden { - display: none !important; -} - -.affix { - position: fixed; -} - -@-ms-viewport { - width: device-width; -} -.visible-xs { - display: none !important; -} - -.visible-sm { - display: none !important; -} - -.visible-md { - display: none !important; -} - -.visible-lg { - display: none !important; -} - -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} - -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - - table.visible-xs { - display: table !important; - } - - tr.visible-xs { - display: table-row !important; - } - - th.visible-xs, -td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} - -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} - -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - - table.visible-sm { - display: table !important; - } - - tr.visible-sm { - display: table-row !important; - } - - th.visible-sm, -td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - - table.visible-md { - display: table !important; - } - - tr.visible-md { - display: table-row !important; - } - - th.visible-md, -td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - - table.visible-lg { - display: table !important; - } - - tr.visible-lg { - display: table-row !important; - } - - th.visible-lg, -td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} - -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} - -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} - -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} - -@media print { - .visible-print { - display: block !important; - } - - table.visible-print { - display: table !important; - } - - tr.visible-print { - display: table-row !important; - } - - th.visible-print, -td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} - -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} - -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} - -@media print { - .hidden-print { - display: none !important; - } -}" -`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -/*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -[hidden], -template { - display: none; -} - -a { - background-color: transparent; -} - -a:active, -a:hover { - outline: 0; -} - -abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted; -} - -b, -strong { - font-weight: bold; -} - -dfn { - font-style: italic; -} - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -mark { - background: #ff0; - color: #000; -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -img { - border: 0; -} - -svg:not(:root) { - overflow: hidden; -} - -figure { - margin: 1em 40px; -} - -hr { - box-sizing: content-box; - height: 0; -} - -pre { - overflow: auto; -} - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} - -button { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html input[type=button], -input[type=reset], -input[type=submit] { - -webkit-appearance: button; - cursor: pointer; -} - -button[disabled], -html input[disabled] { - cursor: default; -} - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -input { - line-height: normal; -} - -input[type=checkbox], -input[type=radio] { - box-sizing: border-box; - padding: 0; -} - -input[type=number]::-webkit-inner-spin-button, -input[type=number]::-webkit-outer-spin-button { - height: auto; -} - -input[type=search] { - -webkit-appearance: textfield; - box-sizing: content-box; -} - -input[type=search]::-webkit-search-cancel-button, -input[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -legend { - border: 0; - padding: 0; -} - -textarea { - overflow: auto; -} - -optgroup { - font-weight: bold; -} - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} - -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, -*:before, -*:after { - color: #000 !important; - text-shadow: none !important; - background: transparent !important; - box-shadow: none !important; - } - - a, -a:visited { - text-decoration: underline; - } - - a[href]:after { - content: \\" (\\" attr(href) \\")\\"; - } - - abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; - } - - a[href^=\\"#\\"]:after, -a[href^=\\"javascript:\\"]:after { - content: \\"\\"; - } - - pre, -blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - tr, -img { - page-break-inside: avoid; - } - - img { - max-width: 100% !important; - } - - p, -h2, -h3 { - orphans: 3; - widows: 3; - } - - h2, -h3 { - page-break-after: avoid; - } - - .navbar { - display: none; - } - - .btn > .caret, -.dropup > .btn > .caret { - border-top-color: #000 !important; - } - - .label { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - } - .table td, -.table th { - background-color: #fff !important; - } - - .table-bordered th, -.table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: \\"Glyphicons Halflings\\"; - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: \\"Glyphicons Halflings\\"; - font-style: normal; - font-weight: 400; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.glyphicon-asterisk:before { - content: \\"*\\"; -} - -.glyphicon-plus:before { - content: \\"+\\"; -} - -.glyphicon-euro:before, -.glyphicon-eur:before { - content: \\"€\\"; -} - -.glyphicon-minus:before { - content: \\"−\\"; -} - -.glyphicon-cloud:before { - content: \\"☁\\"; -} - -.glyphicon-envelope:before { - content: \\"✉\\"; -} - -.glyphicon-pencil:before { - content: \\"✏\\"; -} - -.glyphicon-glass:before { - content: \\"\\\\e001\\"; -} - -.glyphicon-music:before { - content: \\"\\\\e002\\"; -} - -.glyphicon-search:before { - content: \\"\\\\e003\\"; -} - -.glyphicon-heart:before { - content: \\"\\\\e005\\"; -} - -.glyphicon-star:before { - content: \\"\\\\e006\\"; -} - -.glyphicon-star-empty:before { - content: \\"\\\\e007\\"; -} - -.glyphicon-user:before { - content: \\"\\\\e008\\"; -} - -.glyphicon-film:before { - content: \\"\\\\e009\\"; -} - -.glyphicon-th-large:before { - content: \\"\\\\e010\\"; -} - -.glyphicon-th:before { - content: \\"\\\\e011\\"; -} - -.glyphicon-th-list:before { - content: \\"\\\\e012\\"; -} - -.glyphicon-ok:before { - content: \\"\\\\e013\\"; -} - -.glyphicon-remove:before { - content: \\"\\\\e014\\"; -} - -.glyphicon-zoom-in:before { - content: \\"\\\\e015\\"; -} - -.glyphicon-zoom-out:before { - content: \\"\\\\e016\\"; -} - -.glyphicon-off:before { - content: \\"\\\\e017\\"; -} - -.glyphicon-signal:before { - content: \\"\\\\e018\\"; -} - -.glyphicon-cog:before { - content: \\"\\\\e019\\"; -} - -.glyphicon-trash:before { - content: \\"\\\\e020\\"; -} - -.glyphicon-home:before { - content: \\"\\\\e021\\"; -} - -.glyphicon-file:before { - content: \\"\\\\e022\\"; -} - -.glyphicon-time:before { - content: \\"\\\\e023\\"; -} - -.glyphicon-road:before { - content: \\"\\\\e024\\"; -} - -.glyphicon-download-alt:before { - content: \\"\\\\e025\\"; -} - -.glyphicon-download:before { - content: \\"\\\\e026\\"; -} - -.glyphicon-upload:before { - content: \\"\\\\e027\\"; -} - -.glyphicon-inbox:before { - content: \\"\\\\e028\\"; -} - -.glyphicon-play-circle:before { - content: \\"\\\\e029\\"; -} - -.glyphicon-repeat:before { - content: \\"\\\\e030\\"; -} - -.glyphicon-refresh:before { - content: \\"\\\\e031\\"; -} - -.glyphicon-list-alt:before { - content: \\"\\\\e032\\"; -} - -.glyphicon-lock:before { - content: \\"\\\\e033\\"; -} - -.glyphicon-flag:before { - content: \\"\\\\e034\\"; -} - -.glyphicon-headphones:before { - content: \\"\\\\e035\\"; -} - -.glyphicon-volume-off:before { - content: \\"\\\\e036\\"; -} - -.glyphicon-volume-down:before { - content: \\"\\\\e037\\"; -} - -.glyphicon-volume-up:before { - content: \\"\\\\e038\\"; -} - -.glyphicon-qrcode:before { - content: \\"\\\\e039\\"; -} - -.glyphicon-barcode:before { - content: \\"\\\\e040\\"; -} - -.glyphicon-tag:before { - content: \\"\\\\e041\\"; -} - -.glyphicon-tags:before { - content: \\"\\\\e042\\"; -} - -.glyphicon-book:before { - content: \\"\\\\e043\\"; -} - -.glyphicon-bookmark:before { - content: \\"\\\\e044\\"; -} - -.glyphicon-print:before { - content: \\"\\\\e045\\"; -} - -.glyphicon-camera:before { - content: \\"\\\\e046\\"; -} - -.glyphicon-font:before { - content: \\"\\\\e047\\"; -} - -.glyphicon-bold:before { - content: \\"\\\\e048\\"; -} - -.glyphicon-italic:before { - content: \\"\\\\e049\\"; -} - -.glyphicon-text-height:before { - content: \\"\\\\e050\\"; -} - -.glyphicon-text-width:before { - content: \\"\\\\e051\\"; -} - -.glyphicon-align-left:before { - content: \\"\\\\e052\\"; -} - -.glyphicon-align-center:before { - content: \\"\\\\e053\\"; -} - -.glyphicon-align-right:before { - content: \\"\\\\e054\\"; -} - -.glyphicon-align-justify:before { - content: \\"\\\\e055\\"; -} - -.glyphicon-list:before { - content: \\"\\\\e056\\"; -} - -.glyphicon-indent-left:before { - content: \\"\\\\e057\\"; -} - -.glyphicon-indent-right:before { - content: \\"\\\\e058\\"; -} - -.glyphicon-facetime-video:before { - content: \\"\\\\e059\\"; -} - -.glyphicon-picture:before { - content: \\"\\\\e060\\"; -} - -.glyphicon-map-marker:before { - content: \\"\\\\e062\\"; -} - -.glyphicon-adjust:before { - content: \\"\\\\e063\\"; -} - -.glyphicon-tint:before { - content: \\"\\\\e064\\"; -} - -.glyphicon-edit:before { - content: \\"\\\\e065\\"; -} - -.glyphicon-share:before { - content: \\"\\\\e066\\"; -} - -.glyphicon-check:before { - content: \\"\\\\e067\\"; -} - -.glyphicon-move:before { - content: \\"\\\\e068\\"; -} - -.glyphicon-step-backward:before { - content: \\"\\\\e069\\"; -} - -.glyphicon-fast-backward:before { - content: \\"\\\\e070\\"; -} - -.glyphicon-backward:before { - content: \\"\\\\e071\\"; -} - -.glyphicon-play:before { - content: \\"\\\\e072\\"; -} - -.glyphicon-pause:before { - content: \\"\\\\e073\\"; -} - -.glyphicon-stop:before { - content: \\"\\\\e074\\"; -} - -.glyphicon-forward:before { - content: \\"\\\\e075\\"; -} - -.glyphicon-fast-forward:before { - content: \\"\\\\e076\\"; -} - -.glyphicon-step-forward:before { - content: \\"\\\\e077\\"; -} - -.glyphicon-eject:before { - content: \\"\\\\e078\\"; -} - -.glyphicon-chevron-left:before { - content: \\"\\\\e079\\"; -} - -.glyphicon-chevron-right:before { - content: \\"\\\\e080\\"; -} - -.glyphicon-plus-sign:before { - content: \\"\\\\e081\\"; -} - -.glyphicon-minus-sign:before { - content: \\"\\\\e082\\"; -} - -.glyphicon-remove-sign:before { - content: \\"\\\\e083\\"; -} - -.glyphicon-ok-sign:before { - content: \\"\\\\e084\\"; -} - -.glyphicon-question-sign:before { - content: \\"\\\\e085\\"; -} - -.glyphicon-info-sign:before { - content: \\"\\\\e086\\"; -} - -.glyphicon-screenshot:before { - content: \\"\\\\e087\\"; -} - -.glyphicon-remove-circle:before { - content: \\"\\\\e088\\"; -} - -.glyphicon-ok-circle:before { - content: \\"\\\\e089\\"; -} - -.glyphicon-ban-circle:before { - content: \\"\\\\e090\\"; -} - -.glyphicon-arrow-left:before { - content: \\"\\\\e091\\"; -} - -.glyphicon-arrow-right:before { - content: \\"\\\\e092\\"; -} - -.glyphicon-arrow-up:before { - content: \\"\\\\e093\\"; -} - -.glyphicon-arrow-down:before { - content: \\"\\\\e094\\"; -} - -.glyphicon-share-alt:before { - content: \\"\\\\e095\\"; -} - -.glyphicon-resize-full:before { - content: \\"\\\\e096\\"; -} - -.glyphicon-resize-small:before { - content: \\"\\\\e097\\"; -} - -.glyphicon-exclamation-sign:before { - content: \\"\\\\e101\\"; -} - -.glyphicon-gift:before { - content: \\"\\\\e102\\"; -} - -.glyphicon-leaf:before { - content: \\"\\\\e103\\"; -} - -.glyphicon-fire:before { - content: \\"\\\\e104\\"; -} - -.glyphicon-eye-open:before { - content: \\"\\\\e105\\"; -} - -.glyphicon-eye-close:before { - content: \\"\\\\e106\\"; -} - -.glyphicon-warning-sign:before { - content: \\"\\\\e107\\"; -} - -.glyphicon-plane:before { - content: \\"\\\\e108\\"; -} - -.glyphicon-calendar:before { - content: \\"\\\\e109\\"; -} - -.glyphicon-random:before { - content: \\"\\\\e110\\"; -} - -.glyphicon-comment:before { - content: \\"\\\\e111\\"; -} - -.glyphicon-magnet:before { - content: \\"\\\\e112\\"; -} - -.glyphicon-chevron-up:before { - content: \\"\\\\e113\\"; -} - -.glyphicon-chevron-down:before { - content: \\"\\\\e114\\"; -} - -.glyphicon-retweet:before { - content: \\"\\\\e115\\"; -} - -.glyphicon-shopping-cart:before { - content: \\"\\\\e116\\"; -} - -.glyphicon-folder-close:before { - content: \\"\\\\e117\\"; -} - -.glyphicon-folder-open:before { - content: \\"\\\\e118\\"; -} - -.glyphicon-resize-vertical:before { - content: \\"\\\\e119\\"; -} - -.glyphicon-resize-horizontal:before { - content: \\"\\\\e120\\"; -} - -.glyphicon-hdd:before { - content: \\"\\\\e121\\"; -} - -.glyphicon-bullhorn:before { - content: \\"\\\\e122\\"; -} - -.glyphicon-bell:before { - content: \\"\\\\e123\\"; -} - -.glyphicon-certificate:before { - content: \\"\\\\e124\\"; -} - -.glyphicon-thumbs-up:before { - content: \\"\\\\e125\\"; -} - -.glyphicon-thumbs-down:before { - content: \\"\\\\e126\\"; -} - -.glyphicon-hand-right:before { - content: \\"\\\\e127\\"; -} - -.glyphicon-hand-left:before { - content: \\"\\\\e128\\"; -} - -.glyphicon-hand-up:before { - content: \\"\\\\e129\\"; -} - -.glyphicon-hand-down:before { - content: \\"\\\\e130\\"; -} - -.glyphicon-circle-arrow-right:before { - content: \\"\\\\e131\\"; -} - -.glyphicon-circle-arrow-left:before { - content: \\"\\\\e132\\"; -} - -.glyphicon-circle-arrow-up:before { - content: \\"\\\\e133\\"; -} - -.glyphicon-circle-arrow-down:before { - content: \\"\\\\e134\\"; -} - -.glyphicon-globe:before { - content: \\"\\\\e135\\"; -} - -.glyphicon-wrench:before { - content: \\"\\\\e136\\"; -} - -.glyphicon-tasks:before { - content: \\"\\\\e137\\"; -} - -.glyphicon-filter:before { - content: \\"\\\\e138\\"; -} - -.glyphicon-briefcase:before { - content: \\"\\\\e139\\"; -} - -.glyphicon-fullscreen:before { - content: \\"\\\\e140\\"; -} - -.glyphicon-dashboard:before { - content: \\"\\\\e141\\"; -} - -.glyphicon-paperclip:before { - content: \\"\\\\e142\\"; -} - -.glyphicon-heart-empty:before { - content: \\"\\\\e143\\"; -} - -.glyphicon-link:before { - content: \\"\\\\e144\\"; -} - -.glyphicon-phone:before { - content: \\"\\\\e145\\"; -} - -.glyphicon-pushpin:before { - content: \\"\\\\e146\\"; -} - -.glyphicon-usd:before { - content: \\"\\\\e148\\"; -} - -.glyphicon-gbp:before { - content: \\"\\\\e149\\"; -} - -.glyphicon-sort:before { - content: \\"\\\\e150\\"; -} - -.glyphicon-sort-by-alphabet:before { - content: \\"\\\\e151\\"; -} - -.glyphicon-sort-by-alphabet-alt:before { - content: \\"\\\\e152\\"; -} - -.glyphicon-sort-by-order:before { - content: \\"\\\\e153\\"; -} - -.glyphicon-sort-by-order-alt:before { - content: \\"\\\\e154\\"; -} - -.glyphicon-sort-by-attributes:before { - content: \\"\\\\e155\\"; -} - -.glyphicon-sort-by-attributes-alt:before { - content: \\"\\\\e156\\"; -} - -.glyphicon-unchecked:before { - content: \\"\\\\e157\\"; -} - -.glyphicon-expand:before { - content: \\"\\\\e158\\"; -} - -.glyphicon-collapse-down:before { - content: \\"\\\\e159\\"; -} - -.glyphicon-collapse-up:before { - content: \\"\\\\e160\\"; -} - -.glyphicon-log-in:before { - content: \\"\\\\e161\\"; -} - -.glyphicon-flash:before { - content: \\"\\\\e162\\"; -} - -.glyphicon-log-out:before { - content: \\"\\\\e163\\"; -} - -.glyphicon-new-window:before { - content: \\"\\\\e164\\"; -} - -.glyphicon-record:before { - content: \\"\\\\e165\\"; -} - -.glyphicon-save:before { - content: \\"\\\\e166\\"; -} - -.glyphicon-open:before { - content: \\"\\\\e167\\"; -} - -.glyphicon-saved:before { - content: \\"\\\\e168\\"; -} - -.glyphicon-import:before { - content: \\"\\\\e169\\"; -} - -.glyphicon-export:before { - content: \\"\\\\e170\\"; -} - -.glyphicon-send:before { - content: \\"\\\\e171\\"; -} - -.glyphicon-floppy-disk:before { - content: \\"\\\\e172\\"; -} - -.glyphicon-floppy-saved:before { - content: \\"\\\\e173\\"; -} - -.glyphicon-floppy-remove:before { - content: \\"\\\\e174\\"; -} - -.glyphicon-floppy-save:before { - content: \\"\\\\e175\\"; -} - -.glyphicon-floppy-open:before { - content: \\"\\\\e176\\"; -} - -.glyphicon-credit-card:before { - content: \\"\\\\e177\\"; -} - -.glyphicon-transfer:before { - content: \\"\\\\e178\\"; -} - -.glyphicon-cutlery:before { - content: \\"\\\\e179\\"; -} - -.glyphicon-header:before { - content: \\"\\\\e180\\"; -} - -.glyphicon-compressed:before { - content: \\"\\\\e181\\"; -} - -.glyphicon-earphone:before { - content: \\"\\\\e182\\"; -} - -.glyphicon-phone-alt:before { - content: \\"\\\\e183\\"; -} - -.glyphicon-tower:before { - content: \\"\\\\e184\\"; -} - -.glyphicon-stats:before { - content: \\"\\\\e185\\"; -} - -.glyphicon-sd-video:before { - content: \\"\\\\e186\\"; -} - -.glyphicon-hd-video:before { - content: \\"\\\\e187\\"; -} - -.glyphicon-subtitles:before { - content: \\"\\\\e188\\"; -} - -.glyphicon-sound-stereo:before { - content: \\"\\\\e189\\"; -} - -.glyphicon-sound-dolby:before { - content: \\"\\\\e190\\"; -} - -.glyphicon-sound-5-1:before { - content: \\"\\\\e191\\"; -} - -.glyphicon-sound-6-1:before { - content: \\"\\\\e192\\"; -} - -.glyphicon-sound-7-1:before { - content: \\"\\\\e193\\"; -} - -.glyphicon-copyright-mark:before { - content: \\"\\\\e194\\"; -} - -.glyphicon-registration-mark:before { - content: \\"\\\\e195\\"; -} - -.glyphicon-cloud-download:before { - content: \\"\\\\e197\\"; -} - -.glyphicon-cloud-upload:before { - content: \\"\\\\e198\\"; -} - -.glyphicon-tree-conifer:before { - content: \\"\\\\e199\\"; -} - -.glyphicon-tree-deciduous:before { - content: \\"\\\\e200\\"; -} - -.glyphicon-cd:before { - content: \\"\\\\e201\\"; -} - -.glyphicon-save-file:before { - content: \\"\\\\e202\\"; -} - -.glyphicon-open-file:before { - content: \\"\\\\e203\\"; -} - -.glyphicon-level-up:before { - content: \\"\\\\e204\\"; -} - -.glyphicon-copy:before { - content: \\"\\\\e205\\"; -} - -.glyphicon-paste:before { - content: \\"\\\\e206\\"; -} - -.glyphicon-alert:before { - content: \\"\\\\e209\\"; -} - -.glyphicon-equalizer:before { - content: \\"\\\\e210\\"; -} - -.glyphicon-king:before { - content: \\"\\\\e211\\"; -} - -.glyphicon-queen:before { - content: \\"\\\\e212\\"; -} - -.glyphicon-pawn:before { - content: \\"\\\\e213\\"; -} - -.glyphicon-bishop:before { - content: \\"\\\\e214\\"; -} - -.glyphicon-knight:before { - content: \\"\\\\e215\\"; -} - -.glyphicon-baby-formula:before { - content: \\"\\\\e216\\"; -} - -.glyphicon-tent:before { - content: \\"⛺\\"; -} - -.glyphicon-blackboard:before { - content: \\"\\\\e218\\"; -} - -.glyphicon-bed:before { - content: \\"\\\\e219\\"; -} - -.glyphicon-apple:before { - content: \\"\\\\f8ff\\"; -} - -.glyphicon-erase:before { - content: \\"\\\\e221\\"; -} - -.glyphicon-hourglass:before { - content: \\"⌛\\"; -} - -.glyphicon-lamp:before { - content: \\"\\\\e223\\"; -} - -.glyphicon-duplicate:before { - content: \\"\\\\e224\\"; -} - -.glyphicon-piggy-bank:before { - content: \\"\\\\e225\\"; -} - -.glyphicon-scissors:before { - content: \\"\\\\e226\\"; -} - -.glyphicon-bitcoin:before { - content: \\"\\\\e227\\"; -} - -.glyphicon-btc:before { - content: \\"\\\\e227\\"; -} - -.glyphicon-xbt:before { - content: \\"\\\\e227\\"; -} - -.glyphicon-yen:before { - content: \\"¥\\"; -} - -.glyphicon-jpy:before { - content: \\"¥\\"; -} - -.glyphicon-ruble:before { - content: \\"₽\\"; -} - -.glyphicon-rub:before { - content: \\"₽\\"; -} - -.glyphicon-scale:before { - content: \\"\\\\e230\\"; -} - -.glyphicon-ice-lolly:before { - content: \\"\\\\e231\\"; -} - -.glyphicon-ice-lolly-tasted:before { - content: \\"\\\\e232\\"; -} - -.glyphicon-education:before { - content: \\"\\\\e233\\"; -} - -.glyphicon-option-horizontal:before { - content: \\"\\\\e234\\"; -} - -.glyphicon-option-vertical:before { - content: \\"\\\\e235\\"; -} - -.glyphicon-menu-hamburger:before { - content: \\"\\\\e236\\"; -} - -.glyphicon-modal-window:before { - content: \\"\\\\e237\\"; -} - -.glyphicon-oil:before { - content: \\"\\\\e238\\"; -} - -.glyphicon-grain:before { - content: \\"\\\\e239\\"; -} - -.glyphicon-sunglasses:before { - content: \\"\\\\e240\\"; -} - -.glyphicon-text-size:before { - content: \\"\\\\e241\\"; -} - -.glyphicon-text-color:before { - content: \\"\\\\e242\\"; -} - -.glyphicon-text-background:before { - content: \\"\\\\e243\\"; -} - -.glyphicon-object-align-top:before { - content: \\"\\\\e244\\"; -} - -.glyphicon-object-align-bottom:before { - content: \\"\\\\e245\\"; -} - -.glyphicon-object-align-horizontal:before { - content: \\"\\\\e246\\"; -} - -.glyphicon-object-align-left:before { - content: \\"\\\\e247\\"; -} - -.glyphicon-object-align-vertical:before { - content: \\"\\\\e248\\"; -} - -.glyphicon-object-align-right:before { - content: \\"\\\\e249\\"; -} - -.glyphicon-triangle-right:before { - content: \\"\\\\e250\\"; -} - -.glyphicon-triangle-left:before { - content: \\"\\\\e251\\"; -} - -.glyphicon-triangle-bottom:before { - content: \\"\\\\e252\\"; -} - -.glyphicon-triangle-top:before { - content: \\"\\\\e253\\"; -} - -.glyphicon-console:before { - content: \\"\\\\e254\\"; -} - -.glyphicon-superscript:before { - content: \\"\\\\e255\\"; -} - -.glyphicon-subscript:before { - content: \\"\\\\e256\\"; -} - -.glyphicon-menu-left:before { - content: \\"\\\\e257\\"; -} - -.glyphicon-menu-right:before { - content: \\"\\\\e258\\"; -} - -.glyphicon-menu-down:before { - content: \\"\\\\e259\\"; -} - -.glyphicon-menu-up:before { - content: \\"\\\\e260\\"; -} - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -body { - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.428571429; - color: #333333; - background-color: #fff; -} - -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -a { - color: #337ab7; - text-decoration: none; -} -a:hover, a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -figure { - margin: 0; -} - -img { - vertical-align: middle; -} - -.img-responsive { - display: block; - max-width: 100%; - height: auto; -} - -.img-rounded { - border-radius: 6px; -} - -.img-thumbnail { - padding: 4px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} - -.img-circle { - border-radius: 50%; -} - -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} - -[role=button] { - cursor: pointer; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h1 .small, h2 small, -h2 .small, h3 small, -h3 .small, h4 small, -h4 .small, h5 small, -h5 .small, h6 small, -h6 .small, -.h1 small, -.h1 .small, .h2 small, -.h2 .small, .h3 small, -.h3 .small, .h4 small, -.h4 .small, .h5 small, -.h5 .small, .h6 small, -.h6 .small { - font-weight: 400; - line-height: 1; - color: #777777; -} - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -h1 .small, .h1 small, -.h1 .small, -h2 small, -h2 .small, .h2 small, -.h2 .small, -h3 small, -h3 .small, .h3 small, -.h3 .small { - font-size: 65%; -} - -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -h4 .small, .h4 small, -.h4 .small, -h5 small, -h5 .small, .h5 small, -.h5 .small, -h6 small, -h6 .small, .h6 small, -.h6 .small { - font-size: 75%; -} - -h1, .h1 { - font-size: 36px; -} - -h2, .h2 { - font-size: 30px; -} - -h3, .h3 { - font-size: 24px; -} - -h4, .h4 { - font-size: 18px; -} - -h5, .h5 { - font-size: 14px; -} - -h6, .h6 { - font-size: 12px; -} - -p { - margin: 0 0 10px; -} - -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} - -small, -.small { - font-size: 85%; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.text-left { - text-align: left; -} - -.text-right { - text-align: right; -} - -.text-center { - text-align: center; -} - -.text-justify { - text-align: justify; -} - -.text-nowrap { - white-space: nowrap; -} - -.text-lowercase { - text-transform: lowercase; -} - -.text-uppercase, .initialism { - text-transform: uppercase; -} - -.text-capitalize { - text-transform: capitalize; -} - -.text-muted { - color: #777777; -} - -.text-primary { - color: #337ab7; -} - -a.text-primary:hover, -a.text-primary:focus { - color: #286090; -} - -.text-success { - color: #3c763d; -} - -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} - -.text-info { - color: #31708f; -} - -a.text-info:hover, -a.text-info:focus { - color: #245269; -} - -.text-warning { - color: #8a6d3b; -} - -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} - -.text-danger { - color: #a94442; -} - -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} - -.bg-primary { - color: #fff; -} - -.bg-primary { - background-color: #337ab7; -} - -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; -} - -.bg-success { - background-color: #dff0d8; -} - -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} - -.bg-info { - background-color: #d9edf7; -} - -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} - -.bg-warning { - background-color: #fcf8e3; -} - -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} - -.bg-danger { - background-color: #f2dede; -} - -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} - -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; -} - -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ul ol, -ol ul, -ol ol { - margin-bottom: 0; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} - -dl { - margin-top: 0; - margin-bottom: 20px; -} - -dt, -dd { - line-height: 1.428571429; -} - -dt { - font-weight: 700; -} - -dd { - margin-left: 0; -} - -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: \\" \\"; -} -.dl-horizontal dd:after { - clear: both; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} - -abbr[title], -abbr[data-original-title] { - cursor: help; -} - -.initialism { - font-size: 90%; -} - -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.428571429; - color: #777777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: \\"— \\"; -} - -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eeeeee; - border-left: 0; -} -.blockquote-reverse footer:before, -.blockquote-reverse small:before, -.blockquote-reverse .small:before, -blockquote.pull-right footer:before, -blockquote.pull-right small:before, -blockquote.pull-right .small:before { - content: \\"\\"; -} -.blockquote-reverse footer:after, -.blockquote-reverse small:after, -.blockquote-reverse .small:after, -blockquote.pull-right footer:after, -blockquote.pull-right small:after, -blockquote.pull-right .small:after { - content: \\" —\\"; -} - -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.428571429; -} - -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; -} - -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} - -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; -} - -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.428571429; - color: #333333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.container:before, .container:after { - display: table; - content: \\" \\"; -} -.container:after { - clear: both; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} - -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.container-fluid:before, .container-fluid:after { - display: table; - content: \\" \\"; -} -.container-fluid:after { - clear: both; -} - -.row { - margin-right: -15px; - margin-left: -15px; -} -.row:before, .row:after { - display: table; - content: \\" \\"; -} -.row:after { - clear: both; -} - -.row-no-gutters { - margin-right: 0; - margin-left: 0; -} -.row-no-gutters [class*=col-] { - padding-right: 0; - padding-left: 0; -} - -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} - -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} - -.col-xs-1 { - width: 8.3333333333%; -} - -.col-xs-2 { - width: 16.6666666667%; -} - -.col-xs-3 { - width: 25%; -} - -.col-xs-4 { - width: 33.3333333333%; -} - -.col-xs-5 { - width: 41.6666666667%; -} - -.col-xs-6 { - width: 50%; -} - -.col-xs-7 { - width: 58.3333333333%; -} - -.col-xs-8 { - width: 66.6666666667%; -} - -.col-xs-9 { - width: 75%; -} - -.col-xs-10 { - width: 83.3333333333%; -} - -.col-xs-11 { - width: 91.6666666667%; -} - -.col-xs-12 { - width: 100%; -} - -.col-xs-pull-0 { - right: auto; -} - -.col-xs-pull-1 { - right: 8.3333333333%; -} - -.col-xs-pull-2 { - right: 16.6666666667%; -} - -.col-xs-pull-3 { - right: 25%; -} - -.col-xs-pull-4 { - right: 33.3333333333%; -} - -.col-xs-pull-5 { - right: 41.6666666667%; -} - -.col-xs-pull-6 { - right: 50%; -} - -.col-xs-pull-7 { - right: 58.3333333333%; -} - -.col-xs-pull-8 { - right: 66.6666666667%; -} - -.col-xs-pull-9 { - right: 75%; -} - -.col-xs-pull-10 { - right: 83.3333333333%; -} - -.col-xs-pull-11 { - right: 91.6666666667%; -} - -.col-xs-pull-12 { - right: 100%; -} - -.col-xs-push-0 { - left: auto; -} - -.col-xs-push-1 { - left: 8.3333333333%; -} - -.col-xs-push-2 { - left: 16.6666666667%; -} - -.col-xs-push-3 { - left: 25%; -} - -.col-xs-push-4 { - left: 33.3333333333%; -} - -.col-xs-push-5 { - left: 41.6666666667%; -} - -.col-xs-push-6 { - left: 50%; -} - -.col-xs-push-7 { - left: 58.3333333333%; -} - -.col-xs-push-8 { - left: 66.6666666667%; -} - -.col-xs-push-9 { - left: 75%; -} - -.col-xs-push-10 { - left: 83.3333333333%; -} - -.col-xs-push-11 { - left: 91.6666666667%; -} - -.col-xs-push-12 { - left: 100%; -} - -.col-xs-offset-0 { - margin-left: 0%; -} - -.col-xs-offset-1 { - margin-left: 8.3333333333%; -} - -.col-xs-offset-2 { - margin-left: 16.6666666667%; -} - -.col-xs-offset-3 { - margin-left: 25%; -} - -.col-xs-offset-4 { - margin-left: 33.3333333333%; -} - -.col-xs-offset-5 { - margin-left: 41.6666666667%; -} - -.col-xs-offset-6 { - margin-left: 50%; -} - -.col-xs-offset-7 { - margin-left: 58.3333333333%; -} - -.col-xs-offset-8 { - margin-left: 66.6666666667%; -} - -.col-xs-offset-9 { - margin-left: 75%; -} - -.col-xs-offset-10 { - margin-left: 83.3333333333%; -} - -.col-xs-offset-11 { - margin-left: 91.6666666667%; -} - -.col-xs-offset-12 { - margin-left: 100%; -} - -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - - .col-sm-1 { - width: 8.3333333333%; - } - - .col-sm-2 { - width: 16.6666666667%; - } - - .col-sm-3 { - width: 25%; - } - - .col-sm-4 { - width: 33.3333333333%; - } - - .col-sm-5 { - width: 41.6666666667%; - } - - .col-sm-6 { - width: 50%; - } - - .col-sm-7 { - width: 58.3333333333%; - } - - .col-sm-8 { - width: 66.6666666667%; - } - - .col-sm-9 { - width: 75%; - } - - .col-sm-10 { - width: 83.3333333333%; - } - - .col-sm-11 { - width: 91.6666666667%; - } - - .col-sm-12 { - width: 100%; - } - - .col-sm-pull-0 { - right: auto; - } - - .col-sm-pull-1 { - right: 8.3333333333%; - } - - .col-sm-pull-2 { - right: 16.6666666667%; - } - - .col-sm-pull-3 { - right: 25%; - } - - .col-sm-pull-4 { - right: 33.3333333333%; - } - - .col-sm-pull-5 { - right: 41.6666666667%; - } - - .col-sm-pull-6 { - right: 50%; - } - - .col-sm-pull-7 { - right: 58.3333333333%; - } - - .col-sm-pull-8 { - right: 66.6666666667%; - } - - .col-sm-pull-9 { - right: 75%; - } - - .col-sm-pull-10 { - right: 83.3333333333%; - } - - .col-sm-pull-11 { - right: 91.6666666667%; - } - - .col-sm-pull-12 { - right: 100%; - } - - .col-sm-push-0 { - left: auto; - } - - .col-sm-push-1 { - left: 8.3333333333%; - } - - .col-sm-push-2 { - left: 16.6666666667%; - } - - .col-sm-push-3 { - left: 25%; - } - - .col-sm-push-4 { - left: 33.3333333333%; - } - - .col-sm-push-5 { - left: 41.6666666667%; - } - - .col-sm-push-6 { - left: 50%; - } - - .col-sm-push-7 { - left: 58.3333333333%; - } - - .col-sm-push-8 { - left: 66.6666666667%; - } - - .col-sm-push-9 { - left: 75%; - } - - .col-sm-push-10 { - left: 83.3333333333%; - } - - .col-sm-push-11 { - left: 91.6666666667%; - } - - .col-sm-push-12 { - left: 100%; - } - - .col-sm-offset-0 { - margin-left: 0%; - } - - .col-sm-offset-1 { - margin-left: 8.3333333333%; - } - - .col-sm-offset-2 { - margin-left: 16.6666666667%; - } - - .col-sm-offset-3 { - margin-left: 25%; - } - - .col-sm-offset-4 { - margin-left: 33.3333333333%; - } - - .col-sm-offset-5 { - margin-left: 41.6666666667%; - } - - .col-sm-offset-6 { - margin-left: 50%; - } - - .col-sm-offset-7 { - margin-left: 58.3333333333%; - } - - .col-sm-offset-8 { - margin-left: 66.6666666667%; - } - - .col-sm-offset-9 { - margin-left: 75%; - } - - .col-sm-offset-10 { - margin-left: 83.3333333333%; - } - - .col-sm-offset-11 { - margin-left: 91.6666666667%; - } - - .col-sm-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - - .col-md-1 { - width: 8.3333333333%; - } - - .col-md-2 { - width: 16.6666666667%; - } - - .col-md-3 { - width: 25%; - } - - .col-md-4 { - width: 33.3333333333%; - } - - .col-md-5 { - width: 41.6666666667%; - } - - .col-md-6 { - width: 50%; - } - - .col-md-7 { - width: 58.3333333333%; - } - - .col-md-8 { - width: 66.6666666667%; - } - - .col-md-9 { - width: 75%; - } - - .col-md-10 { - width: 83.3333333333%; - } - - .col-md-11 { - width: 91.6666666667%; - } - - .col-md-12 { - width: 100%; - } - - .col-md-pull-0 { - right: auto; - } - - .col-md-pull-1 { - right: 8.3333333333%; - } - - .col-md-pull-2 { - right: 16.6666666667%; - } - - .col-md-pull-3 { - right: 25%; - } - - .col-md-pull-4 { - right: 33.3333333333%; - } - - .col-md-pull-5 { - right: 41.6666666667%; - } - - .col-md-pull-6 { - right: 50%; - } - - .col-md-pull-7 { - right: 58.3333333333%; - } - - .col-md-pull-8 { - right: 66.6666666667%; - } - - .col-md-pull-9 { - right: 75%; - } - - .col-md-pull-10 { - right: 83.3333333333%; - } - - .col-md-pull-11 { - right: 91.6666666667%; - } - - .col-md-pull-12 { - right: 100%; - } - - .col-md-push-0 { - left: auto; - } - - .col-md-push-1 { - left: 8.3333333333%; - } - - .col-md-push-2 { - left: 16.6666666667%; - } - - .col-md-push-3 { - left: 25%; - } - - .col-md-push-4 { - left: 33.3333333333%; - } - - .col-md-push-5 { - left: 41.6666666667%; - } - - .col-md-push-6 { - left: 50%; - } - - .col-md-push-7 { - left: 58.3333333333%; - } - - .col-md-push-8 { - left: 66.6666666667%; - } - - .col-md-push-9 { - left: 75%; - } - - .col-md-push-10 { - left: 83.3333333333%; - } - - .col-md-push-11 { - left: 91.6666666667%; - } - - .col-md-push-12 { - left: 100%; - } - - .col-md-offset-0 { - margin-left: 0%; - } - - .col-md-offset-1 { - margin-left: 8.3333333333%; - } - - .col-md-offset-2 { - margin-left: 16.6666666667%; - } - - .col-md-offset-3 { - margin-left: 25%; - } - - .col-md-offset-4 { - margin-left: 33.3333333333%; - } - - .col-md-offset-5 { - margin-left: 41.6666666667%; - } - - .col-md-offset-6 { - margin-left: 50%; - } - - .col-md-offset-7 { - margin-left: 58.3333333333%; - } - - .col-md-offset-8 { - margin-left: 66.6666666667%; - } - - .col-md-offset-9 { - margin-left: 75%; - } - - .col-md-offset-10 { - margin-left: 83.3333333333%; - } - - .col-md-offset-11 { - margin-left: 91.6666666667%; - } - - .col-md-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - - .col-lg-1 { - width: 8.3333333333%; - } - - .col-lg-2 { - width: 16.6666666667%; - } - - .col-lg-3 { - width: 25%; - } - - .col-lg-4 { - width: 33.3333333333%; - } - - .col-lg-5 { - width: 41.6666666667%; - } - - .col-lg-6 { - width: 50%; - } - - .col-lg-7 { - width: 58.3333333333%; - } - - .col-lg-8 { - width: 66.6666666667%; - } - - .col-lg-9 { - width: 75%; - } - - .col-lg-10 { - width: 83.3333333333%; - } - - .col-lg-11 { - width: 91.6666666667%; - } - - .col-lg-12 { - width: 100%; - } - - .col-lg-pull-0 { - right: auto; - } - - .col-lg-pull-1 { - right: 8.3333333333%; - } - - .col-lg-pull-2 { - right: 16.6666666667%; - } - - .col-lg-pull-3 { - right: 25%; - } - - .col-lg-pull-4 { - right: 33.3333333333%; - } - - .col-lg-pull-5 { - right: 41.6666666667%; - } - - .col-lg-pull-6 { - right: 50%; - } - - .col-lg-pull-7 { - right: 58.3333333333%; - } - - .col-lg-pull-8 { - right: 66.6666666667%; - } - - .col-lg-pull-9 { - right: 75%; - } - - .col-lg-pull-10 { - right: 83.3333333333%; - } - - .col-lg-pull-11 { - right: 91.6666666667%; - } - - .col-lg-pull-12 { - right: 100%; - } - - .col-lg-push-0 { - left: auto; - } - - .col-lg-push-1 { - left: 8.3333333333%; - } - - .col-lg-push-2 { - left: 16.6666666667%; - } - - .col-lg-push-3 { - left: 25%; - } - - .col-lg-push-4 { - left: 33.3333333333%; - } - - .col-lg-push-5 { - left: 41.6666666667%; - } - - .col-lg-push-6 { - left: 50%; - } - - .col-lg-push-7 { - left: 58.3333333333%; - } - - .col-lg-push-8 { - left: 66.6666666667%; - } - - .col-lg-push-9 { - left: 75%; - } - - .col-lg-push-10 { - left: 83.3333333333%; - } - - .col-lg-push-11 { - left: 91.6666666667%; - } - - .col-lg-push-12 { - left: 100%; - } - - .col-lg-offset-0 { - margin-left: 0%; - } - - .col-lg-offset-1 { - margin-left: 8.3333333333%; - } - - .col-lg-offset-2 { - margin-left: 16.6666666667%; - } - - .col-lg-offset-3 { - margin-left: 25%; - } - - .col-lg-offset-4 { - margin-left: 33.3333333333%; - } - - .col-lg-offset-5 { - margin-left: 41.6666666667%; - } - - .col-lg-offset-6 { - margin-left: 50%; - } - - .col-lg-offset-7 { - margin-left: 58.3333333333%; - } - - .col-lg-offset-8 { - margin-left: 66.6666666667%; - } - - .col-lg-offset-9 { - margin-left: 75%; - } - - .col-lg-offset-10 { - margin-left: 83.3333333333%; - } - - .col-lg-offset-11 { - margin-left: 91.6666666667%; - } - - .col-lg-offset-12 { - margin-left: 100%; - } -} -table { - background-color: transparent; -} -table col[class*=col-] { - position: static; - display: table-column; - float: none; -} -table td[class*=col-], -table th[class*=col-] { - position: static; - display: table-cell; - float: none; -} - -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; -} - -th { - text-align: left; -} - -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > thead > tr > td, -.table > tbody > tr > th, -.table > tbody > tr > td, -.table > tfoot > tr > th, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.428571429; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > th, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} - -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; -} - -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > th, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > th, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} - -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} - -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} - -.table > thead > tr > td.active, -.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} - -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} - -.table > thead > tr > td.success, -.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} - -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} - -.table > thead > tr > td.info, -.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} - -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} - -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} - -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} - -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} - -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} - -.table-responsive { - min-height: 0.01%; - overflow-x: auto; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, -.table-responsive > .table > thead > tr > td, -.table-responsive > .table > tbody > tr > th, -.table-responsive > .table > tbody > tr > td, -.table-responsive > .table > tfoot > tr > th, -.table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, -.table-responsive > .table-bordered > thead > tr > td:first-child, -.table-responsive > .table-bordered > tbody > tr > th:first-child, -.table-responsive > .table-bordered > tbody > tr > td:first-child, -.table-responsive > .table-bordered > tfoot > tr > th:first-child, -.table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, -.table-responsive > .table-bordered > thead > tr > td:last-child, -.table-responsive > .table-bordered > tbody > tr > th:last-child, -.table-responsive > .table-bordered > tbody > tr > td:last-child, -.table-responsive > .table-bordered > tfoot > tr > th:last-child, -.table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, -.table-responsive > .table-bordered > tbody > tr:last-child > td, -.table-responsive > .table-bordered > tfoot > tr:last-child > th, -.table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} - -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: 700; -} - -input[type=search] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - appearance: none; -} - -input[type=radio], -input[type=checkbox] { - margin: 4px 0 0; - margin-top: 1px \\\\9 ; - line-height: normal; -} -input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], -input[type=checkbox][disabled], -input[type=checkbox].disabled, -fieldset[disabled] input[type=checkbox] { - cursor: not-allowed; -} - -input[type=file] { - display: block; -} - -input[type=range] { - display: block; - width: 100%; -} - -select[multiple], -select[size] { - height: auto; -} - -input[type=file]:focus, -input[type=radio]:focus, -input[type=checkbox]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.428571429; - color: #555555; -} - -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - color: #555555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; -} -.form-control[disabled], fieldset[disabled] .form-control { - cursor: not-allowed; -} - -textarea.form-control { - height: auto; -} - -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type=date].form-control, -input[type=time].form-control, -input[type=datetime-local].form-control, -input[type=month].form-control { - line-height: 34px; - } - input[type=date].input-sm, -.input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date], -input[type=time].input-sm, -.input-group-sm > .input-group-btn > input[type=time].btn, -.input-group-sm input[type=time], -input[type=datetime-local].input-sm, -.input-group-sm > .input-group-btn > input[type=datetime-local].btn, -.input-group-sm input[type=datetime-local], -input[type=month].input-sm, -.input-group-sm > .input-group-btn > input[type=month].btn, -.input-group-sm input[type=month] { - line-height: 30px; - } - input[type=date].input-lg, -.input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date], -input[type=time].input-lg, -.input-group-lg > .input-group-btn > input[type=time].btn, -.input-group-lg input[type=time], -input[type=datetime-local].input-lg, -.input-group-lg > .input-group-btn > input[type=datetime-local].btn, -.input-group-lg input[type=datetime-local], -input[type=month].input-lg, -.input-group-lg > .input-group-btn > input[type=month].btn, -.input-group-lg input[type=month] { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} - -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio.disabled label, fieldset[disabled] .radio label, -.checkbox.disabled label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; -} - -.radio input[type=radio], -.radio-inline input[type=radio], -.checkbox input[type=checkbox], -.checkbox-inline input[type=checkbox] { - position: absolute; - margin-top: 4px \\\\9 ; - margin-left: -20px; -} - -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} - -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - vertical-align: middle; - cursor: pointer; -} -.radio-inline.disabled, fieldset[disabled] .radio-inline, -.checkbox-inline.disabled, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} - -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} - -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, -.input-group-lg > .form-control-static.input-group-addon, -.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, -.input-group-sm > .form-control-static.input-group-addon, -.input-group-sm > .input-group-btn > .form-control-static.btn { - padding-right: 0; - padding-left: 0; -} - -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 30px; - line-height: 30px; -} - -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select[multiple].form-control, -.input-group-sm > select[multiple].input-group-addon, -.input-group-sm > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; -} - -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} - -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 46px; - line-height: 46px; -} - -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select[multiple].form-control, -.input-group-lg > select[multiple].input-group-addon, -.input-group-lg > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.3333333; -} - -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} - -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} - -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, -.input-group-lg > .input-group-addon + .form-control-feedback, -.input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} - -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, -.input-group-sm > .input-group-addon + .form-control-feedback, -.input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} - -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; -} -.has-success .form-control-feedback { - color: #3c763d; -} - -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} - -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; -} -.has-error .form-control-feedback { - color: #a94442; -} - -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} - -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} - -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, -.form-inline .input-group .input-group-btn, -.form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, -.form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, -.form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type=radio], -.form-inline .checkbox input[type=checkbox] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} - -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: \\" \\"; -} -.form-horizontal .form-group:after { - clear: both; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; - } -} - -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, .btn[disabled], fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - opacity: 0.65; - -webkit-box-shadow: none; - box-shadow: none; -} - -a.btn.disabled, fieldset[disabled] a.btn { - pointer-events: none; -} - -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - background-image: none; - border-color: #adadad; -} -.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} - -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - background-image: none; - border-color: #204d74; -} -.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} - -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - background-image: none; - border-color: #398439; -} -.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; -} -.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} - -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - background-image: none; - border-color: #269abc; -} -.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} - -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - background-image: none; - border-color: #d58512; -} -.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} - -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - background-image: none; - border-color: #ac2925; -} -.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} - -.btn-link { - font-weight: 400; - color: #337ab7; - border-radius: 0; -} -.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; -} -.btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-block { - display: block; - width: 100%; -} - -.btn-block + .btn-block { - margin-top: 5px; -} - -input[type=submit].btn-block, -input[type=reset].btn-block, -input[type=button].btn-block { - width: 100%; -} - -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.in { - opacity: 1; -} - -.collapse { - display: none; -} -.collapse.in { - display: block; -} - -tr.collapse.in { - display: table-row; -} - -tbody.collapse.in { - display: table-row-group; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \\\\9 ; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} - -.dropup, -.dropdown { - position: relative; -} - -.dropdown-toggle:focus { - outline: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.428571429; - color: #333333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} - -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} - -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; -} -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} - -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} - -.dropdown-menu-right { - right: 0; - left: auto; -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.428571429; - color: #777777; - white-space: nowrap; -} - -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; -} - -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} - -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: \\"\\"; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \\\\9 ; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} - -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:hover, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 2; -} - -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} - -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: \\" \\"; -} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar .btn, -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} - -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} - -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group > .btn-group { - float: left; -} - -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} - -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} - -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; -} - -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; -} - -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} - -.btn .caret { - margin-left: 0; -} - -.btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} - -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; -} - -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { - display: table; - content: \\" \\"; -} -.btn-group-vertical > .btn-group:after { - clear: both; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} - -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} - -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} - -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} - -[data-toggle=buttons] > .btn input[type=radio], -[data-toggle=buttons] > .btn input[type=checkbox], -[data-toggle=buttons] > .btn-group > .btn input[type=radio], -[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*=col-] { - float: none; - padding-right: 0; - padding-left: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group .form-control:focus { - z-index: 3; -} - -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} - -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} - -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: 400; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type=radio], -.input-group-addon input[type=checkbox] { - margin-top: 0; -} - -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group-addon:first-child { - border-right: 0; -} - -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-addon:last-child { - border-left: 0; -} - -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; -} - -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav:before, .nav:after { - display: table; - content: \\" \\"; -} -.nav:after { - clear: both; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.nav > li.disabled > a { - color: #777777; -} -.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} - -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.428571429; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; -} -.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} - -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} - -.nav-justified, .nav-tabs.nav-justified { - width: 100%; -} -.nav-justified > li, .nav-tabs.nav-justified > li { - float: none; -} -.nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} - -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border-bottom-color: #fff; - } -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -.navbar:before, .navbar:after { - display: table; - content: \\" \\"; -} -.navbar:after { - clear: both; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} - -.navbar-header:before, .navbar-header:after { - display: table; - content: \\" \\"; -} -.navbar-header:after { - clear: both; -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} - -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: \\" \\"; -} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; - } -} - -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -@media (min-width: 768px) { - .navbar-fixed-top, -.navbar-fixed-bottom { - border-radius: 0; - } -} - -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} - -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} - -.container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} - -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} - -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} - -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-right: 15px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} - -.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, -.navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; - } -} - -.navbar-form { - padding: 10px 15px; - margin-right: -15px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px; -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, -.navbar-form .input-group .input-group-btn, -.navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, -.navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, -.navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type=radio], -.navbar-form .checkbox input[type=checkbox] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} - -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 14px; - margin-bottom: 14px; -} - -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; - } -} - -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav > li > a { - color: #777; -} -.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; - } -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-default .btn-link { - color: #777; -} -.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; -} -.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} - -.navbar-inverse { - background-color: #222; - border-color: #090909; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #090909; -} -.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #090909; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; - } -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} - -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: \\"/ \\"; -} -.breadcrumb > .active { - color: #777777; -} - -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.428571429; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -.pagination > li > a:hover, .pagination > li > a:focus, -.pagination > li > span:hover, -.pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, -.pagination > .active > span, -.pagination > .active > span:hover, -.pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} - -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; -} -.pager:before, .pager:after { - display: table; - content: \\" \\"; -} -.pager:after { - clear: both; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777777; - cursor: not-allowed; - background-color: #fff; -} - -.label { - display: inline; - padding: 0.2em 0.6em 0.3em; - font-size: 75%; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25em; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} - -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.label-default { - background-color: #777777; -} -.label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; -} - -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; -} - -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; -} - -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; -} - -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; -} - -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; -} - -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -.list-group-item.active > .badge, .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} - -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, .container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron, .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; - } - .jumbotron h1, -.jumbotron .h1 { - font-size: 63px; - } -} - -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-right: auto; - margin-left: auto; -} -.thumbnail .caption { - padding: 9px; - color: #333333; -} - -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} - -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} - -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} - -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} - -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} - -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} - -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} - -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} - -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} - -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} - -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} - -.media, -.media-body { - overflow: hidden; - zoom: 1; -} - -.media-body { - width: 10000px; -} - -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} - -.media-right, -.media > .pull-right { - padding-left: 10px; -} - -.media-left, -.media > .pull-left { - padding-right: 10px; -} - -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} - -.media-middle { - vertical-align: middle; -} - -.media-bottom { - vertical-align: bottom; -} - -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.media-list { - padding-left: 0; - list-style: none; -} - -.list-group { - padding-left: 0; - margin-bottom: 20px; -} - -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - color: #777777; - cursor: not-allowed; - background-color: #eeeeee; -} -.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; -} -.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} - -a.list-group-item, -button.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, a.list-group-item:focus, -button.list-group-item:hover, -button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} - -button.list-group-item { - width: 100%; - text-align: left; -} - -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} - -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, a.list-group-item-success:focus, -button.list-group-item-success:hover, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, -button.list-group-item-success.active, -button.list-group-item-success.active:hover, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} - -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} - -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, a.list-group-item-info:focus, -button.list-group-item-info:hover, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, -button.list-group-item-info.active, -button.list-group-item-info.active:hover, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} - -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} - -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, a.list-group-item-warning:focus, -button.list-group-item-warning:hover, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, -button.list-group-item-warning.active, -button.list-group-item-warning.active:hover, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} - -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} - -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, a.list-group-item-danger:focus, -button.list-group-item-danger:hover, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, -button.list-group-item-danger.active, -button.list-group-item-danger.active:hover, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} - -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} - -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} - -.panel-body { - padding: 15px; -} -.panel-body:before, .panel-body:after { - display: table; - content: \\" \\"; -} -.panel-body:after { - clear: both; -} - -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} - -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} - -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} - -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} - -.list-group + .panel-footer { - border-top-width: 0; -} - -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - margin-bottom: 0; - border: 0; -} - -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} - -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} - -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} - -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} - -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} - -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} - -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} - -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} - -.embed-responsive-4by3 { - padding-bottom: 75%; -} - -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} - -.well-lg { - padding: 24px; - border-radius: 6px; -} - -.well-sm { - padding: 9px; - border-radius: 3px; -} - -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: 0.2; -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: 0.5; -} - -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - appearance: none; -} - -.modal-open { - overflow: hidden; -} - -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} - -.modal-content { - position: relative; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; -} -.modal-backdrop.in { - filter: alpha(opacity=50); - opacity: 0.5; -} - -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header:before, .modal-header:after { - display: table; - content: \\" \\"; -} -.modal-header:after { - clear: both; -} - -.modal-header .close { - margin-top: -2px; -} - -.modal-title { - margin: 0; - line-height: 1.428571429; -} - -.modal-body { - position: relative; - padding: 15px; -} - -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: \\" \\"; -} -.modal-footer:after { - clear: both; -} -.modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - } - - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.428571429; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 12px; - filter: alpha(opacity=0); - opacity: 0; -} -.tooltip.in { - filter: alpha(opacity=90); - opacity: 0.9; -} -.tooltip.top { - padding: 5px 0; - margin-top: -3px; -} -.tooltip.right { - padding: 0 5px; - margin-left: 3px; -} -.tooltip.bottom { - padding: 5px 0; - margin-top: 3px; -} -.tooltip.left { - padding: 0 5px; - margin-left: -3px; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; -} - -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.428571429; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 14px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow, .popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow:after { - content: \\"\\"; - border-width: 10px; -} -.popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; -} -.popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-color: #fff; - border-bottom-width: 0; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; -} -.popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: \\" \\"; - border-right-color: #fff; - border-left-width: 0; -} -.popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-width: 0; - border-bottom-color: #fff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); -} -.popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: \\" \\"; - border-right-width: 0; - border-left-color: #fff; -} - -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} - -.popover-content { - padding: 9px 14px; -} - -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; - } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; - } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} - -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: 0.5; -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#80000000\\", endColorstr=\\"#00000000\\", GradientType=1); - background-repeat: repeat-x; -} -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#00000000\\", endColorstr=\\"#80000000\\", GradientType=1); - background-repeat: repeat-x; -} -.carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - filter: alpha(opacity=90); - opacity: 0.9; -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; -} -.carousel-control .icon-prev:before { - content: \\"‹\\"; -} -.carousel-control .icon-next:before { - content: \\"›\\"; -} - -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \\\\9 ; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; -} -.carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-caption .btn { - text-shadow: none; -} - -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right, -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, -.carousel-control .icon-prev { - margin-left: -10px; - } - .carousel-control .glyphicon-chevron-right, -.carousel-control .icon-next { - margin-right: -10px; - } - - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } - - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, .clearfix:after { - display: table; - content: \\" \\"; -} -.clearfix:after { - clear: both; -} - -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} - -.pull-right { - float: right !important; -} - -.pull-left { - float: left !important; -} - -.hide { - display: none !important; -} - -.show { - display: block !important; -} - -.invisible { - visibility: hidden; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.hidden { - display: none !important; -} - -.affix { - position: fixed; -} - -@-ms-viewport { - width: device-width; -} -.visible-xs { - display: none !important; -} - -.visible-sm { - display: none !important; -} - -.visible-md { - display: none !important; -} - -.visible-lg { - display: none !important; -} - -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} - -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - - table.visible-xs { - display: table !important; - } - - tr.visible-xs { - display: table-row !important; - } - - th.visible-xs, -td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} - -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} - -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - - table.visible-sm { - display: table !important; - } - - tr.visible-sm { - display: table-row !important; - } - - th.visible-sm, -td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - - table.visible-md { - display: table !important; - } - - tr.visible-md { - display: table-row !important; - } - - th.visible-md, -td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - - table.visible-lg { - display: table !important; - } - - tr.visible-lg { - display: table-row !important; - } - - th.visible-lg, -td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} - -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} - -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} - -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} - -@media print { - .visible-print { - display: block !important; - } - - table.visible-print { - display: table !important; - } - - tr.visible-print { - display: table-row !important; - } - - th.visible-print, -td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} - -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} - -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} - -@media print { - .hidden-print { - display: none !important; - } -}" -`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -/*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; } - -body { - margin: 0; } - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; } - -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; } - -audio:not([controls]) { - display: none; - height: 0; } - -[hidden], -template { - display: none; } - -a { - background-color: transparent; } - -a:active, -a:hover { - outline: 0; } - -abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted; } - -b, -strong { - font-weight: bold; } - -dfn { - font-style: italic; } - -h1 { - font-size: 2em; - margin: 0.67em 0; } - -mark { - background: #ff0; - color: #000; } - -small { - font-size: 80%; } - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; } - -sup { - top: -0.5em; } - -sub { - bottom: -0.25em; } - -img { - border: 0; } - -svg:not(:root) { - overflow: hidden; } - -figure { - margin: 1em 40px; } - -hr { - box-sizing: content-box; - height: 0; } - -pre { - overflow: auto; } - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; } - -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; } - -button { - overflow: visible; } - -button, -select { - text-transform: none; } - -button, -html input[type=\\"button\\"], -input[type=\\"reset\\"], -input[type=\\"submit\\"] { - -webkit-appearance: button; - cursor: pointer; } - -button[disabled], -html input[disabled] { - cursor: default; } - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; } - -input { - line-height: normal; } - -input[type=\\"checkbox\\"], -input[type=\\"radio\\"] { - box-sizing: border-box; - padding: 0; } - -input[type=\\"number\\"]::-webkit-inner-spin-button, -input[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } - -input[type=\\"search\\"] { - -webkit-appearance: textfield; - box-sizing: content-box; } - -input[type=\\"search\\"]::-webkit-search-cancel-button, -input[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; } - -legend { - border: 0; - padding: 0; } - -textarea { - overflow: auto; } - -optgroup { - font-weight: bold; } - -table { - border-collapse: collapse; - border-spacing: 0; } - -td, -th { - padding: 0; } - -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - color: #000 !important; - text-shadow: none !important; - background: transparent !important; - box-shadow: none !important; } - a, - a:visited { - text-decoration: underline; } - a[href]:after { - content: \\" (\\" attr(href) \\")\\"; } - abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; } - a[href^=\\"#\\"]:after, - a[href^=\\"javascript:\\"]:after { - content: \\"\\"; } - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; } - thead { - display: table-header-group; } - tr, - img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } - .navbar { - display: none; } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; } - .label { - border: 1px solid #000; } - .table { - border-collapse: collapse !important; } - .table td, - .table th { - background-color: #fff !important; } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; } } - -@font-face { - font-family: \\"Glyphicons Halflings\\"; - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); } - -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: \\"Glyphicons Halflings\\"; - font-style: normal; - font-weight: 400; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } - -.glyphicon-asterisk:before { - content: \\"\\\\002a\\"; } - -.glyphicon-plus:before { - content: \\"\\\\002b\\"; } - -.glyphicon-euro:before, -.glyphicon-eur:before { - content: \\"\\\\20ac\\"; } - -.glyphicon-minus:before { - content: \\"\\\\2212\\"; } - -.glyphicon-cloud:before { - content: \\"\\\\2601\\"; } - -.glyphicon-envelope:before { - content: \\"\\\\2709\\"; } - -.glyphicon-pencil:before { - content: \\"\\\\270f\\"; } - -.glyphicon-glass:before { - content: \\"\\\\e001\\"; } - -.glyphicon-music:before { - content: \\"\\\\e002\\"; } - -.glyphicon-search:before { - content: \\"\\\\e003\\"; } - -.glyphicon-heart:before { - content: \\"\\\\e005\\"; } - -.glyphicon-star:before { - content: \\"\\\\e006\\"; } - -.glyphicon-star-empty:before { - content: \\"\\\\e007\\"; } - -.glyphicon-user:before { - content: \\"\\\\e008\\"; } - -.glyphicon-film:before { - content: \\"\\\\e009\\"; } - -.glyphicon-th-large:before { - content: \\"\\\\e010\\"; } - -.glyphicon-th:before { - content: \\"\\\\e011\\"; } - -.glyphicon-th-list:before { - content: \\"\\\\e012\\"; } - -.glyphicon-ok:before { - content: \\"\\\\e013\\"; } - -.glyphicon-remove:before { - content: \\"\\\\e014\\"; } - -.glyphicon-zoom-in:before { - content: \\"\\\\e015\\"; } - -.glyphicon-zoom-out:before { - content: \\"\\\\e016\\"; } - -.glyphicon-off:before { - content: \\"\\\\e017\\"; } - -.glyphicon-signal:before { - content: \\"\\\\e018\\"; } - -.glyphicon-cog:before { - content: \\"\\\\e019\\"; } - -.glyphicon-trash:before { - content: \\"\\\\e020\\"; } - -.glyphicon-home:before { - content: \\"\\\\e021\\"; } - -.glyphicon-file:before { - content: \\"\\\\e022\\"; } - -.glyphicon-time:before { - content: \\"\\\\e023\\"; } - -.glyphicon-road:before { - content: \\"\\\\e024\\"; } - -.glyphicon-download-alt:before { - content: \\"\\\\e025\\"; } - -.glyphicon-download:before { - content: \\"\\\\e026\\"; } - -.glyphicon-upload:before { - content: \\"\\\\e027\\"; } - -.glyphicon-inbox:before { - content: \\"\\\\e028\\"; } - -.glyphicon-play-circle:before { - content: \\"\\\\e029\\"; } - -.glyphicon-repeat:before { - content: \\"\\\\e030\\"; } - -.glyphicon-refresh:before { - content: \\"\\\\e031\\"; } - -.glyphicon-list-alt:before { - content: \\"\\\\e032\\"; } - -.glyphicon-lock:before { - content: \\"\\\\e033\\"; } - -.glyphicon-flag:before { - content: \\"\\\\e034\\"; } - -.glyphicon-headphones:before { - content: \\"\\\\e035\\"; } - -.glyphicon-volume-off:before { - content: \\"\\\\e036\\"; } - -.glyphicon-volume-down:before { - content: \\"\\\\e037\\"; } - -.glyphicon-volume-up:before { - content: \\"\\\\e038\\"; } - -.glyphicon-qrcode:before { - content: \\"\\\\e039\\"; } - -.glyphicon-barcode:before { - content: \\"\\\\e040\\"; } - -.glyphicon-tag:before { - content: \\"\\\\e041\\"; } - -.glyphicon-tags:before { - content: \\"\\\\e042\\"; } - -.glyphicon-book:before { - content: \\"\\\\e043\\"; } - -.glyphicon-bookmark:before { - content: \\"\\\\e044\\"; } - -.glyphicon-print:before { - content: \\"\\\\e045\\"; } - -.glyphicon-camera:before { - content: \\"\\\\e046\\"; } - -.glyphicon-font:before { - content: \\"\\\\e047\\"; } - -.glyphicon-bold:before { - content: \\"\\\\e048\\"; } - -.glyphicon-italic:before { - content: \\"\\\\e049\\"; } - -.glyphicon-text-height:before { - content: \\"\\\\e050\\"; } - -.glyphicon-text-width:before { - content: \\"\\\\e051\\"; } - -.glyphicon-align-left:before { - content: \\"\\\\e052\\"; } - -.glyphicon-align-center:before { - content: \\"\\\\e053\\"; } - -.glyphicon-align-right:before { - content: \\"\\\\e054\\"; } - -.glyphicon-align-justify:before { - content: \\"\\\\e055\\"; } - -.glyphicon-list:before { - content: \\"\\\\e056\\"; } - -.glyphicon-indent-left:before { - content: \\"\\\\e057\\"; } - -.glyphicon-indent-right:before { - content: \\"\\\\e058\\"; } - -.glyphicon-facetime-video:before { - content: \\"\\\\e059\\"; } - -.glyphicon-picture:before { - content: \\"\\\\e060\\"; } - -.glyphicon-map-marker:before { - content: \\"\\\\e062\\"; } - -.glyphicon-adjust:before { - content: \\"\\\\e063\\"; } - -.glyphicon-tint:before { - content: \\"\\\\e064\\"; } - -.glyphicon-edit:before { - content: \\"\\\\e065\\"; } - -.glyphicon-share:before { - content: \\"\\\\e066\\"; } - -.glyphicon-check:before { - content: \\"\\\\e067\\"; } - -.glyphicon-move:before { - content: \\"\\\\e068\\"; } - -.glyphicon-step-backward:before { - content: \\"\\\\e069\\"; } - -.glyphicon-fast-backward:before { - content: \\"\\\\e070\\"; } - -.glyphicon-backward:before { - content: \\"\\\\e071\\"; } - -.glyphicon-play:before { - content: \\"\\\\e072\\"; } - -.glyphicon-pause:before { - content: \\"\\\\e073\\"; } - -.glyphicon-stop:before { - content: \\"\\\\e074\\"; } - -.glyphicon-forward:before { - content: \\"\\\\e075\\"; } - -.glyphicon-fast-forward:before { - content: \\"\\\\e076\\"; } - -.glyphicon-step-forward:before { - content: \\"\\\\e077\\"; } - -.glyphicon-eject:before { - content: \\"\\\\e078\\"; } - -.glyphicon-chevron-left:before { - content: \\"\\\\e079\\"; } - -.glyphicon-chevron-right:before { - content: \\"\\\\e080\\"; } - -.glyphicon-plus-sign:before { - content: \\"\\\\e081\\"; } - -.glyphicon-minus-sign:before { - content: \\"\\\\e082\\"; } - -.glyphicon-remove-sign:before { - content: \\"\\\\e083\\"; } - -.glyphicon-ok-sign:before { - content: \\"\\\\e084\\"; } - -.glyphicon-question-sign:before { - content: \\"\\\\e085\\"; } - -.glyphicon-info-sign:before { - content: \\"\\\\e086\\"; } - -.glyphicon-screenshot:before { - content: \\"\\\\e087\\"; } - -.glyphicon-remove-circle:before { - content: \\"\\\\e088\\"; } - -.glyphicon-ok-circle:before { - content: \\"\\\\e089\\"; } - -.glyphicon-ban-circle:before { - content: \\"\\\\e090\\"; } - -.glyphicon-arrow-left:before { - content: \\"\\\\e091\\"; } - -.glyphicon-arrow-right:before { - content: \\"\\\\e092\\"; } - -.glyphicon-arrow-up:before { - content: \\"\\\\e093\\"; } - -.glyphicon-arrow-down:before { - content: \\"\\\\e094\\"; } - -.glyphicon-share-alt:before { - content: \\"\\\\e095\\"; } - -.glyphicon-resize-full:before { - content: \\"\\\\e096\\"; } - -.glyphicon-resize-small:before { - content: \\"\\\\e097\\"; } - -.glyphicon-exclamation-sign:before { - content: \\"\\\\e101\\"; } - -.glyphicon-gift:before { - content: \\"\\\\e102\\"; } - -.glyphicon-leaf:before { - content: \\"\\\\e103\\"; } - -.glyphicon-fire:before { - content: \\"\\\\e104\\"; } - -.glyphicon-eye-open:before { - content: \\"\\\\e105\\"; } - -.glyphicon-eye-close:before { - content: \\"\\\\e106\\"; } - -.glyphicon-warning-sign:before { - content: \\"\\\\e107\\"; } - -.glyphicon-plane:before { - content: \\"\\\\e108\\"; } - -.glyphicon-calendar:before { - content: \\"\\\\e109\\"; } - -.glyphicon-random:before { - content: \\"\\\\e110\\"; } - -.glyphicon-comment:before { - content: \\"\\\\e111\\"; } - -.glyphicon-magnet:before { - content: \\"\\\\e112\\"; } - -.glyphicon-chevron-up:before { - content: \\"\\\\e113\\"; } - -.glyphicon-chevron-down:before { - content: \\"\\\\e114\\"; } - -.glyphicon-retweet:before { - content: \\"\\\\e115\\"; } - -.glyphicon-shopping-cart:before { - content: \\"\\\\e116\\"; } - -.glyphicon-folder-close:before { - content: \\"\\\\e117\\"; } - -.glyphicon-folder-open:before { - content: \\"\\\\e118\\"; } - -.glyphicon-resize-vertical:before { - content: \\"\\\\e119\\"; } - -.glyphicon-resize-horizontal:before { - content: \\"\\\\e120\\"; } - -.glyphicon-hdd:before { - content: \\"\\\\e121\\"; } - -.glyphicon-bullhorn:before { - content: \\"\\\\e122\\"; } - -.glyphicon-bell:before { - content: \\"\\\\e123\\"; } - -.glyphicon-certificate:before { - content: \\"\\\\e124\\"; } - -.glyphicon-thumbs-up:before { - content: \\"\\\\e125\\"; } - -.glyphicon-thumbs-down:before { - content: \\"\\\\e126\\"; } - -.glyphicon-hand-right:before { - content: \\"\\\\e127\\"; } - -.glyphicon-hand-left:before { - content: \\"\\\\e128\\"; } - -.glyphicon-hand-up:before { - content: \\"\\\\e129\\"; } - -.glyphicon-hand-down:before { - content: \\"\\\\e130\\"; } - -.glyphicon-circle-arrow-right:before { - content: \\"\\\\e131\\"; } - -.glyphicon-circle-arrow-left:before { - content: \\"\\\\e132\\"; } - -.glyphicon-circle-arrow-up:before { - content: \\"\\\\e133\\"; } - -.glyphicon-circle-arrow-down:before { - content: \\"\\\\e134\\"; } - -.glyphicon-globe:before { - content: \\"\\\\e135\\"; } - -.glyphicon-wrench:before { - content: \\"\\\\e136\\"; } - -.glyphicon-tasks:before { - content: \\"\\\\e137\\"; } - -.glyphicon-filter:before { - content: \\"\\\\e138\\"; } - -.glyphicon-briefcase:before { - content: \\"\\\\e139\\"; } - -.glyphicon-fullscreen:before { - content: \\"\\\\e140\\"; } - -.glyphicon-dashboard:before { - content: \\"\\\\e141\\"; } - -.glyphicon-paperclip:before { - content: \\"\\\\e142\\"; } - -.glyphicon-heart-empty:before { - content: \\"\\\\e143\\"; } - -.glyphicon-link:before { - content: \\"\\\\e144\\"; } - -.glyphicon-phone:before { - content: \\"\\\\e145\\"; } - -.glyphicon-pushpin:before { - content: \\"\\\\e146\\"; } - -.glyphicon-usd:before { - content: \\"\\\\e148\\"; } - -.glyphicon-gbp:before { - content: \\"\\\\e149\\"; } - -.glyphicon-sort:before { - content: \\"\\\\e150\\"; } - -.glyphicon-sort-by-alphabet:before { - content: \\"\\\\e151\\"; } - -.glyphicon-sort-by-alphabet-alt:before { - content: \\"\\\\e152\\"; } - -.glyphicon-sort-by-order:before { - content: \\"\\\\e153\\"; } - -.glyphicon-sort-by-order-alt:before { - content: \\"\\\\e154\\"; } - -.glyphicon-sort-by-attributes:before { - content: \\"\\\\e155\\"; } - -.glyphicon-sort-by-attributes-alt:before { - content: \\"\\\\e156\\"; } - -.glyphicon-unchecked:before { - content: \\"\\\\e157\\"; } - -.glyphicon-expand:before { - content: \\"\\\\e158\\"; } - -.glyphicon-collapse-down:before { - content: \\"\\\\e159\\"; } - -.glyphicon-collapse-up:before { - content: \\"\\\\e160\\"; } - -.glyphicon-log-in:before { - content: \\"\\\\e161\\"; } - -.glyphicon-flash:before { - content: \\"\\\\e162\\"; } - -.glyphicon-log-out:before { - content: \\"\\\\e163\\"; } - -.glyphicon-new-window:before { - content: \\"\\\\e164\\"; } - -.glyphicon-record:before { - content: \\"\\\\e165\\"; } - -.glyphicon-save:before { - content: \\"\\\\e166\\"; } - -.glyphicon-open:before { - content: \\"\\\\e167\\"; } - -.glyphicon-saved:before { - content: \\"\\\\e168\\"; } - -.glyphicon-import:before { - content: \\"\\\\e169\\"; } - -.glyphicon-export:before { - content: \\"\\\\e170\\"; } - -.glyphicon-send:before { - content: \\"\\\\e171\\"; } - -.glyphicon-floppy-disk:before { - content: \\"\\\\e172\\"; } - -.glyphicon-floppy-saved:before { - content: \\"\\\\e173\\"; } - -.glyphicon-floppy-remove:before { - content: \\"\\\\e174\\"; } - -.glyphicon-floppy-save:before { - content: \\"\\\\e175\\"; } - -.glyphicon-floppy-open:before { - content: \\"\\\\e176\\"; } - -.glyphicon-credit-card:before { - content: \\"\\\\e177\\"; } - -.glyphicon-transfer:before { - content: \\"\\\\e178\\"; } - -.glyphicon-cutlery:before { - content: \\"\\\\e179\\"; } - -.glyphicon-header:before { - content: \\"\\\\e180\\"; } - -.glyphicon-compressed:before { - content: \\"\\\\e181\\"; } - -.glyphicon-earphone:before { - content: \\"\\\\e182\\"; } - -.glyphicon-phone-alt:before { - content: \\"\\\\e183\\"; } - -.glyphicon-tower:before { - content: \\"\\\\e184\\"; } - -.glyphicon-stats:before { - content: \\"\\\\e185\\"; } - -.glyphicon-sd-video:before { - content: \\"\\\\e186\\"; } - -.glyphicon-hd-video:before { - content: \\"\\\\e187\\"; } - -.glyphicon-subtitles:before { - content: \\"\\\\e188\\"; } - -.glyphicon-sound-stereo:before { - content: \\"\\\\e189\\"; } - -.glyphicon-sound-dolby:before { - content: \\"\\\\e190\\"; } - -.glyphicon-sound-5-1:before { - content: \\"\\\\e191\\"; } - -.glyphicon-sound-6-1:before { - content: \\"\\\\e192\\"; } - -.glyphicon-sound-7-1:before { - content: \\"\\\\e193\\"; } - -.glyphicon-copyright-mark:before { - content: \\"\\\\e194\\"; } - -.glyphicon-registration-mark:before { - content: \\"\\\\e195\\"; } - -.glyphicon-cloud-download:before { - content: \\"\\\\e197\\"; } - -.glyphicon-cloud-upload:before { - content: \\"\\\\e198\\"; } - -.glyphicon-tree-conifer:before { - content: \\"\\\\e199\\"; } - -.glyphicon-tree-deciduous:before { - content: \\"\\\\e200\\"; } - -.glyphicon-cd:before { - content: \\"\\\\e201\\"; } - -.glyphicon-save-file:before { - content: \\"\\\\e202\\"; } - -.glyphicon-open-file:before { - content: \\"\\\\e203\\"; } - -.glyphicon-level-up:before { - content: \\"\\\\e204\\"; } - -.glyphicon-copy:before { - content: \\"\\\\e205\\"; } - -.glyphicon-paste:before { - content: \\"\\\\e206\\"; } - -.glyphicon-alert:before { - content: \\"\\\\e209\\"; } - -.glyphicon-equalizer:before { - content: \\"\\\\e210\\"; } - -.glyphicon-king:before { - content: \\"\\\\e211\\"; } - -.glyphicon-queen:before { - content: \\"\\\\e212\\"; } - -.glyphicon-pawn:before { - content: \\"\\\\e213\\"; } - -.glyphicon-bishop:before { - content: \\"\\\\e214\\"; } - -.glyphicon-knight:before { - content: \\"\\\\e215\\"; } - -.glyphicon-baby-formula:before { - content: \\"\\\\e216\\"; } - -.glyphicon-tent:before { - content: \\"\\\\26fa\\"; } - -.glyphicon-blackboard:before { - content: \\"\\\\e218\\"; } - -.glyphicon-bed:before { - content: \\"\\\\e219\\"; } - -.glyphicon-apple:before { - content: \\"\\\\f8ff\\"; } - -.glyphicon-erase:before { - content: \\"\\\\e221\\"; } - -.glyphicon-hourglass:before { - content: \\"\\\\231b\\"; } - -.glyphicon-lamp:before { - content: \\"\\\\e223\\"; } - -.glyphicon-duplicate:before { - content: \\"\\\\e224\\"; } - -.glyphicon-piggy-bank:before { - content: \\"\\\\e225\\"; } - -.glyphicon-scissors:before { - content: \\"\\\\e226\\"; } - -.glyphicon-bitcoin:before { - content: \\"\\\\e227\\"; } - -.glyphicon-btc:before { - content: \\"\\\\e227\\"; } - -.glyphicon-xbt:before { - content: \\"\\\\e227\\"; } - -.glyphicon-yen:before { - content: \\"\\\\00a5\\"; } - -.glyphicon-jpy:before { - content: \\"\\\\00a5\\"; } - -.glyphicon-ruble:before { - content: \\"\\\\20bd\\"; } - -.glyphicon-rub:before { - content: \\"\\\\20bd\\"; } - -.glyphicon-scale:before { - content: \\"\\\\e230\\"; } - -.glyphicon-ice-lolly:before { - content: \\"\\\\e231\\"; } - -.glyphicon-ice-lolly-tasted:before { - content: \\"\\\\e232\\"; } - -.glyphicon-education:before { - content: \\"\\\\e233\\"; } - -.glyphicon-option-horizontal:before { - content: \\"\\\\e234\\"; } - -.glyphicon-option-vertical:before { - content: \\"\\\\e235\\"; } - -.glyphicon-menu-hamburger:before { - content: \\"\\\\e236\\"; } - -.glyphicon-modal-window:before { - content: \\"\\\\e237\\"; } - -.glyphicon-oil:before { - content: \\"\\\\e238\\"; } - -.glyphicon-grain:before { - content: \\"\\\\e239\\"; } - -.glyphicon-sunglasses:before { - content: \\"\\\\e240\\"; } - -.glyphicon-text-size:before { - content: \\"\\\\e241\\"; } - -.glyphicon-text-color:before { - content: \\"\\\\e242\\"; } - -.glyphicon-text-background:before { - content: \\"\\\\e243\\"; } - -.glyphicon-object-align-top:before { - content: \\"\\\\e244\\"; } - -.glyphicon-object-align-bottom:before { - content: \\"\\\\e245\\"; } - -.glyphicon-object-align-horizontal:before { - content: \\"\\\\e246\\"; } - -.glyphicon-object-align-left:before { - content: \\"\\\\e247\\"; } - -.glyphicon-object-align-vertical:before { - content: \\"\\\\e248\\"; } - -.glyphicon-object-align-right:before { - content: \\"\\\\e249\\"; } - -.glyphicon-triangle-right:before { - content: \\"\\\\e250\\"; } - -.glyphicon-triangle-left:before { - content: \\"\\\\e251\\"; } - -.glyphicon-triangle-bottom:before { - content: \\"\\\\e252\\"; } - -.glyphicon-triangle-top:before { - content: \\"\\\\e253\\"; } - -.glyphicon-console:before { - content: \\"\\\\e254\\"; } - -.glyphicon-superscript:before { - content: \\"\\\\e255\\"; } - -.glyphicon-subscript:before { - content: \\"\\\\e256\\"; } - -.glyphicon-menu-left:before { - content: \\"\\\\e257\\"; } - -.glyphicon-menu-right:before { - content: \\"\\\\e258\\"; } - -.glyphicon-menu-down:before { - content: \\"\\\\e259\\"; } - -.glyphicon-menu-up:before { - content: \\"\\\\e260\\"; } - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -body { - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857; - color: #333333; - background-color: #fff; } - -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; } - -a { - color: #337ab7; - text-decoration: none; } - a:hover, a:focus { - color: #23527c; - text-decoration: underline; } - a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - -figure { - margin: 0; } - -img { - vertical-align: middle; } - -.img-responsive { - display: block; - max-width: 100%; - height: auto; } - -.img-rounded { - border-radius: 6px; } - -.img-thumbnail { - padding: 4px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; } - -.img-circle { - border-radius: 50%; } - -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; } - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; } - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; } - -[role=\\"button\\"] { - cursor: pointer; } - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; } - h1 small, - h1 .small, h2 small, - h2 .small, h3 small, - h3 .small, h4 small, - h4 .small, h5 small, - h5 .small, h6 small, - h6 .small, - .h1 small, - .h1 .small, .h2 small, - .h2 .small, .h3 small, - .h3 .small, .h4 small, - .h4 .small, .h5 small, - .h5 .small, .h6 small, - .h6 .small { - font-weight: 400; - line-height: 1; - color: #777777; } - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; } - h1 small, - h1 .small, .h1 small, - .h1 .small, - h2 small, - h2 .small, .h2 small, - .h2 .small, - h3 small, - h3 .small, .h3 small, - .h3 .small { - font-size: 65%; } - -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; } - h4 small, - h4 .small, .h4 small, - .h4 .small, - h5 small, - h5 .small, .h5 small, - .h5 .small, - h6 small, - h6 .small, .h6 small, - .h6 .small { - font-size: 75%; } - -h1, .h1 { - font-size: 36px; } - -h2, .h2 { - font-size: 30px; } - -h3, .h3 { - font-size: 24px; } - -h4, .h4 { - font-size: 18px; } - -h5, .h5 { - font-size: 14px; } - -h6, .h6 { - font-size: 12px; } - -p { - margin: 0 0 10px; } - -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; } - @media (min-width: 768px) { - .lead { - font-size: 21px; } } - -small, -.small { - font-size: 85%; } - -mark, -.mark { - padding: .2em; - background-color: #fcf8e3; } - -.text-left { - text-align: left; } - -.text-right { - text-align: right; } - -.text-center { - text-align: center; } - -.text-justify { - text-align: justify; } - -.text-nowrap { - white-space: nowrap; } - -.text-lowercase { - text-transform: lowercase; } - -.text-uppercase, .initialism { - text-transform: uppercase; } - -.text-capitalize { - text-transform: capitalize; } - -.text-muted { - color: #777777; } - -.text-primary { - color: #337ab7; } - -a.text-primary:hover, -a.text-primary:focus { - color: #286090; } - -.text-success { - color: #3c763d; } - -a.text-success:hover, -a.text-success:focus { - color: #2b542c; } - -.text-info { - color: #31708f; } - -a.text-info:hover, -a.text-info:focus { - color: #245269; } - -.text-warning { - color: #8a6d3b; } - -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; } - -.text-danger { - color: #a94442; } - -a.text-danger:hover, -a.text-danger:focus { - color: #843534; } - -.bg-primary { - color: #fff; } - -.bg-primary { - background-color: #337ab7; } - -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; } - -.bg-success { - background-color: #dff0d8; } - -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; } - -.bg-info { - background-color: #d9edf7; } - -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; } - -.bg-warning { - background-color: #fcf8e3; } - -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; } - -.bg-danger { - background-color: #f2dede; } - -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; } - -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; } - -ul, -ol { - margin-top: 0; - margin-bottom: 10px; } - ul ul, - ul ol, - ol ul, - ol ol { - margin-bottom: 0; } - -.list-unstyled { - padding-left: 0; - list-style: none; } - -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; } - .list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; } - -dl { - margin-top: 0; - margin-bottom: 20px; } - -dt, -dd { - line-height: 1.42857; } - -dt { - font-weight: 700; } - -dd { - margin-left: 0; } - -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: \\" \\"; } - -.dl-horizontal dd:after { - clear: both; } - -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } - .dl-horizontal dd { - margin-left: 180px; } } - -abbr[title], -abbr[data-original-title] { - cursor: help; } - -.initialism { - font-size: 90%; } - -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; } - blockquote p:last-child, - blockquote ul:last-child, - blockquote ol:last-child { - margin-bottom: 0; } - blockquote footer, - blockquote small, - blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857; - color: #777777; } - blockquote footer:before, - blockquote small:before, - blockquote .small:before { - content: \\"\\\\2014 \\\\00A0\\"; } - -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eeeeee; - border-left: 0; } - .blockquote-reverse footer:before, - .blockquote-reverse small:before, - .blockquote-reverse .small:before, - blockquote.pull-right footer:before, - blockquote.pull-right small:before, - blockquote.pull-right .small:before { - content: \\"\\"; } - .blockquote-reverse footer:after, - .blockquote-reverse small:after, - .blockquote-reverse .small:after, - blockquote.pull-right footer:after, - blockquote.pull-right small:after, - blockquote.pull-right .small:after { - content: \\"\\\\00A0 \\\\2014\\"; } - -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857; } - -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; } - -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; } - -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } - kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; } - -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857; - color: #333333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; } - pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; } - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; } - -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - .container:before, .container:after { - display: table; - content: \\" \\"; } - .container:after { - clear: both; } - @media (min-width: 768px) { - .container { - width: 750px; } } - @media (min-width: 992px) { - .container { - width: 970px; } } - @media (min-width: 1200px) { - .container { - width: 1170px; } } - -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - .container-fluid:before, .container-fluid:after { - display: table; - content: \\" \\"; } - .container-fluid:after { - clear: both; } - -.row { - margin-right: -15px; - margin-left: -15px; } - .row:before, .row:after { - display: table; - content: \\" \\"; } - .row:after { - clear: both; } - -.row-no-gutters { - margin-right: 0; - margin-left: 0; } - .row-no-gutters [class*=\\"col-\\"] { - padding-right: 0; - padding-left: 0; } - -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; } - -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; } - -.col-xs-1 { - width: 8.33333%; } - -.col-xs-2 { - width: 16.66667%; } - -.col-xs-3 { - width: 25%; } - -.col-xs-4 { - width: 33.33333%; } - -.col-xs-5 { - width: 41.66667%; } - -.col-xs-6 { - width: 50%; } - -.col-xs-7 { - width: 58.33333%; } - -.col-xs-8 { - width: 66.66667%; } - -.col-xs-9 { - width: 75%; } - -.col-xs-10 { - width: 83.33333%; } - -.col-xs-11 { - width: 91.66667%; } - -.col-xs-12 { - width: 100%; } - -.col-xs-pull-0 { - right: auto; } - -.col-xs-pull-1 { - right: 8.33333%; } - -.col-xs-pull-2 { - right: 16.66667%; } - -.col-xs-pull-3 { - right: 25%; } - -.col-xs-pull-4 { - right: 33.33333%; } - -.col-xs-pull-5 { - right: 41.66667%; } - -.col-xs-pull-6 { - right: 50%; } - -.col-xs-pull-7 { - right: 58.33333%; } - -.col-xs-pull-8 { - right: 66.66667%; } - -.col-xs-pull-9 { - right: 75%; } - -.col-xs-pull-10 { - right: 83.33333%; } - -.col-xs-pull-11 { - right: 91.66667%; } - -.col-xs-pull-12 { - right: 100%; } - -.col-xs-push-0 { - left: auto; } - -.col-xs-push-1 { - left: 8.33333%; } - -.col-xs-push-2 { - left: 16.66667%; } - -.col-xs-push-3 { - left: 25%; } - -.col-xs-push-4 { - left: 33.33333%; } - -.col-xs-push-5 { - left: 41.66667%; } - -.col-xs-push-6 { - left: 50%; } - -.col-xs-push-7 { - left: 58.33333%; } - -.col-xs-push-8 { - left: 66.66667%; } - -.col-xs-push-9 { - left: 75%; } - -.col-xs-push-10 { - left: 83.33333%; } - -.col-xs-push-11 { - left: 91.66667%; } - -.col-xs-push-12 { - left: 100%; } - -.col-xs-offset-0 { - margin-left: 0%; } - -.col-xs-offset-1 { - margin-left: 8.33333%; } - -.col-xs-offset-2 { - margin-left: 16.66667%; } - -.col-xs-offset-3 { - margin-left: 25%; } - -.col-xs-offset-4 { - margin-left: 33.33333%; } - -.col-xs-offset-5 { - margin-left: 41.66667%; } - -.col-xs-offset-6 { - margin-left: 50%; } - -.col-xs-offset-7 { - margin-left: 58.33333%; } - -.col-xs-offset-8 { - margin-left: 66.66667%; } - -.col-xs-offset-9 { - margin-left: 75%; } - -.col-xs-offset-10 { - margin-left: 83.33333%; } - -.col-xs-offset-11 { - margin-left: 91.66667%; } - -.col-xs-offset-12 { - margin-left: 100%; } - -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; } - .col-sm-1 { - width: 8.33333%; } - .col-sm-2 { - width: 16.66667%; } - .col-sm-3 { - width: 25%; } - .col-sm-4 { - width: 33.33333%; } - .col-sm-5 { - width: 41.66667%; } - .col-sm-6 { - width: 50%; } - .col-sm-7 { - width: 58.33333%; } - .col-sm-8 { - width: 66.66667%; } - .col-sm-9 { - width: 75%; } - .col-sm-10 { - width: 83.33333%; } - .col-sm-11 { - width: 91.66667%; } - .col-sm-12 { - width: 100%; } - .col-sm-pull-0 { - right: auto; } - .col-sm-pull-1 { - right: 8.33333%; } - .col-sm-pull-2 { - right: 16.66667%; } - .col-sm-pull-3 { - right: 25%; } - .col-sm-pull-4 { - right: 33.33333%; } - .col-sm-pull-5 { - right: 41.66667%; } - .col-sm-pull-6 { - right: 50%; } - .col-sm-pull-7 { - right: 58.33333%; } - .col-sm-pull-8 { - right: 66.66667%; } - .col-sm-pull-9 { - right: 75%; } - .col-sm-pull-10 { - right: 83.33333%; } - .col-sm-pull-11 { - right: 91.66667%; } - .col-sm-pull-12 { - right: 100%; } - .col-sm-push-0 { - left: auto; } - .col-sm-push-1 { - left: 8.33333%; } - .col-sm-push-2 { - left: 16.66667%; } - .col-sm-push-3 { - left: 25%; } - .col-sm-push-4 { - left: 33.33333%; } - .col-sm-push-5 { - left: 41.66667%; } - .col-sm-push-6 { - left: 50%; } - .col-sm-push-7 { - left: 58.33333%; } - .col-sm-push-8 { - left: 66.66667%; } - .col-sm-push-9 { - left: 75%; } - .col-sm-push-10 { - left: 83.33333%; } - .col-sm-push-11 { - left: 91.66667%; } - .col-sm-push-12 { - left: 100%; } - .col-sm-offset-0 { - margin-left: 0%; } - .col-sm-offset-1 { - margin-left: 8.33333%; } - .col-sm-offset-2 { - margin-left: 16.66667%; } - .col-sm-offset-3 { - margin-left: 25%; } - .col-sm-offset-4 { - margin-left: 33.33333%; } - .col-sm-offset-5 { - margin-left: 41.66667%; } - .col-sm-offset-6 { - margin-left: 50%; } - .col-sm-offset-7 { - margin-left: 58.33333%; } - .col-sm-offset-8 { - margin-left: 66.66667%; } - .col-sm-offset-9 { - margin-left: 75%; } - .col-sm-offset-10 { - margin-left: 83.33333%; } - .col-sm-offset-11 { - margin-left: 91.66667%; } - .col-sm-offset-12 { - margin-left: 100%; } } - -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; } - .col-md-1 { - width: 8.33333%; } - .col-md-2 { - width: 16.66667%; } - .col-md-3 { - width: 25%; } - .col-md-4 { - width: 33.33333%; } - .col-md-5 { - width: 41.66667%; } - .col-md-6 { - width: 50%; } - .col-md-7 { - width: 58.33333%; } - .col-md-8 { - width: 66.66667%; } - .col-md-9 { - width: 75%; } - .col-md-10 { - width: 83.33333%; } - .col-md-11 { - width: 91.66667%; } - .col-md-12 { - width: 100%; } - .col-md-pull-0 { - right: auto; } - .col-md-pull-1 { - right: 8.33333%; } - .col-md-pull-2 { - right: 16.66667%; } - .col-md-pull-3 { - right: 25%; } - .col-md-pull-4 { - right: 33.33333%; } - .col-md-pull-5 { - right: 41.66667%; } - .col-md-pull-6 { - right: 50%; } - .col-md-pull-7 { - right: 58.33333%; } - .col-md-pull-8 { - right: 66.66667%; } - .col-md-pull-9 { - right: 75%; } - .col-md-pull-10 { - right: 83.33333%; } - .col-md-pull-11 { - right: 91.66667%; } - .col-md-pull-12 { - right: 100%; } - .col-md-push-0 { - left: auto; } - .col-md-push-1 { - left: 8.33333%; } - .col-md-push-2 { - left: 16.66667%; } - .col-md-push-3 { - left: 25%; } - .col-md-push-4 { - left: 33.33333%; } - .col-md-push-5 { - left: 41.66667%; } - .col-md-push-6 { - left: 50%; } - .col-md-push-7 { - left: 58.33333%; } - .col-md-push-8 { - left: 66.66667%; } - .col-md-push-9 { - left: 75%; } - .col-md-push-10 { - left: 83.33333%; } - .col-md-push-11 { - left: 91.66667%; } - .col-md-push-12 { - left: 100%; } - .col-md-offset-0 { - margin-left: 0%; } - .col-md-offset-1 { - margin-left: 8.33333%; } - .col-md-offset-2 { - margin-left: 16.66667%; } - .col-md-offset-3 { - margin-left: 25%; } - .col-md-offset-4 { - margin-left: 33.33333%; } - .col-md-offset-5 { - margin-left: 41.66667%; } - .col-md-offset-6 { - margin-left: 50%; } - .col-md-offset-7 { - margin-left: 58.33333%; } - .col-md-offset-8 { - margin-left: 66.66667%; } - .col-md-offset-9 { - margin-left: 75%; } - .col-md-offset-10 { - margin-left: 83.33333%; } - .col-md-offset-11 { - margin-left: 91.66667%; } - .col-md-offset-12 { - margin-left: 100%; } } - -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; } - .col-lg-1 { - width: 8.33333%; } - .col-lg-2 { - width: 16.66667%; } - .col-lg-3 { - width: 25%; } - .col-lg-4 { - width: 33.33333%; } - .col-lg-5 { - width: 41.66667%; } - .col-lg-6 { - width: 50%; } - .col-lg-7 { - width: 58.33333%; } - .col-lg-8 { - width: 66.66667%; } - .col-lg-9 { - width: 75%; } - .col-lg-10 { - width: 83.33333%; } - .col-lg-11 { - width: 91.66667%; } - .col-lg-12 { - width: 100%; } - .col-lg-pull-0 { - right: auto; } - .col-lg-pull-1 { - right: 8.33333%; } - .col-lg-pull-2 { - right: 16.66667%; } - .col-lg-pull-3 { - right: 25%; } - .col-lg-pull-4 { - right: 33.33333%; } - .col-lg-pull-5 { - right: 41.66667%; } - .col-lg-pull-6 { - right: 50%; } - .col-lg-pull-7 { - right: 58.33333%; } - .col-lg-pull-8 { - right: 66.66667%; } - .col-lg-pull-9 { - right: 75%; } - .col-lg-pull-10 { - right: 83.33333%; } - .col-lg-pull-11 { - right: 91.66667%; } - .col-lg-pull-12 { - right: 100%; } - .col-lg-push-0 { - left: auto; } - .col-lg-push-1 { - left: 8.33333%; } - .col-lg-push-2 { - left: 16.66667%; } - .col-lg-push-3 { - left: 25%; } - .col-lg-push-4 { - left: 33.33333%; } - .col-lg-push-5 { - left: 41.66667%; } - .col-lg-push-6 { - left: 50%; } - .col-lg-push-7 { - left: 58.33333%; } - .col-lg-push-8 { - left: 66.66667%; } - .col-lg-push-9 { - left: 75%; } - .col-lg-push-10 { - left: 83.33333%; } - .col-lg-push-11 { - left: 91.66667%; } - .col-lg-push-12 { - left: 100%; } - .col-lg-offset-0 { - margin-left: 0%; } - .col-lg-offset-1 { - margin-left: 8.33333%; } - .col-lg-offset-2 { - margin-left: 16.66667%; } - .col-lg-offset-3 { - margin-left: 25%; } - .col-lg-offset-4 { - margin-left: 33.33333%; } - .col-lg-offset-5 { - margin-left: 41.66667%; } - .col-lg-offset-6 { - margin-left: 50%; } - .col-lg-offset-7 { - margin-left: 58.33333%; } - .col-lg-offset-8 { - margin-left: 66.66667%; } - .col-lg-offset-9 { - margin-left: 75%; } - .col-lg-offset-10 { - margin-left: 83.33333%; } - .col-lg-offset-11 { - margin-left: 91.66667%; } - .col-lg-offset-12 { - margin-left: 100%; } } - -table { - background-color: transparent; } - table col[class*=\\"col-\\"] { - position: static; - display: table-column; - float: none; } - table td[class*=\\"col-\\"], - table th[class*=\\"col-\\"] { - position: static; - display: table-cell; - float: none; } - -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; } - -th { - text-align: left; } - -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; } - .table > thead > tr > th, - .table > thead > tr > td, - .table > tbody > tr > th, - .table > tbody > tr > td, - .table > tfoot > tr > th, - .table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857; - vertical-align: top; - border-top: 1px solid #ddd; } - .table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; } - .table > caption + thead > tr:first-child > th, - .table > caption + thead > tr:first-child > td, - .table > colgroup + thead > tr:first-child > th, - .table > colgroup + thead > tr:first-child > td, - .table > thead:first-child > tr:first-child > th, - .table > thead:first-child > tr:first-child > td { - border-top: 0; } - .table > tbody + tbody { - border-top: 2px solid #ddd; } - .table .table { - background-color: #fff; } - -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; } - -.table-bordered { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td, - .table-bordered > tbody > tr > th, - .table-bordered > tbody > tr > td, - .table-bordered > tfoot > tr > th, - .table-bordered > tfoot > tr > td { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td { - border-bottom-width: 2px; } - -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; } - -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; } - -.table > thead > tr > td.active, -.table > thead > tr > th.active, -.table > thead > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; } - -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; } - -.table > thead > tr > td.success, -.table > thead > tr > th.success, -.table > thead > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th { - background-color: #dff0d8; } - -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; } - -.table > thead > tr > td.info, -.table > thead > tr > th.info, -.table > thead > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #d9edf7; } - -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; } - -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, -.table > thead > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; } - -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; } - -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, -.table > thead > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f2dede; } - -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; } - -.table-responsive { - min-height: .01%; - overflow-x: auto; } - @media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; } - .table-responsive > .table { - margin-bottom: 0; } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; } - .table-responsive > .table-bordered { - border: 0; } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; } } - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; } - -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: 700; } - -input[type=\\"search\\"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - appearance: none; } - -input[type=\\"radio\\"], -input[type=\\"checkbox\\"] { - margin: 4px 0 0; - margin-top: 1px \\\\9; - line-height: normal; } - input[type=\\"radio\\"][disabled], input[type=\\"radio\\"].disabled, - fieldset[disabled] input[type=\\"radio\\"], - input[type=\\"checkbox\\"][disabled], - input[type=\\"checkbox\\"].disabled, - fieldset[disabled] - input[type=\\"checkbox\\"] { - cursor: not-allowed; } - -input[type=\\"file\\"] { - display: block; } - -input[type=\\"range\\"] { - display: block; - width: 100%; } - -select[multiple], -select[size] { - height: auto; } - -input[type=\\"file\\"]:focus, -input[type=\\"radio\\"]:focus, -input[type=\\"checkbox\\"]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857; - color: #555555; } - -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857; - color: #555555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } - .form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); } - .form-control::-moz-placeholder { - color: #999; - opacity: 1; } - .form-control:-ms-input-placeholder { - color: #999; } - .form-control::-webkit-input-placeholder { - color: #999; } - .form-control::-ms-expand { - background-color: transparent; - border: 0; } - .form-control[disabled], .form-control[readonly], - fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; } - .form-control[disabled], - fieldset[disabled] .form-control { - cursor: not-allowed; } - -textarea.form-control { - height: auto; } - -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type=\\"date\\"].form-control, - input[type=\\"time\\"].form-control, - input[type=\\"datetime-local\\"].form-control, - input[type=\\"month\\"].form-control { - line-height: 34px; } - input[type=\\"date\\"].input-sm, .input-group-sm > input.form-control[type=\\"date\\"], - .input-group-sm > input.input-group-addon[type=\\"date\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-sm input[type=\\"date\\"], - input[type=\\"time\\"].input-sm, - .input-group-sm > input.form-control[type=\\"time\\"], - .input-group-sm > input.input-group-addon[type=\\"time\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-sm - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-sm, - .input-group-sm > input.form-control[type=\\"datetime-local\\"], - .input-group-sm > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-sm - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-sm, - .input-group-sm > input.form-control[type=\\"month\\"], - .input-group-sm > input.input-group-addon[type=\\"month\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-sm - input[type=\\"month\\"] { - line-height: 30px; } - input[type=\\"date\\"].input-lg, .input-group-lg > input.form-control[type=\\"date\\"], - .input-group-lg > input.input-group-addon[type=\\"date\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-lg input[type=\\"date\\"], - input[type=\\"time\\"].input-lg, - .input-group-lg > input.form-control[type=\\"time\\"], - .input-group-lg > input.input-group-addon[type=\\"time\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-lg - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-lg, - .input-group-lg > input.form-control[type=\\"datetime-local\\"], - .input-group-lg > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-lg - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-lg, - .input-group-lg > input.form-control[type=\\"month\\"], - .input-group-lg > input.input-group-addon[type=\\"month\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-lg - input[type=\\"month\\"] { - line-height: 46px; } } - -.form-group { - margin-bottom: 15px; } - -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; } - .radio.disabled label, - fieldset[disabled] .radio label, - .checkbox.disabled label, - fieldset[disabled] - .checkbox label { - cursor: not-allowed; } - .radio label, - .checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; } - -.radio input[type=\\"radio\\"], -.radio-inline input[type=\\"radio\\"], -.checkbox input[type=\\"checkbox\\"], -.checkbox-inline input[type=\\"checkbox\\"] { - position: absolute; - margin-top: 4px \\\\9; - margin-left: -20px; } - -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; } - -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - vertical-align: middle; - cursor: pointer; } - .radio-inline.disabled, - fieldset[disabled] .radio-inline, - .checkbox-inline.disabled, - fieldset[disabled] - .checkbox-inline { - cursor: not-allowed; } - -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; } - -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; } - .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, - .input-group-lg > .form-control-static.input-group-addon, - .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, - .input-group-sm > .form-control-static.input-group-addon, - .input-group-sm > .input-group-btn > .form-control-static.btn { - padding-right: 0; - padding-left: 0; } - -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } - -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 30px; - line-height: 30px; } - -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select.form-control[multiple], -.input-group-sm > select.input-group-addon[multiple], -.input-group-sm > .input-group-btn > select.btn[multiple] { - height: auto; } - -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } - -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; } - -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; } - -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; } - -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } - -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 46px; - line-height: 46px; } - -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select.form-control[multiple], -.input-group-lg > select.input-group-addon[multiple], -.input-group-lg > .input-group-btn > select.btn[multiple] { - height: auto; } - -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } - -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; } - -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; } - -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.33333; } - -.has-feedback { - position: relative; } - .has-feedback .form-control { - padding-right: 42.5px; } - -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; } - -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; } - -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; } - -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; } - -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; } - -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; } - -.has-success .form-control-feedback { - color: #3c763d; } - -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; } - -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; } - -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; } - -.has-warning .form-control-feedback { - color: #8a6d3b; } - -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; } - -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; } - -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; } - -.has-error .form-control-feedback { - color: #a94442; } - -.has-feedback label ~ .form-control-feedback { - top: 25px; } - -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; } - -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; } - -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .form-inline .form-control-static { - display: inline-block; } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; } - .form-inline .input-group > .form-control { - width: 100%; } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; } - .form-inline .radio input[type=\\"radio\\"], - .form-inline .checkbox input[type=\\"checkbox\\"] { - position: relative; - margin-left: 0; } - .form-inline .has-feedback .form-control-feedback { - top: 0; } } - -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; } - -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; } - -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; } - .form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: \\" \\"; } - .form-horizontal .form-group:after { - clear: both; } - -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; } } - -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; } - -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; } } - -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; } } - -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; } - .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - .btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; } - .btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn.disabled, .btn[disabled], - fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - opacity: 0.65; - -webkit-box-shadow: none; - box-shadow: none; } - -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; } - -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; } - .btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; } - .btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; } - .btn-default:active, .btn-default.active, - .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - background-image: none; - border-color: #adadad; } - .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, - .open > .btn-default.dropdown-toggle:hover, - .open > .btn-default.dropdown-toggle:focus, - .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; } - .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, - fieldset[disabled] .btn-default:hover, - fieldset[disabled] .btn-default:focus, - fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; } - .btn-default .badge { - color: #fff; - background-color: #333; } - -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; } - .btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; } - .btn-primary:active, .btn-primary.active, - .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - background-image: none; - border-color: #204d74; } - .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, - .open > .btn-primary.dropdown-toggle:hover, - .open > .btn-primary.dropdown-toggle:focus, - .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; } - .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, - fieldset[disabled] .btn-primary:hover, - fieldset[disabled] .btn-primary:focus, - fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary .badge { - color: #337ab7; - background-color: #fff; } - -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; } - .btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; } - .btn-success:active, .btn-success.active, - .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - background-image: none; - border-color: #398439; } - .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, - .open > .btn-success.dropdown-toggle:hover, - .open > .btn-success.dropdown-toggle:focus, - .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; } - .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, - fieldset[disabled] .btn-success:hover, - fieldset[disabled] .btn-success:focus, - fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success .badge { - color: #5cb85c; - background-color: #fff; } - -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; } - .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; } - .btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; } - .btn-info:active, .btn-info.active, - .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - background-image: none; - border-color: #269abc; } - .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, - .open > .btn-info.dropdown-toggle:hover, - .open > .btn-info.dropdown-toggle:focus, - .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; } - .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, - fieldset[disabled] .btn-info:hover, - fieldset[disabled] .btn-info:focus, - fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; } - .btn-info .badge { - color: #5bc0de; - background-color: #fff; } - -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; } - .btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; } - .btn-warning:active, .btn-warning.active, - .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - background-image: none; - border-color: #d58512; } - .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, - .open > .btn-warning.dropdown-toggle:hover, - .open > .btn-warning.dropdown-toggle:focus, - .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; } - .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, - fieldset[disabled] .btn-warning:hover, - fieldset[disabled] .btn-warning:focus, - fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning .badge { - color: #f0ad4e; - background-color: #fff; } - -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; } - .btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; } - .btn-danger:active, .btn-danger.active, - .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - background-image: none; - border-color: #ac2925; } - .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, - .open > .btn-danger.dropdown-toggle:hover, - .open > .btn-danger.dropdown-toggle:focus, - .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; } - .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, - fieldset[disabled] .btn-danger:hover, - fieldset[disabled] .btn-danger:focus, - fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger .badge { - color: #d9534f; - background-color: #fff; } - -.btn-link { - font-weight: 400; - color: #337ab7; - border-radius: 0; } - .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], - fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; } - .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; } - .btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; } - .btn-link[disabled]:hover, .btn-link[disabled]:focus, - fieldset[disabled] .btn-link:hover, - fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; } - -.btn-lg, .btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } - -.btn-sm, .btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } - -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } - -.btn-block { - display: block; - width: 100%; } - -.btn-block + .btn-block { - margin-top: 5px; } - -input[type=\\"submit\\"].btn-block, -input[type=\\"reset\\"].btn-block, -input[type=\\"button\\"].btn-block { - width: 100%; } - -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; } - .fade.in { - opacity: 1; } - -.collapse { - display: none; } - .collapse.in { - display: block; } - -tr.collapse.in { - display: table-row; } - -tbody.collapse.in { - display: table-row-group; } - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; } - -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \\\\9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; } - -.dropup, -.dropdown { - position: relative; } - -.dropdown-toggle:focus { - outline: 0; } - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); } - .dropdown-menu.pull-right { - right: 0; - left: auto; } - .dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.42857; - color: #333333; - white-space: nowrap; } - .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; } - -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; } - -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; } - -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } - -.open > .dropdown-menu { - display: block; } - -.open > a { - outline: 0; } - -.dropdown-menu-right { - right: 0; - left: auto; } - -.dropdown-menu-left { - right: auto; - left: 0; } - -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857; - color: #777777; - white-space: nowrap; } - -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; } - -.pull-right > .dropdown-menu { - right: 0; - left: auto; } - -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: \\"\\"; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \\\\9; } - -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; } - -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; } } - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - float: left; } - .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, - .btn-group-vertical > .btn:hover, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 2; } - -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; } - -.btn-toolbar { - margin-left: -5px; } - .btn-toolbar:before, .btn-toolbar:after { - display: table; - content: \\" \\"; } - .btn-toolbar:after { - clear: both; } - .btn-toolbar .btn, - .btn-toolbar .btn-group, - .btn-toolbar .input-group { - float: left; } - .btn-toolbar > .btn, - .btn-toolbar > .btn-group, - .btn-toolbar > .input-group { - margin-left: 5px; } - -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; } - -.btn-group > .btn:first-child { - margin-left: 0; } - .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.btn-group > .btn-group { - float: left; } - -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } - -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; } - -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; } - -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; } - -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; } - -.btn .caret { - margin-left: 0; } - -.btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; } - -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; } - -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; } - -.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { - display: table; - content: \\" \\"; } - -.btn-group-vertical > .btn-group:after { - clear: both; } - -.btn-group-vertical > .btn-group > .btn { - float: none; } - -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; } - -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; } - -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } - -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } - -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; } - .btn-group-justified > .btn, - .btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; } - .btn-group-justified > .btn-group .btn { - width: 100%; } - .btn-group-justified > .btn-group .dropdown-menu { - left: auto; } - -[data-toggle=\\"buttons\\"] > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn input[type=\\"checkbox\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"checkbox\\"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - -.input-group { - position: relative; - display: table; - border-collapse: separate; } - .input-group[class*=\\"col-\\"] { - float: none; - padding-right: 0; - padding-left: 0; } - .input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; } - .input-group .form-control:focus { - z-index: 3; } - -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; } - .input-group-addon:not(:first-child):not(:last-child), - .input-group-btn:not(:first-child):not(:last-child), - .input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; } - -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; } - -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: 400; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #ccc; - border-radius: 4px; } - .input-group-addon.input-sm, - .input-group-sm > .input-group-addon, - .input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; } - .input-group-addon.input-lg, - .input-group-lg > .input-group-addon, - .input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; } - .input-group-addon input[type=\\"radio\\"], - .input-group-addon input[type=\\"checkbox\\"] { - margin-top: 0; } - -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group-addon:first-child { - border-right: 0; } - -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.input-group-addon:last-child { - border-left: 0; } - -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; } - .input-group-btn > .btn { - position: relative; } - .input-group-btn > .btn + .btn { - margin-left: -1px; } - .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; } - .input-group-btn:first-child > .btn, - .input-group-btn:first-child > .btn-group { - margin-right: -1px; } - .input-group-btn:last-child > .btn, - .input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; } - -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .nav:before, .nav:after { - display: table; - content: \\" \\"; } - .nav:after { - clear: both; } - .nav > li { - position: relative; - display: block; } - .nav > li > a { - position: relative; - display: block; - padding: 10px 15px; } - .nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .nav > li.disabled > a { - color: #777777; } - .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; } - .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; } - .nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .nav > li > a > img { - max-width: none; } - -.nav-tabs { - border-bottom: 1px solid #ddd; } - .nav-tabs > li { - float: left; - margin-bottom: -1px; } - .nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; } - .nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; } - .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; } - -.nav-pills > li { - float: left; } - .nav-pills > li > a { - border-radius: 4px; } - .nav-pills > li + li { - margin-left: 2px; } - .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; } - -.nav-stacked > li { - float: none; } - .nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; } - -.nav-justified, .nav-tabs.nav-justified { - width: 100%; } - .nav-justified > li, .nav-tabs.nav-justified > li { - float: none; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; } - .nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; } - @media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; } } - -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; } - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; } - @media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; } } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; } - .navbar:before, .navbar:after { - display: table; - content: \\" \\"; } - .navbar:after { - clear: both; } - @media (min-width: 768px) { - .navbar { - border-radius: 4px; } } - -.navbar-header:before, .navbar-header:after { - display: table; - content: \\" \\"; } - -.navbar-header:after { - clear: both; } - -@media (min-width: 768px) { - .navbar-header { - float: left; } } - -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; } - .navbar-collapse:before, .navbar-collapse:after { - display: table; - content: \\" \\"; } - .navbar-collapse:after { - clear: both; } - .navbar-collapse.in { - overflow-y: auto; } - @media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; } - .navbar-collapse.in { - overflow-y: visible; } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; } } - -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; } - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 340px; } - @media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; } } - @media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; } } - -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; } - -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; } - -.container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; } - @media (min-width: 768px) { - .container > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-header, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; } } - -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; } - @media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; } } - -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; } - .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; } - .navbar-brand > img { - display: block; } - @media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; } } - -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-right: 15px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; } - .navbar-toggle:focus { - outline: 0; } - .navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; } - .navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; } - @media (min-width: 768px) { - .navbar-toggle { - display: none; } } - -.navbar-nav { - margin: 7.5px -15px; } - .navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; } - @media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; } } - @media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; } - .navbar-nav > li { - float: left; } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; } } - -.navbar-form { - padding: 10px 15px; - margin-right: -15px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px; } - @media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .navbar-form .form-control-static { - display: inline-block; } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; } - .navbar-form .input-group > .form-control { - width: 100%; } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; } - .navbar-form .radio input[type=\\"radio\\"], - .navbar-form .checkbox input[type=\\"checkbox\\"] { - position: relative; - margin-left: 0; } - .navbar-form .has-feedback .form-control-feedback { - top: 0; } } - @media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; } - .navbar-form .form-group:last-child { - margin-bottom: 0; } } - @media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; } } - -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; } - .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 10px; - margin-bottom: 10px; } - .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 14px; - margin-bottom: 14px; } - -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; } - @media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; } } - -@media (min-width: 768px) { - .navbar-left { - float: left !important; } - .navbar-right { - float: right !important; - margin-right: -15px; } - .navbar-right ~ .navbar-right { - margin-right: 0; } } - -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; } - .navbar-default .navbar-brand { - color: #777; } - .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; } - .navbar-default .navbar-text { - color: #777; } - .navbar-default .navbar-nav > li > a { - color: #777; } - .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; } - .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; } - @media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; } } - .navbar-default .navbar-toggle { - border-color: #ddd; } - .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; } - .navbar-default .navbar-toggle .icon-bar { - background-color: #888; } - .navbar-default .navbar-collapse, - .navbar-default .navbar-form { - border-color: #e7e7e7; } - .navbar-default .navbar-link { - color: #777; } - .navbar-default .navbar-link:hover { - color: #333; } - .navbar-default .btn-link { - color: #777; } - .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; } - .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, - fieldset[disabled] .navbar-default .btn-link:hover, - fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; } - -.navbar-inverse { - background-color: #222; - border-color: #090909; } - .navbar-inverse .navbar-brand { - color: #9d9d9d; } - .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-text { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; } - .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #090909; } - @media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; } } - .navbar-inverse .navbar-toggle { - border-color: #333; } - .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; } - .navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; } - .navbar-inverse .navbar-collapse, - .navbar-inverse .navbar-form { - border-color: #101010; } - .navbar-inverse .navbar-link { - color: #9d9d9d; } - .navbar-inverse .navbar-link:hover { - color: #fff; } - .navbar-inverse .btn-link { - color: #9d9d9d; } - .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; } - .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, - fieldset[disabled] .navbar-inverse .btn-link:hover, - fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; } - -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; } - .breadcrumb > li { - display: inline-block; } - .breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: \\"/ \\"; } - .breadcrumb > .active { - color: #777777; } - -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; } - .pagination > li { - display: inline; } - .pagination > li > a, - .pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; } - .pagination > li > a:hover, .pagination > li > a:focus, - .pagination > li > span:hover, - .pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; } - .pagination > li:first-child > a, - .pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .pagination > li:last-child > a, - .pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; } - .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, - .pagination > .active > span, - .pagination > .active > span:hover, - .pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; } - .pagination > .disabled > span, - .pagination > .disabled > span:hover, - .pagination > .disabled > span:focus, - .pagination > .disabled > a, - .pagination > .disabled > a:hover, - .pagination > .disabled > a:focus { - color: #777777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; } - -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; } - -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; } - -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; } - -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; } - -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; } - .pager:before, .pager:after { - display: table; - content: \\" \\"; } - .pager:after { - clear: both; } - .pager li { - display: inline; } - .pager li > a, - .pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; } - .pager li > a:hover, - .pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .pager .next > a, - .pager .next > span { - float: right; } - .pager .previous > a, - .pager .previous > span { - float: left; } - .pager .disabled > a, - .pager .disabled > a:hover, - .pager .disabled > a:focus, - .pager .disabled > span { - color: #777777; - cursor: not-allowed; - background-color: #fff; } - -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; } - .label:empty { - display: none; } - .btn .label { - position: relative; - top: -1px; } - -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; } - -.label-default { - background-color: #777777; } - .label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; } - -.label-primary { - background-color: #337ab7; } - .label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; } - -.label-success { - background-color: #5cb85c; } - .label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; } - -.label-info { - background-color: #5bc0de; } - .label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; } - -.label-warning { - background-color: #f0ad4e; } - .label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; } - -.label-danger { - background-color: #d9534f; } - .label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; } - -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777777; - border-radius: 10px; } - .badge:empty { - display: none; } - .btn .badge { - position: relative; - top: -1px; } - .btn-xs .badge, .btn-group-xs > .btn .badge, - .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; } - .list-group-item.active > .badge, - .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; } - .list-group-item > .badge { - float: right; } - .list-group-item > .badge + .badge { - margin-right: 5px; } - .nav-pills > li > a > .badge { - margin-left: 3px; } - -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; } - -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; } - .jumbotron h1, - .jumbotron .h1 { - color: inherit; } - .jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; } - .jumbotron > hr { - border-top-color: #d5d5d5; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; } - .jumbotron .container { - max-width: 100%; } - @media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; } } - -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; } - .thumbnail > img, - .thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-right: auto; - margin-left: auto; } - .thumbnail .caption { - padding: 9px; - color: #333333; } - -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; } - -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; } - .alert h4 { - margin-top: 0; - color: inherit; } - .alert .alert-link { - font-weight: bold; } - .alert > p, - .alert > ul { - margin-bottom: 0; } - .alert > p + p { - margin-top: 5px; } - -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; } - .alert-dismissable .close, - .alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; } - -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; } - .alert-success hr { - border-top-color: #c9e2b3; } - .alert-success .alert-link { - color: #2b542c; } - -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; } - .alert-info hr { - border-top-color: #a6e1ec; } - .alert-info .alert-link { - color: #245269; } - -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; } - .alert-warning hr { - border-top-color: #f7e1b5; } - .alert-warning .alert-link { - color: #66512c; } - -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; } - .alert-danger hr { - border-top-color: #e4b9c0; } - .alert-danger .alert-link { - color: #843534; } - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; } - to { - background-position: 0 0; } } - -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; } - to { - background-position: 0 0; } } - -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } - -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; } - -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; } - -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; } - -.progress-bar-success { - background-color: #5cb85c; } - .progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } - -.progress-bar-info { - background-color: #5bc0de; } - .progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } - -.progress-bar-warning { - background-color: #f0ad4e; } - .progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } - -.progress-bar-danger { - background-color: #d9534f; } - .progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } - -.media { - margin-top: 15px; } - .media:first-child { - margin-top: 0; } - -.media, -.media-body { - overflow: hidden; - zoom: 1; } - -.media-body { - width: 10000px; } - -.media-object { - display: block; } - .media-object.img-thumbnail { - max-width: none; } - -.media-right, -.media > .pull-right { - padding-left: 10px; } - -.media-left, -.media > .pull-left { - padding-right: 10px; } - -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; } - -.media-middle { - vertical-align: middle; } - -.media-bottom { - vertical-align: bottom; } - -.media-heading { - margin-top: 0; - margin-bottom: 5px; } - -.media-list { - padding-left: 0; - list-style: none; } - -.list-group { - padding-left: 0; - margin-bottom: 20px; } - -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; } - .list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - .list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } - .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - color: #777777; - cursor: not-allowed; - background-color: #eeeeee; } - .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; } - .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; } - .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .list-group-item.active .list-group-item-heading, - .list-group-item.active .list-group-item-heading > small, - .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, - .list-group-item.active:hover .list-group-item-heading > small, - .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, - .list-group-item.active:focus .list-group-item-heading > small, - .list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; } - .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; } - -a.list-group-item, -button.list-group-item { - color: #555; } - a.list-group-item .list-group-item-heading, - button.list-group-item .list-group-item-heading { - color: #333; } - a.list-group-item:hover, a.list-group-item:focus, - button.list-group-item:hover, - button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; } - -button.list-group-item { - width: 100%; - text-align: left; } - -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; } - -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; } - a.list-group-item-success .list-group-item-heading, - button.list-group-item-success .list-group-item-heading { - color: inherit; } - a.list-group-item-success:hover, a.list-group-item-success:focus, - button.list-group-item-success:hover, - button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; } - a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, - button.list-group-item-success.active, - button.list-group-item-success.active:hover, - button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; } - -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; } - -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; } - a.list-group-item-info .list-group-item-heading, - button.list-group-item-info .list-group-item-heading { - color: inherit; } - a.list-group-item-info:hover, a.list-group-item-info:focus, - button.list-group-item-info:hover, - button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; } - a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, - button.list-group-item-info.active, - button.list-group-item-info.active:hover, - button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; } - -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; } - -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; } - a.list-group-item-warning .list-group-item-heading, - button.list-group-item-warning .list-group-item-heading { - color: inherit; } - a.list-group-item-warning:hover, a.list-group-item-warning:focus, - button.list-group-item-warning:hover, - button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; } - a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, - button.list-group-item-warning.active, - button.list-group-item-warning.active:hover, - button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; } - -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; } - -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; } - a.list-group-item-danger .list-group-item-heading, - button.list-group-item-danger .list-group-item-heading { - color: inherit; } - a.list-group-item-danger:hover, a.list-group-item-danger:focus, - button.list-group-item-danger:hover, - button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; } - a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, - button.list-group-item-danger.active, - button.list-group-item-danger.active:hover, - button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; } - -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; } - -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; } - -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } - -.panel-body { - padding: 15px; } - .panel-body:before, .panel-body:after { - display: table; - content: \\" \\"; } - .panel-body:after { - clear: both; } - -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel-heading > .dropdown .dropdown-toggle { - color: inherit; } - -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; } - .panel-title > a, - .panel-title > small, - .panel-title > .small, - .panel-title > small > a, - .panel-title > .small > a { - color: inherit; } - -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; } - .panel > .list-group .list-group-item, - .panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; } - .panel > .list-group:first-child .list-group-item:first-child, - .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .list-group:last-child .list-group-item:last-child, - .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; } - -.list-group + .panel-footer { - border-top-width: 0; } - -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; } - .panel > .table caption, - .panel > .table-responsive > .table caption, - .panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; } - -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; } - -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; } - -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; } - -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; } - -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; } - .panel > .table-bordered > thead > tr > th:first-child, - .panel > .table-bordered > thead > tr > td:first-child, - .panel > .table-bordered > tbody > tr > th:first-child, - .panel > .table-bordered > tbody > tr > td:first-child, - .panel > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-bordered > tfoot > tr > td:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .panel > .table-bordered > thead > tr > th:last-child, - .panel > .table-bordered > thead > tr > td:last-child, - .panel > .table-bordered > tbody > tr > th:last-child, - .panel > .table-bordered > tbody > tr > td:last-child, - .panel > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-bordered > tfoot > tr > td:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .panel > .table-bordered > thead > tr:first-child > td, - .panel > .table-bordered > thead > tr:first-child > th, - .panel > .table-bordered > tbody > tr:first-child > td, - .panel > .table-bordered > tbody > tr:first-child > th, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; } - .panel > .table-bordered > tbody > tr:last-child > td, - .panel > .table-bordered > tbody > tr:last-child > th, - .panel > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-bordered > tfoot > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; } - -.panel > .table-responsive { - margin-bottom: 0; - border: 0; } - -.panel-group { - margin-bottom: 20px; } - .panel-group .panel { - margin-bottom: 0; - border-radius: 4px; } - .panel-group .panel + .panel { - margin-top: 5px; } - .panel-group .panel-heading { - border-bottom: 0; } - .panel-group .panel-heading + .panel-collapse > .panel-body, - .panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; } - .panel-group .panel-footer { - border-top: 0; } - .panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; } - -.panel-default { - border-color: #ddd; } - .panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; } - .panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; } - .panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; } - .panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; } - -.panel-primary { - border-color: #337ab7; } - .panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; } - .panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; } - .panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; } - -.panel-success { - border-color: #d6e9c6; } - .panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; } - .panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; } - .panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; } - .panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; } - -.panel-info { - border-color: #bce8f1; } - .panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; } - .panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; } - .panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; } - .panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; } - -.panel-warning { - border-color: #faebcc; } - .panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; } - .panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; } - .panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; } - .panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; } - -.panel-danger { - border-color: #ebccd1; } - .panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; } - .panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; } - .panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; } - .panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; } - -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; } - .embed-responsive .embed-responsive-item, - .embed-responsive iframe, - .embed-responsive embed, - .embed-responsive object, - .embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; } - -.embed-responsive-16by9 { - padding-bottom: 56.25%; } - -.embed-responsive-4by3 { - padding-bottom: 75%; } - -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } - .well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); } - -.well-lg { - padding: 24px; - border-radius: 6px; } - -.well-sm { - padding: 9px; - border-radius: 3px; } - -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: 0.2; } - .close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: 0.5; } - -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - appearance: none; } - -.modal-open { - overflow: hidden; } - -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; } - .modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; } - .modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); } - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; } - -.modal-dialog { - position: relative; - width: auto; - margin: 10px; } - -.modal-content { - position: relative; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - outline: 0; } - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; } - .modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; } - .modal-backdrop.in { - filter: alpha(opacity=50); - opacity: 0.5; } - -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; } - .modal-header:before, .modal-header:after { - display: table; - content: \\" \\"; } - .modal-header:after { - clear: both; } - -.modal-header .close { - margin-top: -2px; } - -.modal-title { - margin: 0; - line-height: 1.42857; } - -.modal-body { - position: relative; - padding: 15px; } - -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; } - .modal-footer:before, .modal-footer:after { - display: table; - content: \\" \\"; } - .modal-footer:after { - clear: both; } - .modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; } - .modal-footer .btn-group .btn + .btn { - margin-left: -1px; } - .modal-footer .btn-block + .btn-block { - margin-left: 0; } - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; } - -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } - .modal-sm { - width: 300px; } } - -@media (min-width: 992px) { - .modal-lg { - width: 900px; } } - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.42857; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 12px; - filter: alpha(opacity=0); - opacity: 0; } - .tooltip.in { - filter: alpha(opacity=90); - opacity: 0.9; } - .tooltip.top { - padding: 5px 0; - margin-top: -3px; } - .tooltip.right { - padding: 0 5px; - margin-left: 3px; } - .tooltip.bottom { - padding: 5px 0; - margin-top: 3px; } - .tooltip.left { - padding: 0 5px; - margin-left: -3px; } - .tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; } - .tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; } - .tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; } - -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; } - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.42857; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 14px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } - .popover.top { - margin-top: -10px; } - .popover.right { - margin-left: 10px; } - .popover.bottom { - margin-top: 10px; } - .popover.left { - margin-left: -10px; } - .popover > .arrow { - border-width: 11px; } - .popover > .arrow, .popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; } - .popover > .arrow:after { - content: \\"\\"; - border-width: 10px; } - .popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; } - .popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-color: #fff; - border-bottom-width: 0; } - .popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; } - .popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: \\" \\"; - border-right-color: #fff; - border-left-width: 0; } - .popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-width: 0; - border-bottom-color: #fff; } - .popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); } - .popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: \\" \\"; - border-right-width: 0; - border-left-color: #fff; } - -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; } - -.popover-content { - padding: 9px 14px; } - -.carousel { - position: relative; } - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; } - .carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; } - .carousel-inner > .item > img, - .carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; } - @media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; } } - .carousel-inner > .active, - .carousel-inner > .next, - .carousel-inner > .prev { - display: block; } - .carousel-inner > .active { - left: 0; } - .carousel-inner > .next, - .carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; } - .carousel-inner > .next { - left: 100%; } - .carousel-inner > .prev { - left: -100%; } - .carousel-inner > .next.left, - .carousel-inner > .prev.right { - left: 0; } - .carousel-inner > .active.left { - left: -100%; } - .carousel-inner > .active.right { - left: 100%; } - -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: 0.5; } - .carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - filter: alpha(opacity=90); - opacity: 0.9; } - .carousel-control .icon-prev, - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; } - .carousel-control .icon-prev, - .carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; } - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; } - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; } - .carousel-control .icon-prev:before { - content: \\"\\\\2039\\"; } - .carousel-control .icon-next:before { - content: \\"\\\\203a\\"; } - -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; } - .carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \\\\9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; } - .carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; } - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .carousel-caption .btn { - text-shadow: none; } - -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; } - .carousel-indicators { - bottom: 20px; } } - -.clearfix:before, .clearfix:after { - display: table; - content: \\" \\"; } - -.clearfix:after { - clear: both; } - -.center-block { - display: block; - margin-right: auto; - margin-left: auto; } - -.pull-right { - float: right !important; } - -.pull-left { - float: left !important; } - -.hide { - display: none !important; } - -.show { - display: block !important; } - -.invisible { - visibility: hidden; } - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; } - -.hidden { - display: none !important; } - -.affix { - position: fixed; } - -@-ms-viewport { - width: device-width; } - -.visible-xs { - display: none !important; } - -.visible-sm { - display: none !important; } - -.visible-md { - display: none !important; } - -.visible-lg { - display: none !important; } - -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; } - -@media (max-width: 767px) { - .visible-xs { - display: block !important; } - table.visible-xs { - display: table !important; } - tr.visible-xs { - display: table-row !important; } - th.visible-xs, - td.visible-xs { - display: table-cell !important; } } - -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; } } - -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; } } - -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; } } - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; } - table.visible-sm { - display: table !important; } - tr.visible-sm { - display: table-row !important; } - th.visible-sm, - td.visible-sm { - display: table-cell !important; } } - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; } } - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; } } - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; } } - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; } - table.visible-md { - display: table !important; } - tr.visible-md { - display: table-row !important; } - th.visible-md, - td.visible-md { - display: table-cell !important; } } - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; } } - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; } } - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; } } - -@media (min-width: 1200px) { - .visible-lg { - display: block !important; } - table.visible-lg { - display: table !important; } - tr.visible-lg { - display: table-row !important; } - th.visible-lg, - td.visible-lg { - display: table-cell !important; } } - -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; } } - -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; } } - -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; } } - -@media (max-width: 767px) { - .hidden-xs { - display: none !important; } } - -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; } } - -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; } } - -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; } } - -.visible-print { - display: none !important; } - -@media print { - .visible-print { - display: block !important; } - table.visible-print { - display: table !important; } - tr.visible-print { - display: table-row !important; } - th.visible-print, - td.visible-print { - display: table-cell !important; } } - -.visible-print-block { - display: none !important; } - @media print { - .visible-print-block { - display: block !important; } } - -.visible-print-inline { - display: none !important; } - @media print { - .visible-print-inline { - display: inline !important; } } - -.visible-print-inline-block { - display: none !important; } - @media print { - .visible-print-inline-block { - display: inline-block !important; } } - -@media print { - .hidden-print { - display: none !important; } } -" -`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with the "bootstrap-sass" package, directly import (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -/*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; } - -body { - margin: 0; } - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; } - -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; } - -audio:not([controls]) { - display: none; - height: 0; } - -[hidden], -template { - display: none; } - -a { - background-color: transparent; } - -a:active, -a:hover { - outline: 0; } - -abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted; } - -b, -strong { - font-weight: bold; } - -dfn { - font-style: italic; } - -h1 { - font-size: 2em; - margin: 0.67em 0; } - -mark { - background: #ff0; - color: #000; } - -small { - font-size: 80%; } - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; } - -sup { - top: -0.5em; } - -sub { - bottom: -0.25em; } - -img { - border: 0; } - -svg:not(:root) { - overflow: hidden; } - -figure { - margin: 1em 40px; } - -hr { - box-sizing: content-box; - height: 0; } - -pre { - overflow: auto; } - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; } - -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; } - -button { - overflow: visible; } - -button, -select { - text-transform: none; } - -button, -html input[type=\\"button\\"], -input[type=\\"reset\\"], -input[type=\\"submit\\"] { - -webkit-appearance: button; - cursor: pointer; } - -button[disabled], -html input[disabled] { - cursor: default; } - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; } - -input { - line-height: normal; } - -input[type=\\"checkbox\\"], -input[type=\\"radio\\"] { - box-sizing: border-box; - padding: 0; } - -input[type=\\"number\\"]::-webkit-inner-spin-button, -input[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } - -input[type=\\"search\\"] { - -webkit-appearance: textfield; - box-sizing: content-box; } - -input[type=\\"search\\"]::-webkit-search-cancel-button, -input[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; } - -legend { - border: 0; - padding: 0; } - -textarea { - overflow: auto; } - -optgroup { - font-weight: bold; } - -table { - border-collapse: collapse; - border-spacing: 0; } - -td, -th { - padding: 0; } - -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - color: #000 !important; - text-shadow: none !important; - background: transparent !important; - box-shadow: none !important; } - a, - a:visited { - text-decoration: underline; } - a[href]:after { - content: \\" (\\" attr(href) \\")\\"; } - abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; } - a[href^=\\"#\\"]:after, - a[href^=\\"javascript:\\"]:after { - content: \\"\\"; } - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; } - thead { - display: table-header-group; } - tr, - img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } - .navbar { - display: none; } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; } - .label { - border: 1px solid #000; } - .table { - border-collapse: collapse !important; } - .table td, - .table th { - background-color: #fff !important; } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; } } - -@font-face { - font-family: \\"Glyphicons Halflings\\"; - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); } - -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: \\"Glyphicons Halflings\\"; - font-style: normal; - font-weight: 400; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } - -.glyphicon-asterisk:before { - content: \\"\\\\002a\\"; } - -.glyphicon-plus:before { - content: \\"\\\\002b\\"; } - -.glyphicon-euro:before, -.glyphicon-eur:before { - content: \\"\\\\20ac\\"; } - -.glyphicon-minus:before { - content: \\"\\\\2212\\"; } - -.glyphicon-cloud:before { - content: \\"\\\\2601\\"; } - -.glyphicon-envelope:before { - content: \\"\\\\2709\\"; } - -.glyphicon-pencil:before { - content: \\"\\\\270f\\"; } - -.glyphicon-glass:before { - content: \\"\\\\e001\\"; } - -.glyphicon-music:before { - content: \\"\\\\e002\\"; } - -.glyphicon-search:before { - content: \\"\\\\e003\\"; } - -.glyphicon-heart:before { - content: \\"\\\\e005\\"; } - -.glyphicon-star:before { - content: \\"\\\\e006\\"; } - -.glyphicon-star-empty:before { - content: \\"\\\\e007\\"; } - -.glyphicon-user:before { - content: \\"\\\\e008\\"; } - -.glyphicon-film:before { - content: \\"\\\\e009\\"; } - -.glyphicon-th-large:before { - content: \\"\\\\e010\\"; } - -.glyphicon-th:before { - content: \\"\\\\e011\\"; } - -.glyphicon-th-list:before { - content: \\"\\\\e012\\"; } - -.glyphicon-ok:before { - content: \\"\\\\e013\\"; } - -.glyphicon-remove:before { - content: \\"\\\\e014\\"; } - -.glyphicon-zoom-in:before { - content: \\"\\\\e015\\"; } - -.glyphicon-zoom-out:before { - content: \\"\\\\e016\\"; } - -.glyphicon-off:before { - content: \\"\\\\e017\\"; } - -.glyphicon-signal:before { - content: \\"\\\\e018\\"; } - -.glyphicon-cog:before { - content: \\"\\\\e019\\"; } - -.glyphicon-trash:before { - content: \\"\\\\e020\\"; } - -.glyphicon-home:before { - content: \\"\\\\e021\\"; } - -.glyphicon-file:before { - content: \\"\\\\e022\\"; } - -.glyphicon-time:before { - content: \\"\\\\e023\\"; } - -.glyphicon-road:before { - content: \\"\\\\e024\\"; } - -.glyphicon-download-alt:before { - content: \\"\\\\e025\\"; } - -.glyphicon-download:before { - content: \\"\\\\e026\\"; } - -.glyphicon-upload:before { - content: \\"\\\\e027\\"; } - -.glyphicon-inbox:before { - content: \\"\\\\e028\\"; } - -.glyphicon-play-circle:before { - content: \\"\\\\e029\\"; } - -.glyphicon-repeat:before { - content: \\"\\\\e030\\"; } - -.glyphicon-refresh:before { - content: \\"\\\\e031\\"; } - -.glyphicon-list-alt:before { - content: \\"\\\\e032\\"; } - -.glyphicon-lock:before { - content: \\"\\\\e033\\"; } - -.glyphicon-flag:before { - content: \\"\\\\e034\\"; } - -.glyphicon-headphones:before { - content: \\"\\\\e035\\"; } - -.glyphicon-volume-off:before { - content: \\"\\\\e036\\"; } - -.glyphicon-volume-down:before { - content: \\"\\\\e037\\"; } - -.glyphicon-volume-up:before { - content: \\"\\\\e038\\"; } - -.glyphicon-qrcode:before { - content: \\"\\\\e039\\"; } - -.glyphicon-barcode:before { - content: \\"\\\\e040\\"; } - -.glyphicon-tag:before { - content: \\"\\\\e041\\"; } - -.glyphicon-tags:before { - content: \\"\\\\e042\\"; } - -.glyphicon-book:before { - content: \\"\\\\e043\\"; } - -.glyphicon-bookmark:before { - content: \\"\\\\e044\\"; } - -.glyphicon-print:before { - content: \\"\\\\e045\\"; } - -.glyphicon-camera:before { - content: \\"\\\\e046\\"; } - -.glyphicon-font:before { - content: \\"\\\\e047\\"; } - -.glyphicon-bold:before { - content: \\"\\\\e048\\"; } - -.glyphicon-italic:before { - content: \\"\\\\e049\\"; } - -.glyphicon-text-height:before { - content: \\"\\\\e050\\"; } - -.glyphicon-text-width:before { - content: \\"\\\\e051\\"; } - -.glyphicon-align-left:before { - content: \\"\\\\e052\\"; } - -.glyphicon-align-center:before { - content: \\"\\\\e053\\"; } - -.glyphicon-align-right:before { - content: \\"\\\\e054\\"; } - -.glyphicon-align-justify:before { - content: \\"\\\\e055\\"; } - -.glyphicon-list:before { - content: \\"\\\\e056\\"; } - -.glyphicon-indent-left:before { - content: \\"\\\\e057\\"; } - -.glyphicon-indent-right:before { - content: \\"\\\\e058\\"; } - -.glyphicon-facetime-video:before { - content: \\"\\\\e059\\"; } - -.glyphicon-picture:before { - content: \\"\\\\e060\\"; } - -.glyphicon-map-marker:before { - content: \\"\\\\e062\\"; } - -.glyphicon-adjust:before { - content: \\"\\\\e063\\"; } - -.glyphicon-tint:before { - content: \\"\\\\e064\\"; } - -.glyphicon-edit:before { - content: \\"\\\\e065\\"; } - -.glyphicon-share:before { - content: \\"\\\\e066\\"; } - -.glyphicon-check:before { - content: \\"\\\\e067\\"; } - -.glyphicon-move:before { - content: \\"\\\\e068\\"; } - -.glyphicon-step-backward:before { - content: \\"\\\\e069\\"; } - -.glyphicon-fast-backward:before { - content: \\"\\\\e070\\"; } - -.glyphicon-backward:before { - content: \\"\\\\e071\\"; } - -.glyphicon-play:before { - content: \\"\\\\e072\\"; } - -.glyphicon-pause:before { - content: \\"\\\\e073\\"; } - -.glyphicon-stop:before { - content: \\"\\\\e074\\"; } - -.glyphicon-forward:before { - content: \\"\\\\e075\\"; } - -.glyphicon-fast-forward:before { - content: \\"\\\\e076\\"; } - -.glyphicon-step-forward:before { - content: \\"\\\\e077\\"; } - -.glyphicon-eject:before { - content: \\"\\\\e078\\"; } - -.glyphicon-chevron-left:before { - content: \\"\\\\e079\\"; } - -.glyphicon-chevron-right:before { - content: \\"\\\\e080\\"; } - -.glyphicon-plus-sign:before { - content: \\"\\\\e081\\"; } - -.glyphicon-minus-sign:before { - content: \\"\\\\e082\\"; } - -.glyphicon-remove-sign:before { - content: \\"\\\\e083\\"; } - -.glyphicon-ok-sign:before { - content: \\"\\\\e084\\"; } - -.glyphicon-question-sign:before { - content: \\"\\\\e085\\"; } - -.glyphicon-info-sign:before { - content: \\"\\\\e086\\"; } - -.glyphicon-screenshot:before { - content: \\"\\\\e087\\"; } - -.glyphicon-remove-circle:before { - content: \\"\\\\e088\\"; } - -.glyphicon-ok-circle:before { - content: \\"\\\\e089\\"; } - -.glyphicon-ban-circle:before { - content: \\"\\\\e090\\"; } - -.glyphicon-arrow-left:before { - content: \\"\\\\e091\\"; } - -.glyphicon-arrow-right:before { - content: \\"\\\\e092\\"; } - -.glyphicon-arrow-up:before { - content: \\"\\\\e093\\"; } - -.glyphicon-arrow-down:before { - content: \\"\\\\e094\\"; } - -.glyphicon-share-alt:before { - content: \\"\\\\e095\\"; } - -.glyphicon-resize-full:before { - content: \\"\\\\e096\\"; } - -.glyphicon-resize-small:before { - content: \\"\\\\e097\\"; } - -.glyphicon-exclamation-sign:before { - content: \\"\\\\e101\\"; } - -.glyphicon-gift:before { - content: \\"\\\\e102\\"; } - -.glyphicon-leaf:before { - content: \\"\\\\e103\\"; } - -.glyphicon-fire:before { - content: \\"\\\\e104\\"; } - -.glyphicon-eye-open:before { - content: \\"\\\\e105\\"; } - -.glyphicon-eye-close:before { - content: \\"\\\\e106\\"; } - -.glyphicon-warning-sign:before { - content: \\"\\\\e107\\"; } - -.glyphicon-plane:before { - content: \\"\\\\e108\\"; } - -.glyphicon-calendar:before { - content: \\"\\\\e109\\"; } - -.glyphicon-random:before { - content: \\"\\\\e110\\"; } - -.glyphicon-comment:before { - content: \\"\\\\e111\\"; } - -.glyphicon-magnet:before { - content: \\"\\\\e112\\"; } - -.glyphicon-chevron-up:before { - content: \\"\\\\e113\\"; } - -.glyphicon-chevron-down:before { - content: \\"\\\\e114\\"; } - -.glyphicon-retweet:before { - content: \\"\\\\e115\\"; } - -.glyphicon-shopping-cart:before { - content: \\"\\\\e116\\"; } - -.glyphicon-folder-close:before { - content: \\"\\\\e117\\"; } - -.glyphicon-folder-open:before { - content: \\"\\\\e118\\"; } - -.glyphicon-resize-vertical:before { - content: \\"\\\\e119\\"; } - -.glyphicon-resize-horizontal:before { - content: \\"\\\\e120\\"; } - -.glyphicon-hdd:before { - content: \\"\\\\e121\\"; } - -.glyphicon-bullhorn:before { - content: \\"\\\\e122\\"; } - -.glyphicon-bell:before { - content: \\"\\\\e123\\"; } - -.glyphicon-certificate:before { - content: \\"\\\\e124\\"; } - -.glyphicon-thumbs-up:before { - content: \\"\\\\e125\\"; } - -.glyphicon-thumbs-down:before { - content: \\"\\\\e126\\"; } - -.glyphicon-hand-right:before { - content: \\"\\\\e127\\"; } - -.glyphicon-hand-left:before { - content: \\"\\\\e128\\"; } - -.glyphicon-hand-up:before { - content: \\"\\\\e129\\"; } - -.glyphicon-hand-down:before { - content: \\"\\\\e130\\"; } - -.glyphicon-circle-arrow-right:before { - content: \\"\\\\e131\\"; } - -.glyphicon-circle-arrow-left:before { - content: \\"\\\\e132\\"; } - -.glyphicon-circle-arrow-up:before { - content: \\"\\\\e133\\"; } - -.glyphicon-circle-arrow-down:before { - content: \\"\\\\e134\\"; } - -.glyphicon-globe:before { - content: \\"\\\\e135\\"; } - -.glyphicon-wrench:before { - content: \\"\\\\e136\\"; } - -.glyphicon-tasks:before { - content: \\"\\\\e137\\"; } - -.glyphicon-filter:before { - content: \\"\\\\e138\\"; } - -.glyphicon-briefcase:before { - content: \\"\\\\e139\\"; } - -.glyphicon-fullscreen:before { - content: \\"\\\\e140\\"; } - -.glyphicon-dashboard:before { - content: \\"\\\\e141\\"; } - -.glyphicon-paperclip:before { - content: \\"\\\\e142\\"; } - -.glyphicon-heart-empty:before { - content: \\"\\\\e143\\"; } - -.glyphicon-link:before { - content: \\"\\\\e144\\"; } - -.glyphicon-phone:before { - content: \\"\\\\e145\\"; } - -.glyphicon-pushpin:before { - content: \\"\\\\e146\\"; } - -.glyphicon-usd:before { - content: \\"\\\\e148\\"; } - -.glyphicon-gbp:before { - content: \\"\\\\e149\\"; } - -.glyphicon-sort:before { - content: \\"\\\\e150\\"; } - -.glyphicon-sort-by-alphabet:before { - content: \\"\\\\e151\\"; } - -.glyphicon-sort-by-alphabet-alt:before { - content: \\"\\\\e152\\"; } - -.glyphicon-sort-by-order:before { - content: \\"\\\\e153\\"; } - -.glyphicon-sort-by-order-alt:before { - content: \\"\\\\e154\\"; } - -.glyphicon-sort-by-attributes:before { - content: \\"\\\\e155\\"; } - -.glyphicon-sort-by-attributes-alt:before { - content: \\"\\\\e156\\"; } - -.glyphicon-unchecked:before { - content: \\"\\\\e157\\"; } - -.glyphicon-expand:before { - content: \\"\\\\e158\\"; } - -.glyphicon-collapse-down:before { - content: \\"\\\\e159\\"; } - -.glyphicon-collapse-up:before { - content: \\"\\\\e160\\"; } - -.glyphicon-log-in:before { - content: \\"\\\\e161\\"; } - -.glyphicon-flash:before { - content: \\"\\\\e162\\"; } - -.glyphicon-log-out:before { - content: \\"\\\\e163\\"; } - -.glyphicon-new-window:before { - content: \\"\\\\e164\\"; } - -.glyphicon-record:before { - content: \\"\\\\e165\\"; } - -.glyphicon-save:before { - content: \\"\\\\e166\\"; } - -.glyphicon-open:before { - content: \\"\\\\e167\\"; } - -.glyphicon-saved:before { - content: \\"\\\\e168\\"; } - -.glyphicon-import:before { - content: \\"\\\\e169\\"; } - -.glyphicon-export:before { - content: \\"\\\\e170\\"; } - -.glyphicon-send:before { - content: \\"\\\\e171\\"; } - -.glyphicon-floppy-disk:before { - content: \\"\\\\e172\\"; } - -.glyphicon-floppy-saved:before { - content: \\"\\\\e173\\"; } - -.glyphicon-floppy-remove:before { - content: \\"\\\\e174\\"; } - -.glyphicon-floppy-save:before { - content: \\"\\\\e175\\"; } - -.glyphicon-floppy-open:before { - content: \\"\\\\e176\\"; } - -.glyphicon-credit-card:before { - content: \\"\\\\e177\\"; } - -.glyphicon-transfer:before { - content: \\"\\\\e178\\"; } - -.glyphicon-cutlery:before { - content: \\"\\\\e179\\"; } - -.glyphicon-header:before { - content: \\"\\\\e180\\"; } - -.glyphicon-compressed:before { - content: \\"\\\\e181\\"; } - -.glyphicon-earphone:before { - content: \\"\\\\e182\\"; } - -.glyphicon-phone-alt:before { - content: \\"\\\\e183\\"; } - -.glyphicon-tower:before { - content: \\"\\\\e184\\"; } - -.glyphicon-stats:before { - content: \\"\\\\e185\\"; } - -.glyphicon-sd-video:before { - content: \\"\\\\e186\\"; } - -.glyphicon-hd-video:before { - content: \\"\\\\e187\\"; } - -.glyphicon-subtitles:before { - content: \\"\\\\e188\\"; } - -.glyphicon-sound-stereo:before { - content: \\"\\\\e189\\"; } - -.glyphicon-sound-dolby:before { - content: \\"\\\\e190\\"; } - -.glyphicon-sound-5-1:before { - content: \\"\\\\e191\\"; } - -.glyphicon-sound-6-1:before { - content: \\"\\\\e192\\"; } - -.glyphicon-sound-7-1:before { - content: \\"\\\\e193\\"; } - -.glyphicon-copyright-mark:before { - content: \\"\\\\e194\\"; } - -.glyphicon-registration-mark:before { - content: \\"\\\\e195\\"; } - -.glyphicon-cloud-download:before { - content: \\"\\\\e197\\"; } - -.glyphicon-cloud-upload:before { - content: \\"\\\\e198\\"; } - -.glyphicon-tree-conifer:before { - content: \\"\\\\e199\\"; } - -.glyphicon-tree-deciduous:before { - content: \\"\\\\e200\\"; } - -.glyphicon-cd:before { - content: \\"\\\\e201\\"; } - -.glyphicon-save-file:before { - content: \\"\\\\e202\\"; } - -.glyphicon-open-file:before { - content: \\"\\\\e203\\"; } - -.glyphicon-level-up:before { - content: \\"\\\\e204\\"; } - -.glyphicon-copy:before { - content: \\"\\\\e205\\"; } - -.glyphicon-paste:before { - content: \\"\\\\e206\\"; } - -.glyphicon-alert:before { - content: \\"\\\\e209\\"; } - -.glyphicon-equalizer:before { - content: \\"\\\\e210\\"; } - -.glyphicon-king:before { - content: \\"\\\\e211\\"; } - -.glyphicon-queen:before { - content: \\"\\\\e212\\"; } - -.glyphicon-pawn:before { - content: \\"\\\\e213\\"; } - -.glyphicon-bishop:before { - content: \\"\\\\e214\\"; } - -.glyphicon-knight:before { - content: \\"\\\\e215\\"; } - -.glyphicon-baby-formula:before { - content: \\"\\\\e216\\"; } - -.glyphicon-tent:before { - content: \\"\\\\26fa\\"; } - -.glyphicon-blackboard:before { - content: \\"\\\\e218\\"; } - -.glyphicon-bed:before { - content: \\"\\\\e219\\"; } - -.glyphicon-apple:before { - content: \\"\\\\f8ff\\"; } - -.glyphicon-erase:before { - content: \\"\\\\e221\\"; } - -.glyphicon-hourglass:before { - content: \\"\\\\231b\\"; } - -.glyphicon-lamp:before { - content: \\"\\\\e223\\"; } - -.glyphicon-duplicate:before { - content: \\"\\\\e224\\"; } - -.glyphicon-piggy-bank:before { - content: \\"\\\\e225\\"; } - -.glyphicon-scissors:before { - content: \\"\\\\e226\\"; } - -.glyphicon-bitcoin:before { - content: \\"\\\\e227\\"; } - -.glyphicon-btc:before { - content: \\"\\\\e227\\"; } - -.glyphicon-xbt:before { - content: \\"\\\\e227\\"; } - -.glyphicon-yen:before { - content: \\"\\\\00a5\\"; } - -.glyphicon-jpy:before { - content: \\"\\\\00a5\\"; } - -.glyphicon-ruble:before { - content: \\"\\\\20bd\\"; } - -.glyphicon-rub:before { - content: \\"\\\\20bd\\"; } - -.glyphicon-scale:before { - content: \\"\\\\e230\\"; } - -.glyphicon-ice-lolly:before { - content: \\"\\\\e231\\"; } - -.glyphicon-ice-lolly-tasted:before { - content: \\"\\\\e232\\"; } - -.glyphicon-education:before { - content: \\"\\\\e233\\"; } - -.glyphicon-option-horizontal:before { - content: \\"\\\\e234\\"; } - -.glyphicon-option-vertical:before { - content: \\"\\\\e235\\"; } - -.glyphicon-menu-hamburger:before { - content: \\"\\\\e236\\"; } - -.glyphicon-modal-window:before { - content: \\"\\\\e237\\"; } - -.glyphicon-oil:before { - content: \\"\\\\e238\\"; } - -.glyphicon-grain:before { - content: \\"\\\\e239\\"; } - -.glyphicon-sunglasses:before { - content: \\"\\\\e240\\"; } - -.glyphicon-text-size:before { - content: \\"\\\\e241\\"; } - -.glyphicon-text-color:before { - content: \\"\\\\e242\\"; } - -.glyphicon-text-background:before { - content: \\"\\\\e243\\"; } - -.glyphicon-object-align-top:before { - content: \\"\\\\e244\\"; } - -.glyphicon-object-align-bottom:before { - content: \\"\\\\e245\\"; } - -.glyphicon-object-align-horizontal:before { - content: \\"\\\\e246\\"; } - -.glyphicon-object-align-left:before { - content: \\"\\\\e247\\"; } - -.glyphicon-object-align-vertical:before { - content: \\"\\\\e248\\"; } - -.glyphicon-object-align-right:before { - content: \\"\\\\e249\\"; } - -.glyphicon-triangle-right:before { - content: \\"\\\\e250\\"; } - -.glyphicon-triangle-left:before { - content: \\"\\\\e251\\"; } - -.glyphicon-triangle-bottom:before { - content: \\"\\\\e252\\"; } - -.glyphicon-triangle-top:before { - content: \\"\\\\e253\\"; } - -.glyphicon-console:before { - content: \\"\\\\e254\\"; } - -.glyphicon-superscript:before { - content: \\"\\\\e255\\"; } - -.glyphicon-subscript:before { - content: \\"\\\\e256\\"; } - -.glyphicon-menu-left:before { - content: \\"\\\\e257\\"; } - -.glyphicon-menu-right:before { - content: \\"\\\\e258\\"; } - -.glyphicon-menu-down:before { - content: \\"\\\\e259\\"; } - -.glyphicon-menu-up:before { - content: \\"\\\\e260\\"; } - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -body { - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857; - color: #333333; - background-color: #fff; } - -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; } - -a { - color: #337ab7; - text-decoration: none; } - a:hover, a:focus { - color: #23527c; - text-decoration: underline; } - a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - -figure { - margin: 0; } - -img { - vertical-align: middle; } - -.img-responsive { - display: block; - max-width: 100%; - height: auto; } - -.img-rounded { - border-radius: 6px; } - -.img-thumbnail { - padding: 4px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; } - -.img-circle { - border-radius: 50%; } - -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; } - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; } - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; } - -[role=\\"button\\"] { - cursor: pointer; } - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; } - h1 small, - h1 .small, h2 small, - h2 .small, h3 small, - h3 .small, h4 small, - h4 .small, h5 small, - h5 .small, h6 small, - h6 .small, - .h1 small, - .h1 .small, .h2 small, - .h2 .small, .h3 small, - .h3 .small, .h4 small, - .h4 .small, .h5 small, - .h5 .small, .h6 small, - .h6 .small { - font-weight: 400; - line-height: 1; - color: #777777; } - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; } - h1 small, - h1 .small, .h1 small, - .h1 .small, - h2 small, - h2 .small, .h2 small, - .h2 .small, - h3 small, - h3 .small, .h3 small, - .h3 .small { - font-size: 65%; } - -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; } - h4 small, - h4 .small, .h4 small, - .h4 .small, - h5 small, - h5 .small, .h5 small, - .h5 .small, - h6 small, - h6 .small, .h6 small, - .h6 .small { - font-size: 75%; } - -h1, .h1 { - font-size: 36px; } - -h2, .h2 { - font-size: 30px; } - -h3, .h3 { - font-size: 24px; } - -h4, .h4 { - font-size: 18px; } - -h5, .h5 { - font-size: 14px; } - -h6, .h6 { - font-size: 12px; } - -p { - margin: 0 0 10px; } - -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; } - @media (min-width: 768px) { - .lead { - font-size: 21px; } } - -small, -.small { - font-size: 85%; } - -mark, -.mark { - padding: .2em; - background-color: #fcf8e3; } - -.text-left { - text-align: left; } - -.text-right { - text-align: right; } - -.text-center { - text-align: center; } - -.text-justify { - text-align: justify; } - -.text-nowrap { - white-space: nowrap; } - -.text-lowercase { - text-transform: lowercase; } - -.text-uppercase, .initialism { - text-transform: uppercase; } - -.text-capitalize { - text-transform: capitalize; } - -.text-muted { - color: #777777; } - -.text-primary { - color: #337ab7; } - -a.text-primary:hover, -a.text-primary:focus { - color: #286090; } - -.text-success { - color: #3c763d; } - -a.text-success:hover, -a.text-success:focus { - color: #2b542c; } - -.text-info { - color: #31708f; } - -a.text-info:hover, -a.text-info:focus { - color: #245269; } - -.text-warning { - color: #8a6d3b; } - -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; } - -.text-danger { - color: #a94442; } - -a.text-danger:hover, -a.text-danger:focus { - color: #843534; } - -.bg-primary { - color: #fff; } - -.bg-primary { - background-color: #337ab7; } - -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; } - -.bg-success { - background-color: #dff0d8; } - -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; } - -.bg-info { - background-color: #d9edf7; } - -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; } - -.bg-warning { - background-color: #fcf8e3; } - -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; } - -.bg-danger { - background-color: #f2dede; } - -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; } - -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; } - -ul, -ol { - margin-top: 0; - margin-bottom: 10px; } - ul ul, - ul ol, - ol ul, - ol ol { - margin-bottom: 0; } - -.list-unstyled { - padding-left: 0; - list-style: none; } - -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; } - .list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; } - -dl { - margin-top: 0; - margin-bottom: 20px; } - -dt, -dd { - line-height: 1.42857; } - -dt { - font-weight: 700; } - -dd { - margin-left: 0; } - -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: \\" \\"; } - -.dl-horizontal dd:after { - clear: both; } - -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } - .dl-horizontal dd { - margin-left: 180px; } } - -abbr[title], -abbr[data-original-title] { - cursor: help; } - -.initialism { - font-size: 90%; } - -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; } - blockquote p:last-child, - blockquote ul:last-child, - blockquote ol:last-child { - margin-bottom: 0; } - blockquote footer, - blockquote small, - blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857; - color: #777777; } - blockquote footer:before, - blockquote small:before, - blockquote .small:before { - content: \\"\\\\2014 \\\\00A0\\"; } - -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eeeeee; - border-left: 0; } - .blockquote-reverse footer:before, - .blockquote-reverse small:before, - .blockquote-reverse .small:before, - blockquote.pull-right footer:before, - blockquote.pull-right small:before, - blockquote.pull-right .small:before { - content: \\"\\"; } - .blockquote-reverse footer:after, - .blockquote-reverse small:after, - .blockquote-reverse .small:after, - blockquote.pull-right footer:after, - blockquote.pull-right small:after, - blockquote.pull-right .small:after { - content: \\"\\\\00A0 \\\\2014\\"; } - -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857; } - -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; } - -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; } - -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } - kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; } - -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857; - color: #333333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; } - pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; } - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; } - -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - .container:before, .container:after { - display: table; - content: \\" \\"; } - .container:after { - clear: both; } - @media (min-width: 768px) { - .container { - width: 750px; } } - @media (min-width: 992px) { - .container { - width: 970px; } } - @media (min-width: 1200px) { - .container { - width: 1170px; } } - -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - .container-fluid:before, .container-fluid:after { - display: table; - content: \\" \\"; } - .container-fluid:after { - clear: both; } - -.row { - margin-right: -15px; - margin-left: -15px; } - .row:before, .row:after { - display: table; - content: \\" \\"; } - .row:after { - clear: both; } - -.row-no-gutters { - margin-right: 0; - margin-left: 0; } - .row-no-gutters [class*=\\"col-\\"] { - padding-right: 0; - padding-left: 0; } - -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; } - -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; } - -.col-xs-1 { - width: 8.33333%; } - -.col-xs-2 { - width: 16.66667%; } - -.col-xs-3 { - width: 25%; } - -.col-xs-4 { - width: 33.33333%; } - -.col-xs-5 { - width: 41.66667%; } - -.col-xs-6 { - width: 50%; } - -.col-xs-7 { - width: 58.33333%; } - -.col-xs-8 { - width: 66.66667%; } - -.col-xs-9 { - width: 75%; } - -.col-xs-10 { - width: 83.33333%; } - -.col-xs-11 { - width: 91.66667%; } - -.col-xs-12 { - width: 100%; } - -.col-xs-pull-0 { - right: auto; } - -.col-xs-pull-1 { - right: 8.33333%; } - -.col-xs-pull-2 { - right: 16.66667%; } - -.col-xs-pull-3 { - right: 25%; } - -.col-xs-pull-4 { - right: 33.33333%; } - -.col-xs-pull-5 { - right: 41.66667%; } - -.col-xs-pull-6 { - right: 50%; } - -.col-xs-pull-7 { - right: 58.33333%; } - -.col-xs-pull-8 { - right: 66.66667%; } - -.col-xs-pull-9 { - right: 75%; } - -.col-xs-pull-10 { - right: 83.33333%; } - -.col-xs-pull-11 { - right: 91.66667%; } - -.col-xs-pull-12 { - right: 100%; } - -.col-xs-push-0 { - left: auto; } - -.col-xs-push-1 { - left: 8.33333%; } - -.col-xs-push-2 { - left: 16.66667%; } - -.col-xs-push-3 { - left: 25%; } - -.col-xs-push-4 { - left: 33.33333%; } - -.col-xs-push-5 { - left: 41.66667%; } - -.col-xs-push-6 { - left: 50%; } - -.col-xs-push-7 { - left: 58.33333%; } - -.col-xs-push-8 { - left: 66.66667%; } - -.col-xs-push-9 { - left: 75%; } - -.col-xs-push-10 { - left: 83.33333%; } - -.col-xs-push-11 { - left: 91.66667%; } - -.col-xs-push-12 { - left: 100%; } - -.col-xs-offset-0 { - margin-left: 0%; } - -.col-xs-offset-1 { - margin-left: 8.33333%; } - -.col-xs-offset-2 { - margin-left: 16.66667%; } - -.col-xs-offset-3 { - margin-left: 25%; } - -.col-xs-offset-4 { - margin-left: 33.33333%; } - -.col-xs-offset-5 { - margin-left: 41.66667%; } - -.col-xs-offset-6 { - margin-left: 50%; } - -.col-xs-offset-7 { - margin-left: 58.33333%; } - -.col-xs-offset-8 { - margin-left: 66.66667%; } - -.col-xs-offset-9 { - margin-left: 75%; } - -.col-xs-offset-10 { - margin-left: 83.33333%; } - -.col-xs-offset-11 { - margin-left: 91.66667%; } - -.col-xs-offset-12 { - margin-left: 100%; } - -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; } - .col-sm-1 { - width: 8.33333%; } - .col-sm-2 { - width: 16.66667%; } - .col-sm-3 { - width: 25%; } - .col-sm-4 { - width: 33.33333%; } - .col-sm-5 { - width: 41.66667%; } - .col-sm-6 { - width: 50%; } - .col-sm-7 { - width: 58.33333%; } - .col-sm-8 { - width: 66.66667%; } - .col-sm-9 { - width: 75%; } - .col-sm-10 { - width: 83.33333%; } - .col-sm-11 { - width: 91.66667%; } - .col-sm-12 { - width: 100%; } - .col-sm-pull-0 { - right: auto; } - .col-sm-pull-1 { - right: 8.33333%; } - .col-sm-pull-2 { - right: 16.66667%; } - .col-sm-pull-3 { - right: 25%; } - .col-sm-pull-4 { - right: 33.33333%; } - .col-sm-pull-5 { - right: 41.66667%; } - .col-sm-pull-6 { - right: 50%; } - .col-sm-pull-7 { - right: 58.33333%; } - .col-sm-pull-8 { - right: 66.66667%; } - .col-sm-pull-9 { - right: 75%; } - .col-sm-pull-10 { - right: 83.33333%; } - .col-sm-pull-11 { - right: 91.66667%; } - .col-sm-pull-12 { - right: 100%; } - .col-sm-push-0 { - left: auto; } - .col-sm-push-1 { - left: 8.33333%; } - .col-sm-push-2 { - left: 16.66667%; } - .col-sm-push-3 { - left: 25%; } - .col-sm-push-4 { - left: 33.33333%; } - .col-sm-push-5 { - left: 41.66667%; } - .col-sm-push-6 { - left: 50%; } - .col-sm-push-7 { - left: 58.33333%; } - .col-sm-push-8 { - left: 66.66667%; } - .col-sm-push-9 { - left: 75%; } - .col-sm-push-10 { - left: 83.33333%; } - .col-sm-push-11 { - left: 91.66667%; } - .col-sm-push-12 { - left: 100%; } - .col-sm-offset-0 { - margin-left: 0%; } - .col-sm-offset-1 { - margin-left: 8.33333%; } - .col-sm-offset-2 { - margin-left: 16.66667%; } - .col-sm-offset-3 { - margin-left: 25%; } - .col-sm-offset-4 { - margin-left: 33.33333%; } - .col-sm-offset-5 { - margin-left: 41.66667%; } - .col-sm-offset-6 { - margin-left: 50%; } - .col-sm-offset-7 { - margin-left: 58.33333%; } - .col-sm-offset-8 { - margin-left: 66.66667%; } - .col-sm-offset-9 { - margin-left: 75%; } - .col-sm-offset-10 { - margin-left: 83.33333%; } - .col-sm-offset-11 { - margin-left: 91.66667%; } - .col-sm-offset-12 { - margin-left: 100%; } } - -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; } - .col-md-1 { - width: 8.33333%; } - .col-md-2 { - width: 16.66667%; } - .col-md-3 { - width: 25%; } - .col-md-4 { - width: 33.33333%; } - .col-md-5 { - width: 41.66667%; } - .col-md-6 { - width: 50%; } - .col-md-7 { - width: 58.33333%; } - .col-md-8 { - width: 66.66667%; } - .col-md-9 { - width: 75%; } - .col-md-10 { - width: 83.33333%; } - .col-md-11 { - width: 91.66667%; } - .col-md-12 { - width: 100%; } - .col-md-pull-0 { - right: auto; } - .col-md-pull-1 { - right: 8.33333%; } - .col-md-pull-2 { - right: 16.66667%; } - .col-md-pull-3 { - right: 25%; } - .col-md-pull-4 { - right: 33.33333%; } - .col-md-pull-5 { - right: 41.66667%; } - .col-md-pull-6 { - right: 50%; } - .col-md-pull-7 { - right: 58.33333%; } - .col-md-pull-8 { - right: 66.66667%; } - .col-md-pull-9 { - right: 75%; } - .col-md-pull-10 { - right: 83.33333%; } - .col-md-pull-11 { - right: 91.66667%; } - .col-md-pull-12 { - right: 100%; } - .col-md-push-0 { - left: auto; } - .col-md-push-1 { - left: 8.33333%; } - .col-md-push-2 { - left: 16.66667%; } - .col-md-push-3 { - left: 25%; } - .col-md-push-4 { - left: 33.33333%; } - .col-md-push-5 { - left: 41.66667%; } - .col-md-push-6 { - left: 50%; } - .col-md-push-7 { - left: 58.33333%; } - .col-md-push-8 { - left: 66.66667%; } - .col-md-push-9 { - left: 75%; } - .col-md-push-10 { - left: 83.33333%; } - .col-md-push-11 { - left: 91.66667%; } - .col-md-push-12 { - left: 100%; } - .col-md-offset-0 { - margin-left: 0%; } - .col-md-offset-1 { - margin-left: 8.33333%; } - .col-md-offset-2 { - margin-left: 16.66667%; } - .col-md-offset-3 { - margin-left: 25%; } - .col-md-offset-4 { - margin-left: 33.33333%; } - .col-md-offset-5 { - margin-left: 41.66667%; } - .col-md-offset-6 { - margin-left: 50%; } - .col-md-offset-7 { - margin-left: 58.33333%; } - .col-md-offset-8 { - margin-left: 66.66667%; } - .col-md-offset-9 { - margin-left: 75%; } - .col-md-offset-10 { - margin-left: 83.33333%; } - .col-md-offset-11 { - margin-left: 91.66667%; } - .col-md-offset-12 { - margin-left: 100%; } } - -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; } - .col-lg-1 { - width: 8.33333%; } - .col-lg-2 { - width: 16.66667%; } - .col-lg-3 { - width: 25%; } - .col-lg-4 { - width: 33.33333%; } - .col-lg-5 { - width: 41.66667%; } - .col-lg-6 { - width: 50%; } - .col-lg-7 { - width: 58.33333%; } - .col-lg-8 { - width: 66.66667%; } - .col-lg-9 { - width: 75%; } - .col-lg-10 { - width: 83.33333%; } - .col-lg-11 { - width: 91.66667%; } - .col-lg-12 { - width: 100%; } - .col-lg-pull-0 { - right: auto; } - .col-lg-pull-1 { - right: 8.33333%; } - .col-lg-pull-2 { - right: 16.66667%; } - .col-lg-pull-3 { - right: 25%; } - .col-lg-pull-4 { - right: 33.33333%; } - .col-lg-pull-5 { - right: 41.66667%; } - .col-lg-pull-6 { - right: 50%; } - .col-lg-pull-7 { - right: 58.33333%; } - .col-lg-pull-8 { - right: 66.66667%; } - .col-lg-pull-9 { - right: 75%; } - .col-lg-pull-10 { - right: 83.33333%; } - .col-lg-pull-11 { - right: 91.66667%; } - .col-lg-pull-12 { - right: 100%; } - .col-lg-push-0 { - left: auto; } - .col-lg-push-1 { - left: 8.33333%; } - .col-lg-push-2 { - left: 16.66667%; } - .col-lg-push-3 { - left: 25%; } - .col-lg-push-4 { - left: 33.33333%; } - .col-lg-push-5 { - left: 41.66667%; } - .col-lg-push-6 { - left: 50%; } - .col-lg-push-7 { - left: 58.33333%; } - .col-lg-push-8 { - left: 66.66667%; } - .col-lg-push-9 { - left: 75%; } - .col-lg-push-10 { - left: 83.33333%; } - .col-lg-push-11 { - left: 91.66667%; } - .col-lg-push-12 { - left: 100%; } - .col-lg-offset-0 { - margin-left: 0%; } - .col-lg-offset-1 { - margin-left: 8.33333%; } - .col-lg-offset-2 { - margin-left: 16.66667%; } - .col-lg-offset-3 { - margin-left: 25%; } - .col-lg-offset-4 { - margin-left: 33.33333%; } - .col-lg-offset-5 { - margin-left: 41.66667%; } - .col-lg-offset-6 { - margin-left: 50%; } - .col-lg-offset-7 { - margin-left: 58.33333%; } - .col-lg-offset-8 { - margin-left: 66.66667%; } - .col-lg-offset-9 { - margin-left: 75%; } - .col-lg-offset-10 { - margin-left: 83.33333%; } - .col-lg-offset-11 { - margin-left: 91.66667%; } - .col-lg-offset-12 { - margin-left: 100%; } } - -table { - background-color: transparent; } - table col[class*=\\"col-\\"] { - position: static; - display: table-column; - float: none; } - table td[class*=\\"col-\\"], - table th[class*=\\"col-\\"] { - position: static; - display: table-cell; - float: none; } - -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; } - -th { - text-align: left; } - -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; } - .table > thead > tr > th, - .table > thead > tr > td, - .table > tbody > tr > th, - .table > tbody > tr > td, - .table > tfoot > tr > th, - .table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857; - vertical-align: top; - border-top: 1px solid #ddd; } - .table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; } - .table > caption + thead > tr:first-child > th, - .table > caption + thead > tr:first-child > td, - .table > colgroup + thead > tr:first-child > th, - .table > colgroup + thead > tr:first-child > td, - .table > thead:first-child > tr:first-child > th, - .table > thead:first-child > tr:first-child > td { - border-top: 0; } - .table > tbody + tbody { - border-top: 2px solid #ddd; } - .table .table { - background-color: #fff; } - -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; } - -.table-bordered { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td, - .table-bordered > tbody > tr > th, - .table-bordered > tbody > tr > td, - .table-bordered > tfoot > tr > th, - .table-bordered > tfoot > tr > td { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td { - border-bottom-width: 2px; } - -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; } - -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; } - -.table > thead > tr > td.active, -.table > thead > tr > th.active, -.table > thead > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; } - -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; } - -.table > thead > tr > td.success, -.table > thead > tr > th.success, -.table > thead > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th { - background-color: #dff0d8; } - -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; } - -.table > thead > tr > td.info, -.table > thead > tr > th.info, -.table > thead > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #d9edf7; } - -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; } - -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, -.table > thead > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; } - -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; } - -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, -.table > thead > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f2dede; } - -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; } - -.table-responsive { - min-height: .01%; - overflow-x: auto; } - @media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; } - .table-responsive > .table { - margin-bottom: 0; } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; } - .table-responsive > .table-bordered { - border: 0; } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; } } - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; } - -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: 700; } - -input[type=\\"search\\"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - appearance: none; } - -input[type=\\"radio\\"], -input[type=\\"checkbox\\"] { - margin: 4px 0 0; - margin-top: 1px \\\\9; - line-height: normal; } - input[type=\\"radio\\"][disabled], input[type=\\"radio\\"].disabled, - fieldset[disabled] input[type=\\"radio\\"], - input[type=\\"checkbox\\"][disabled], - input[type=\\"checkbox\\"].disabled, - fieldset[disabled] - input[type=\\"checkbox\\"] { - cursor: not-allowed; } - -input[type=\\"file\\"] { - display: block; } - -input[type=\\"range\\"] { - display: block; - width: 100%; } - -select[multiple], -select[size] { - height: auto; } - -input[type=\\"file\\"]:focus, -input[type=\\"radio\\"]:focus, -input[type=\\"checkbox\\"]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857; - color: #555555; } - -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857; - color: #555555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } - .form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); } - .form-control::-moz-placeholder { - color: #999; - opacity: 1; } - .form-control:-ms-input-placeholder { - color: #999; } - .form-control::-webkit-input-placeholder { - color: #999; } - .form-control::-ms-expand { - background-color: transparent; - border: 0; } - .form-control[disabled], .form-control[readonly], - fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; } - .form-control[disabled], - fieldset[disabled] .form-control { - cursor: not-allowed; } - -textarea.form-control { - height: auto; } - -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type=\\"date\\"].form-control, - input[type=\\"time\\"].form-control, - input[type=\\"datetime-local\\"].form-control, - input[type=\\"month\\"].form-control { - line-height: 34px; } - input[type=\\"date\\"].input-sm, .input-group-sm > input.form-control[type=\\"date\\"], - .input-group-sm > input.input-group-addon[type=\\"date\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-sm input[type=\\"date\\"], - input[type=\\"time\\"].input-sm, - .input-group-sm > input.form-control[type=\\"time\\"], - .input-group-sm > input.input-group-addon[type=\\"time\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-sm - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-sm, - .input-group-sm > input.form-control[type=\\"datetime-local\\"], - .input-group-sm > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-sm - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-sm, - .input-group-sm > input.form-control[type=\\"month\\"], - .input-group-sm > input.input-group-addon[type=\\"month\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-sm - input[type=\\"month\\"] { - line-height: 30px; } - input[type=\\"date\\"].input-lg, .input-group-lg > input.form-control[type=\\"date\\"], - .input-group-lg > input.input-group-addon[type=\\"date\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-lg input[type=\\"date\\"], - input[type=\\"time\\"].input-lg, - .input-group-lg > input.form-control[type=\\"time\\"], - .input-group-lg > input.input-group-addon[type=\\"time\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-lg - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-lg, - .input-group-lg > input.form-control[type=\\"datetime-local\\"], - .input-group-lg > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-lg - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-lg, - .input-group-lg > input.form-control[type=\\"month\\"], - .input-group-lg > input.input-group-addon[type=\\"month\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-lg - input[type=\\"month\\"] { - line-height: 46px; } } - -.form-group { - margin-bottom: 15px; } - -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; } - .radio.disabled label, - fieldset[disabled] .radio label, - .checkbox.disabled label, - fieldset[disabled] - .checkbox label { - cursor: not-allowed; } - .radio label, - .checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; } - -.radio input[type=\\"radio\\"], -.radio-inline input[type=\\"radio\\"], -.checkbox input[type=\\"checkbox\\"], -.checkbox-inline input[type=\\"checkbox\\"] { - position: absolute; - margin-top: 4px \\\\9; - margin-left: -20px; } - -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; } - -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - vertical-align: middle; - cursor: pointer; } - .radio-inline.disabled, - fieldset[disabled] .radio-inline, - .checkbox-inline.disabled, - fieldset[disabled] - .checkbox-inline { - cursor: not-allowed; } - -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; } - -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; } - .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, - .input-group-lg > .form-control-static.input-group-addon, - .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, - .input-group-sm > .form-control-static.input-group-addon, - .input-group-sm > .input-group-btn > .form-control-static.btn { - padding-right: 0; - padding-left: 0; } - -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } - -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 30px; - line-height: 30px; } - -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select.form-control[multiple], -.input-group-sm > select.input-group-addon[multiple], -.input-group-sm > .input-group-btn > select.btn[multiple] { - height: auto; } - -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } - -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; } - -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; } - -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; } - -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } - -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 46px; - line-height: 46px; } - -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select.form-control[multiple], -.input-group-lg > select.input-group-addon[multiple], -.input-group-lg > .input-group-btn > select.btn[multiple] { - height: auto; } - -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } - -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; } - -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; } - -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.33333; } - -.has-feedback { - position: relative; } - .has-feedback .form-control { - padding-right: 42.5px; } - -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; } - -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; } - -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; } - -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; } - -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; } - -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; } - -.has-success .form-control-feedback { - color: #3c763d; } - -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; } - -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; } - -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; } - -.has-warning .form-control-feedback { - color: #8a6d3b; } - -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; } - -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; } - -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; } - -.has-error .form-control-feedback { - color: #a94442; } - -.has-feedback label ~ .form-control-feedback { - top: 25px; } - -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; } - -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; } - -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .form-inline .form-control-static { - display: inline-block; } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; } - .form-inline .input-group > .form-control { - width: 100%; } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; } - .form-inline .radio input[type=\\"radio\\"], - .form-inline .checkbox input[type=\\"checkbox\\"] { - position: relative; - margin-left: 0; } - .form-inline .has-feedback .form-control-feedback { - top: 0; } } - -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; } - -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; } - -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; } - .form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: \\" \\"; } - .form-horizontal .form-group:after { - clear: both; } - -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; } } - -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; } - -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; } } - -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; } } - -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; } - .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - .btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; } - .btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn.disabled, .btn[disabled], - fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - opacity: 0.65; - -webkit-box-shadow: none; - box-shadow: none; } - -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; } - -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; } - .btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; } - .btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; } - .btn-default:active, .btn-default.active, - .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - background-image: none; - border-color: #adadad; } - .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, - .open > .btn-default.dropdown-toggle:hover, - .open > .btn-default.dropdown-toggle:focus, - .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; } - .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, - fieldset[disabled] .btn-default:hover, - fieldset[disabled] .btn-default:focus, - fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; } - .btn-default .badge { - color: #fff; - background-color: #333; } - -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; } - .btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; } - .btn-primary:active, .btn-primary.active, - .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - background-image: none; - border-color: #204d74; } - .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, - .open > .btn-primary.dropdown-toggle:hover, - .open > .btn-primary.dropdown-toggle:focus, - .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; } - .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, - fieldset[disabled] .btn-primary:hover, - fieldset[disabled] .btn-primary:focus, - fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary .badge { - color: #337ab7; - background-color: #fff; } + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; } - .btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; } - .btn-success:active, .btn-success.active, - .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - background-image: none; - border-color: #398439; } - .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, - .open > .btn-success.dropdown-toggle:hover, - .open > .btn-success.dropdown-toggle:focus, - .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; } - .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, - fieldset[disabled] .btn-success:hover, - fieldset[disabled] .btn-success:focus, - fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success .badge { - color: #5cb85c; - background-color: #fff; } +.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow { + top: calc(-0.5rem - 1px); +} +.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} +.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: \\"\\"; + border-bottom: 1px solid #f0f0f0; +} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; } - .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; } - .btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; } - .btn-info:active, .btn-info.active, - .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - background-image: none; - border-color: #269abc; } - .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, - .open > .btn-info.dropdown-toggle:hover, - .open > .btn-info.dropdown-toggle:focus, - .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; } - .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, - fieldset[disabled] .btn-info:hover, - fieldset[disabled] .btn-info:focus, - fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; } - .btn-info .badge { - color: #5bc0de; - background-color: #fff; } +.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} +.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; } - .btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; } - .btn-warning:active, .btn-warning.active, - .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - background-image: none; - border-color: #d58512; } - .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, - .open > .btn-warning.dropdown-toggle:hover, - .open > .btn-warning.dropdown-toggle:focus, - .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; } - .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, - fieldset[disabled] .btn-warning:hover, - fieldset[disabled] .btn-warning:focus, - fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning .badge { - color: #f0ad4e; - background-color: #fff; } +.popover-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f0f0f0; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} +.popover-header:empty { + display: none; +} -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; } - .btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; } - .btn-danger:active, .btn-danger.active, - .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - background-image: none; - border-color: #ac2925; } - .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, - .open > .btn-danger.dropdown-toggle:hover, - .open > .btn-danger.dropdown-toggle:focus, - .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; } - .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, - fieldset[disabled] .btn-danger:hover, - fieldset[disabled] .btn-danger:focus, - fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger .badge { - color: #d9534f; - background-color: #fff; } +.popover-body { + padding: 1rem 1rem; + color: #212529; +} -.btn-link { - font-weight: 400; - color: #337ab7; - border-radius: 0; } - .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], - fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; } - .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; } - .btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; } - .btn-link[disabled]:hover, .btn-link[disabled]:focus, - fieldset[disabled] .btn-link:hover, - fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; } +.carousel { + position: relative; +} -.btn-lg, .btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } +.carousel.pointer-event { + touch-action: pan-y; +} -.btn-sm, .btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner::after { + display: block; + clear: both; + content: \\"\\"; +} -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} -.btn-block { +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { display: block; - width: 100%; } +} -.btn-block + .btn-block { - margin-top: 5px; } +/* rtl:begin:ignore */ +.carousel-item-next:not(.carousel-item-start), +.active.carousel-item-end { + transform: translateX(100%); +} -input[type=\\"submit\\"].btn-block, -input[type=\\"reset\\"].btn-block, -input[type=\\"button\\"].btn-block { - width: 100%; } +.carousel-item-prev:not(.carousel-item-end), +.active.carousel-item-start { + transform: translateX(-100%); +} -.fade { +/* rtl:end:ignore */ +.carousel-fade .carousel-item { opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; } - .fade.in { - opacity: 1; } - -.collapse { - display: none; } - .collapse.in { - display: block; } + transition-property: opacity; + transform: none; +} +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end { + z-index: 1; + opacity: 1; +} +.carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; +} +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + transition: none; + } +} -tr.collapse.in { - display: table-row; } +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + padding: 0; + color: #fff; + text-align: center; + background: none; + border: 0; + opacity: 0.5; + transition: opacity 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, +.carousel-control-next { + transition: none; + } +} +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} -tbody.collapse.in { - display: table-row-group; } +.carousel-control-prev { + left: 0; +} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; } +.carousel-control-next { + right: 0; +} -.caret { +.carousel-control-prev-icon, +.carousel-control-next-icon { display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \\\\9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; } + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; +} -.dropup, -.dropdown { - position: relative; } +/* rtl:options: { + \\"autoRename\\": true, + \\"stringMap\\":[ { + \\"name\\" : \\"prev-next\\", + \\"search\\" : \\"prev\\", + \\"replace\\" : \\"next\\" + } ] +} */ +.carousel-control-prev-icon { + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\\"); +} -.dropdown-toggle:focus { - outline: 0; } +.carousel-control-next-icon { + background-image: url(\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\\"); +} -.dropdown-menu { +.carousel-indicators { position: absolute; - top: 100%; + right: 0; + bottom: 0; left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; + z-index: 2; + display: flex; + justify-content: center; + padding: 0; + margin-right: 15%; + margin-bottom: 1rem; + margin-left: 15%; list-style: none; +} +.carousel-indicators [data-bs-target] { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + padding: 0; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; background-color: #fff; background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); } - .dropdown-menu.pull-right { - right: 0; - left: auto; } - .dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.42857; - color: #333333; - white-space: nowrap; } - .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; } + border: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: 0.5; + transition: opacity 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-indicators [data-bs-target] { + transition: none; + } +} +.carousel-indicators .active { + opacity: 1; +} -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { +.carousel-caption { + position: absolute; + right: 15%; + bottom: 1.25rem; + left: 15%; + padding-top: 1.25rem; + padding-bottom: 1.25rem; color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; } - -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; } + text-align: center; +} -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } +.carousel-dark .carousel-control-prev-icon, +.carousel-dark .carousel-control-next-icon { + filter: invert(1) grayscale(100); +} +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000; +} +.carousel-dark .carousel-caption { + color: #000; +} -.open > .dropdown-menu { - display: block; } +@keyframes spinner-border { + to { + transform: rotate(360deg) /* rtl:ignore */; + } +} +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: -0.125em; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + animation: 0.75s linear infinite spinner-border; +} -.open > a { - outline: 0; } +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} -.dropdown-menu-right { - right: 0; - left: auto; } +@keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: -0.125em; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + animation: 0.75s linear infinite spinner-grow; +} -.dropdown-menu-left { - right: auto; - left: 0; } +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857; - color: #777777; - white-space: nowrap; } +@media (prefers-reduced-motion: reduce) { + .spinner-border, +.spinner-grow { + animation-duration: 1.5s; + } +} +.offcanvas { + position: fixed; + bottom: 0; + z-index: 1045; + display: flex; + flex-direction: column; + max-width: 100%; + visibility: hidden; + background-color: #fff; + background-clip: padding-box; + outline: 0; + transition: transform 0.3s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .offcanvas { + transition: none; + } +} -.dropdown-backdrop { +.offcanvas-backdrop { position: fixed; top: 0; - right: 0; - bottom: 0; left: 0; - z-index: 990; } - -.pull-right > .dropdown-menu { - right: 0; - left: auto; } - -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: \\"\\"; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \\\\9; } - -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; } - -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; } } - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - float: left; } - .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, - .btn-group-vertical > .btn:hover, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 2; } - -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; } - -.btn-toolbar { - margin-left: -5px; } - .btn-toolbar:before, .btn-toolbar:after { - display: table; - content: \\" \\"; } - .btn-toolbar:after { - clear: both; } - .btn-toolbar .btn, - .btn-toolbar .btn-group, - .btn-toolbar .input-group { - float: left; } - .btn-toolbar > .btn, - .btn-toolbar > .btn-group, - .btn-toolbar > .input-group { - margin-left: 5px; } + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} +.offcanvas-backdrop.fade { + opacity: 0; +} +.offcanvas-backdrop.show { + opacity: 0.5; +} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; } +.offcanvas-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; +} +.offcanvas-header .btn-close { + padding: 0.5rem 0.5rem; + margin-top: -0.5rem; + margin-right: -0.5rem; + margin-bottom: -0.5rem; +} -.btn-group > .btn:first-child { - margin-left: 0; } - .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } +.offcanvas-title { + margin-bottom: 0; + line-height: 1.5; +} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } +.offcanvas-body { + flex-grow: 1; + padding: 1rem 1rem; + overflow-y: auto; +} -.btn-group > .btn-group { - float: left; } +.offcanvas-start { + top: 0; + left: 0; + width: 400px; + border-right: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(-100%); +} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } +.offcanvas-end { + top: 0; + right: 0; + width: 400px; + border-left: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(100%); +} -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } +.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(-100%); +} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } +.offcanvas-bottom { + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-top: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(100%); +} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; } +.offcanvas.show { + transform: none; +} -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; } +.placeholder { + display: inline-block; + min-height: 1em; + vertical-align: middle; + cursor: wait; + background-color: currentColor; + opacity: 0.5; +} +.placeholder.btn::before { + display: inline-block; + content: \\"\\"; +} -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; } +.placeholder-xs { + min-height: 0.6em; +} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; } +.placeholder-sm { + min-height: 0.8em; +} -.btn .caret { - margin-left: 0; } +.placeholder-lg { + min-height: 1.2em; +} -.btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; } +.placeholder-glow .placeholder { + animation: placeholder-glow 2s ease-in-out infinite; +} -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; } +@keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +.placeholder-wave { + mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); + mask-size: 200% 100%; + animation: placeholder-wave 2s linear infinite; +} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { +@keyframes placeholder-wave { + 100% { + mask-position: -200% 0%; + } +} +.clearfix::after { display: block; - float: none; - width: 100%; - max-width: 100%; } - -.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { - display: table; - content: \\" \\"; } - -.btn-group-vertical > .btn-group:after { - clear: both; } + clear: both; + content: \\"\\"; +} -.btn-group-vertical > .btn-group > .btn { - float: none; } +.link-primary { + color: #0d6efd; +} +.link-primary:hover, .link-primary:focus { + color: #0a58ca; +} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; } +.link-secondary { + color: #6c757d; +} +.link-secondary:hover, .link-secondary:focus { + color: #565e64; +} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; } +.link-success { + color: #198754; +} +.link-success:hover, .link-success:focus { + color: #146c43; +} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } +.link-info { + color: #0dcaf0; +} +.link-info:hover, .link-info:focus { + color: #3dd5f3; +} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } +.link-warning { + color: #ffc107; +} +.link-warning:hover, .link-warning:focus { + color: #ffcd39; +} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } +.link-danger { + color: #dc3545; +} +.link-danger:hover, .link-danger:focus { + color: #b02a37; +} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } +.link-light { + color: #f8f9fa; +} +.link-light:hover, .link-light:focus { + color: #f9fafb; +} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; } +.link-dark { + color: #212529; +} +.link-dark:hover, .link-dark:focus { + color: #1a1e21; +} -.btn-group-justified { - display: table; +.ratio { + position: relative; width: 100%; - table-layout: fixed; - border-collapse: separate; } - .btn-group-justified > .btn, - .btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; } - .btn-group-justified > .btn-group .btn { - width: 100%; } - .btn-group-justified > .btn-group .dropdown-menu { - left: auto; } - -[data-toggle=\\"buttons\\"] > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn input[type=\\"checkbox\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"checkbox\\"] { +} +.ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: \\"\\"; +} +.ratio > * { position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - -.input-group { - position: relative; - display: table; - border-collapse: separate; } - .input-group[class*=\\"col-\\"] { - float: none; - padding-right: 0; - padding-left: 0; } - .input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; } - .input-group .form-control:focus { - z-index: 3; } - -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; } - .input-group-addon:not(:first-child):not(:last-child), - .input-group-btn:not(:first-child):not(:last-child), - .input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; } - -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; } - -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: 400; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #ccc; - border-radius: 4px; } - .input-group-addon.input-sm, - .input-group-sm > .input-group-addon, - .input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; } - .input-group-addon.input-lg, - .input-group-lg > .input-group-addon, - .input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; } - .input-group-addon input[type=\\"radio\\"], - .input-group-addon input[type=\\"checkbox\\"] { - margin-top: 0; } - -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.input-group-addon:first-child { - border-right: 0; } - -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.input-group-addon:last-child { - border-left: 0; } - -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; } - .input-group-btn > .btn { - position: relative; } - .input-group-btn > .btn + .btn { - margin-left: -1px; } - .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; } - .input-group-btn:first-child > .btn, - .input-group-btn:first-child > .btn-group { - margin-right: -1px; } - .input-group-btn:last-child > .btn, - .input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; } - -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .nav:before, .nav:after { - display: table; - content: \\" \\"; } - .nav:after { - clear: both; } - .nav > li { - position: relative; - display: block; } - .nav > li > a { - position: relative; - display: block; - padding: 10px 15px; } - .nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .nav > li.disabled > a { - color: #777777; } - .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; } - .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; } - .nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .nav > li > a > img { - max-width: none; } - -.nav-tabs { - border-bottom: 1px solid #ddd; } - .nav-tabs > li { - float: left; - margin-bottom: -1px; } - .nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; } - .nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; } - .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; } - -.nav-pills > li { - float: left; } - .nav-pills > li > a { - border-radius: 4px; } - .nav-pills > li + li { - margin-left: 2px; } - .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; } - -.nav-stacked > li { - float: none; } - .nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; } - -.nav-justified, .nav-tabs.nav-justified { - width: 100%; } - .nav-justified > li, .nav-tabs.nav-justified > li { - float: none; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; } - .nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; } - @media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; } } - -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; } - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; } - @media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; } } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; } - .navbar:before, .navbar:after { - display: table; - content: \\" \\"; } - .navbar:after { - clear: both; } - @media (min-width: 768px) { - .navbar { - border-radius: 4px; } } + top: 0; + left: 0; + width: 100%; + height: 100%; +} -.navbar-header:before, .navbar-header:after { - display: table; - content: \\" \\"; } +.ratio-1x1 { + --bs-aspect-ratio: 100%; +} -.navbar-header:after { - clear: both; } +.ratio-4x3 { + --bs-aspect-ratio: 75%; +} -@media (min-width: 768px) { - .navbar-header { - float: left; } } +.ratio-16x9 { + --bs-aspect-ratio: 56.25%; +} -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; } - .navbar-collapse:before, .navbar-collapse:after { - display: table; - content: \\" \\"; } - .navbar-collapse:after { - clear: both; } - .navbar-collapse.in { - overflow-y: auto; } - @media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; } - .navbar-collapse.in { - overflow-y: visible; } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; } } +.ratio-21x9 { + --bs-aspect-ratio: 42.8571428571%; +} -.navbar-fixed-top, -.navbar-fixed-bottom { +.fixed-top { position: fixed; + top: 0; right: 0; left: 0; - z-index: 1030; } - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 340px; } - @media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; } } - @media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; } } - -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; } + z-index: 1030; +} -.navbar-fixed-bottom { +.fixed-bottom { + position: fixed; + right: 0; bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; } - -.container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; } - @media (min-width: 768px) { - .container > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-header, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; } } - -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; } - @media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; } } - -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; } - .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; } - .navbar-brand > img { - display: block; } - @media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; } } - -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-right: 15px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; } - .navbar-toggle:focus { - outline: 0; } - .navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; } - .navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; } - @media (min-width: 768px) { - .navbar-toggle { - display: none; } } - -.navbar-nav { - margin: 7.5px -15px; } - .navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; } - @media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; } } - @media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; } - .navbar-nav > li { - float: left; } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; } } - -.navbar-form { - padding: 10px 15px; - margin-right: -15px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px; } - @media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .navbar-form .form-control-static { - display: inline-block; } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; } - .navbar-form .input-group > .form-control { - width: 100%; } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; } - .navbar-form .radio input[type=\\"radio\\"], - .navbar-form .checkbox input[type=\\"checkbox\\"] { - position: relative; - margin-left: 0; } - .navbar-form .has-feedback .form-control-feedback { - top: 0; } } - @media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; } - .navbar-form .form-group:last-child { - margin-bottom: 0; } } - @media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; } } - -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; } - .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 10px; - margin-bottom: 10px; } - .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 14px; - margin-bottom: 14px; } + left: 0; + z-index: 1030; +} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; } - @media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; } } +.sticky-top { + position: sticky; + top: 0; + z-index: 1020; +} +@media (min-width: 576px) { + .sticky-sm-top { + position: sticky; + top: 0; + z-index: 1020; + } +} @media (min-width: 768px) { - .navbar-left { - float: left !important; } - .navbar-right { - float: right !important; - margin-right: -15px; } - .navbar-right ~ .navbar-right { - margin-right: 0; } } - -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; } - .navbar-default .navbar-brand { - color: #777; } - .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; } - .navbar-default .navbar-text { - color: #777; } - .navbar-default .navbar-nav > li > a { - color: #777; } - .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; } - .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; } - @media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; } } - .navbar-default .navbar-toggle { - border-color: #ddd; } - .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; } - .navbar-default .navbar-toggle .icon-bar { - background-color: #888; } - .navbar-default .navbar-collapse, - .navbar-default .navbar-form { - border-color: #e7e7e7; } - .navbar-default .navbar-link { - color: #777; } - .navbar-default .navbar-link:hover { - color: #333; } - .navbar-default .btn-link { - color: #777; } - .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; } - .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, - fieldset[disabled] .navbar-default .btn-link:hover, - fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; } - -.navbar-inverse { - background-color: #222; - border-color: #090909; } - .navbar-inverse .navbar-brand { - color: #9d9d9d; } - .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-text { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; } - .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #090909; } - @media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; } } - .navbar-inverse .navbar-toggle { - border-color: #333; } - .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; } - .navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; } - .navbar-inverse .navbar-collapse, - .navbar-inverse .navbar-form { - border-color: #101010; } - .navbar-inverse .navbar-link { - color: #9d9d9d; } - .navbar-inverse .navbar-link:hover { - color: #fff; } - .navbar-inverse .btn-link { - color: #9d9d9d; } - .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; } - .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, - fieldset[disabled] .navbar-inverse .btn-link:hover, - fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; } - -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; } - .breadcrumb > li { - display: inline-block; } - .breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: \\"/ \\"; } - .breadcrumb > .active { - color: #777777; } - -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; } - .pagination > li { - display: inline; } - .pagination > li > a, - .pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; } - .pagination > li > a:hover, .pagination > li > a:focus, - .pagination > li > span:hover, - .pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; } - .pagination > li:first-child > a, - .pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .pagination > li:last-child > a, - .pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; } - .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, - .pagination > .active > span, - .pagination > .active > span:hover, - .pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; } - .pagination > .disabled > span, - .pagination > .disabled > span:hover, - .pagination > .disabled > span:focus, - .pagination > .disabled > a, - .pagination > .disabled > a:hover, - .pagination > .disabled > a:focus { - color: #777777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; } - -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; } - -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; } - -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; } - -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; } + .sticky-md-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 992px) { + .sticky-lg-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 1200px) { + .sticky-xl-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 1400px) { + .sticky-xxl-top { + position: sticky; + top: 0; + z-index: 1020; + } +} +.hstack { + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch; +} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } +.vstack { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-self: stretch; +} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border: 0 !important; +} -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; } - .pager:before, .pager:after { - display: table; - content: \\" \\"; } - .pager:after { - clear: both; } - .pager li { - display: inline; } - .pager li > a, - .pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; } - .pager li > a:hover, - .pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .pager .next > a, - .pager .next > span { - float: right; } - .pager .previous > a, - .pager .previous > span { - float: left; } - .pager .disabled > a, - .pager .disabled > a:hover, - .pager .disabled > a:focus, - .pager .disabled > span { - color: #777777; - cursor: not-allowed; - background-color: #fff; } +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + content: \\"\\"; +} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; } - .label:empty { - display: none; } - .btn .label { - position: relative; - top: -1px; } +} + +.vr { + display: inline-block; + align-self: stretch; + width: 1px; + min-height: 1em; + background-color: currentColor; + opacity: 0.25; +} -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; } +.align-baseline { + vertical-align: baseline !important; +} -.label-default { - background-color: #777777; } - .label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; } +.align-top { + vertical-align: top !important; +} -.label-primary { - background-color: #337ab7; } - .label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; } +.align-middle { + vertical-align: middle !important; +} -.label-success { - background-color: #5cb85c; } - .label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; } +.align-bottom { + vertical-align: bottom !important; +} -.label-info { - background-color: #5bc0de; } - .label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; } +.align-text-bottom { + vertical-align: text-bottom !important; +} -.label-warning { - background-color: #f0ad4e; } - .label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; } +.align-text-top { + vertical-align: text-top !important; +} -.label-danger { - background-color: #d9534f; } - .label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; } +.float-start { + float: left !important; +} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777777; - border-radius: 10px; } - .badge:empty { - display: none; } - .btn .badge { - position: relative; - top: -1px; } - .btn-xs .badge, .btn-group-xs > .btn .badge, - .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; } - .list-group-item.active > .badge, - .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; } - .list-group-item > .badge { - float: right; } - .list-group-item > .badge + .badge { - margin-right: 5px; } - .nav-pills > li > a > .badge { - margin-left: 3px; } +.float-end { + float: right !important; +} -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; } +.float-none { + float: none !important; +} -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; } - .jumbotron h1, - .jumbotron .h1 { - color: inherit; } - .jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; } - .jumbotron > hr { - border-top-color: #d5d5d5; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; } - .jumbotron .container { - max-width: 100%; } - @media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; } } +.opacity-0 { + opacity: 0 !important; +} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; } - .thumbnail > img, - .thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-right: auto; - margin-left: auto; } - .thumbnail .caption { - padding: 9px; - color: #333333; } +.opacity-25 { + opacity: 0.25 !important; +} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; } +.opacity-50 { + opacity: 0.5 !important; +} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; } - .alert h4 { - margin-top: 0; - color: inherit; } - .alert .alert-link { - font-weight: bold; } - .alert > p, - .alert > ul { - margin-bottom: 0; } - .alert > p + p { - margin-top: 5px; } +.opacity-75 { + opacity: 0.75 !important; +} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; } - .alert-dismissable .close, - .alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; } +.opacity-100 { + opacity: 1 !important; +} -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; } - .alert-success hr { - border-top-color: #c9e2b3; } - .alert-success .alert-link { - color: #2b542c; } +.overflow-auto { + overflow: auto !important; +} -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; } - .alert-info hr { - border-top-color: #a6e1ec; } - .alert-info .alert-link { - color: #245269; } +.overflow-hidden { + overflow: hidden !important; +} -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; } - .alert-warning hr { - border-top-color: #f7e1b5; } - .alert-warning .alert-link { - color: #66512c; } +.overflow-visible { + overflow: visible !important; +} -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; } - .alert-danger hr { - border-top-color: #e4b9c0; } - .alert-danger .alert-link { - color: #843534; } +.overflow-scroll { + overflow: scroll !important; +} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; } - to { - background-position: 0 0; } } +.d-inline { + display: inline !important; +} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; } - to { - background-position: 0 0; } } +.d-inline-block { + display: inline-block !important; +} -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } +.d-block { + display: block !important; +} -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; } +.d-grid { + display: grid !important; +} -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; } +.d-table { + display: table !important; +} -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; } +.d-table-row { + display: table-row !important; +} -.progress-bar-success { - background-color: #5cb85c; } - .progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } +.d-table-cell { + display: table-cell !important; +} -.progress-bar-info { - background-color: #5bc0de; } - .progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } +.d-flex { + display: flex !important; +} -.progress-bar-warning { - background-color: #f0ad4e; } - .progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } +.d-inline-flex { + display: inline-flex !important; +} -.progress-bar-danger { - background-color: #d9534f; } - .progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } +.d-none { + display: none !important; +} -.media { - margin-top: 15px; } - .media:first-child { - margin-top: 0; } +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} -.media, -.media-body { - overflow: hidden; - zoom: 1; } +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} -.media-body { - width: 10000px; } +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} -.media-object { - display: block; } - .media-object.img-thumbnail { - max-width: none; } +.shadow-none { + box-shadow: none !important; +} -.media-right, -.media > .pull-right { - padding-left: 10px; } +.position-static { + position: static !important; +} -.media-left, -.media > .pull-left { - padding-right: 10px; } +.position-relative { + position: relative !important; +} -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; } +.position-absolute { + position: absolute !important; +} -.media-middle { - vertical-align: middle; } +.position-fixed { + position: fixed !important; +} -.media-bottom { - vertical-align: bottom; } +.position-sticky { + position: sticky !important; +} -.media-heading { - margin-top: 0; - margin-bottom: 5px; } +.top-0 { + top: 0 !important; +} -.media-list { - padding-left: 0; - list-style: none; } +.top-50 { + top: 50% !important; +} -.list-group { - padding-left: 0; - margin-bottom: 20px; } +.top-100 { + top: 100% !important; +} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; } - .list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - .list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } - .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - color: #777777; - cursor: not-allowed; - background-color: #eeeeee; } - .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; } - .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; } - .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .list-group-item.active .list-group-item-heading, - .list-group-item.active .list-group-item-heading > small, - .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, - .list-group-item.active:hover .list-group-item-heading > small, - .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, - .list-group-item.active:focus .list-group-item-heading > small, - .list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; } - .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; } +.bottom-0 { + bottom: 0 !important; +} -a.list-group-item, -button.list-group-item { - color: #555; } - a.list-group-item .list-group-item-heading, - button.list-group-item .list-group-item-heading { - color: #333; } - a.list-group-item:hover, a.list-group-item:focus, - button.list-group-item:hover, - button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; } +.bottom-50 { + bottom: 50% !important; +} -button.list-group-item { - width: 100%; - text-align: left; } +.bottom-100 { + bottom: 100% !important; +} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; } +.start-0 { + left: 0 !important; +} -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; } - a.list-group-item-success .list-group-item-heading, - button.list-group-item-success .list-group-item-heading { - color: inherit; } - a.list-group-item-success:hover, a.list-group-item-success:focus, - button.list-group-item-success:hover, - button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; } - a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, - button.list-group-item-success.active, - button.list-group-item-success.active:hover, - button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; } +.start-50 { + left: 50% !important; +} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; } +.start-100 { + left: 100% !important; +} -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; } - a.list-group-item-info .list-group-item-heading, - button.list-group-item-info .list-group-item-heading { - color: inherit; } - a.list-group-item-info:hover, a.list-group-item-info:focus, - button.list-group-item-info:hover, - button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; } - a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, - button.list-group-item-info.active, - button.list-group-item-info.active:hover, - button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; } +.end-0 { + right: 0 !important; +} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; } +.end-50 { + right: 50% !important; +} -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; } - a.list-group-item-warning .list-group-item-heading, - button.list-group-item-warning .list-group-item-heading { - color: inherit; } - a.list-group-item-warning:hover, a.list-group-item-warning:focus, - button.list-group-item-warning:hover, - button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; } - a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, - button.list-group-item-warning.active, - button.list-group-item-warning.active:hover, - button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; } +.end-100 { + right: 100% !important; +} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; } +.translate-middle { + transform: translate(-50%, -50%) !important; +} -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; } - a.list-group-item-danger .list-group-item-heading, - button.list-group-item-danger .list-group-item-heading { - color: inherit; } - a.list-group-item-danger:hover, a.list-group-item-danger:focus, - button.list-group-item-danger:hover, - button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; } - a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, - button.list-group-item-danger.active, - button.list-group-item-danger.active:hover, - button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; } +.translate-middle-x { + transform: translateX(-50%) !important; +} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; } +.translate-middle-y { + transform: translateY(-50%) !important; +} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; } +.border { + border: 1px solid #dee2e6 !important; +} -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } +.border-0 { + border: 0 !important; +} -.panel-body { - padding: 15px; } - .panel-body:before, .panel-body:after { - display: table; - content: \\" \\"; } - .panel-body:after { - clear: both; } +.border-top { + border-top: 1px solid #dee2e6 !important; +} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel-heading > .dropdown .dropdown-toggle { - color: inherit; } +.border-top-0 { + border-top: 0 !important; +} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; } - .panel-title > a, - .panel-title > small, - .panel-title > .small, - .panel-title > small > a, - .panel-title > .small > a { - color: inherit; } +.border-end { + border-right: 1px solid #dee2e6 !important; +} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } +.border-end-0 { + border-right: 0 !important; +} -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; } - .panel > .list-group .list-group-item, - .panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; } - .panel > .list-group:first-child .list-group-item:first-child, - .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .list-group:last-child .list-group-item:last-child, - .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; } +.border-bottom-0 { + border-bottom: 0 !important; +} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; } +.border-start { + border-left: 1px solid #dee2e6 !important; +} -.list-group + .panel-footer { - border-top-width: 0; } +.border-start-0 { + border-left: 0 !important; +} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; } - .panel > .table caption, - .panel > .table-responsive > .table caption, - .panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; } +.border-primary { + border-color: #0d6efd !important; +} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; } +.border-secondary { + border-color: #6c757d !important; +} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; } +.border-success { + border-color: #198754 !important; +} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; } +.border-info { + border-color: #0dcaf0 !important; +} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; } +.border-warning { + border-color: #ffc107 !important; +} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; } - .panel > .table-bordered > thead > tr > th:first-child, - .panel > .table-bordered > thead > tr > td:first-child, - .panel > .table-bordered > tbody > tr > th:first-child, - .panel > .table-bordered > tbody > tr > td:first-child, - .panel > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-bordered > tfoot > tr > td:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .panel > .table-bordered > thead > tr > th:last-child, - .panel > .table-bordered > thead > tr > td:last-child, - .panel > .table-bordered > tbody > tr > th:last-child, - .panel > .table-bordered > tbody > tr > td:last-child, - .panel > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-bordered > tfoot > tr > td:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .panel > .table-bordered > thead > tr:first-child > td, - .panel > .table-bordered > thead > tr:first-child > th, - .panel > .table-bordered > tbody > tr:first-child > td, - .panel > .table-bordered > tbody > tr:first-child > th, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; } - .panel > .table-bordered > tbody > tr:last-child > td, - .panel > .table-bordered > tbody > tr:last-child > th, - .panel > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-bordered > tfoot > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; } +.border-danger { + border-color: #dc3545 !important; +} -.panel > .table-responsive { - margin-bottom: 0; - border: 0; } +.border-light { + border-color: #f8f9fa !important; +} -.panel-group { - margin-bottom: 20px; } - .panel-group .panel { - margin-bottom: 0; - border-radius: 4px; } - .panel-group .panel + .panel { - margin-top: 5px; } - .panel-group .panel-heading { - border-bottom: 0; } - .panel-group .panel-heading + .panel-collapse > .panel-body, - .panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; } - .panel-group .panel-footer { - border-top: 0; } - .panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; } +.border-dark { + border-color: #212529 !important; +} -.panel-default { - border-color: #ddd; } - .panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; } - .panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; } - .panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; } - .panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; } +.border-white { + border-color: #fff !important; +} -.panel-primary { - border-color: #337ab7; } - .panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; } - .panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; } - .panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; } +.border-1 { + border-width: 1px !important; +} -.panel-success { - border-color: #d6e9c6; } - .panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; } - .panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; } - .panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; } - .panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; } +.border-2 { + border-width: 2px !important; +} -.panel-info { - border-color: #bce8f1; } - .panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; } - .panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; } - .panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; } - .panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; } +.border-3 { + border-width: 3px !important; +} -.panel-warning { - border-color: #faebcc; } - .panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; } - .panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; } - .panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; } - .panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; } +.border-4 { + border-width: 4px !important; +} -.panel-danger { - border-color: #ebccd1; } - .panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; } - .panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; } - .panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; } - .panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; } +.border-5 { + border-width: 5px !important; +} -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; } - .embed-responsive .embed-responsive-item, - .embed-responsive iframe, - .embed-responsive embed, - .embed-responsive object, - .embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; } +.w-25 { + width: 25% !important; +} -.embed-responsive-16by9 { - padding-bottom: 56.25%; } +.w-50 { + width: 50% !important; +} -.embed-responsive-4by3 { - padding-bottom: 75%; } +.w-75 { + width: 75% !important; +} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } - .well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); } +.w-100 { + width: 100% !important; +} -.well-lg { - padding: 24px; - border-radius: 6px; } +.w-auto { + width: auto !important; +} -.well-sm { - padding: 9px; - border-radius: 3px; } +.mw-100 { + max-width: 100% !important; +} -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: 0.2; } - .close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: 0.5; } +.vw-100 { + width: 100vw !important; +} -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - appearance: none; } +.min-vw-100 { + min-width: 100vw !important; +} -.modal-open { - overflow: hidden; } +.h-25 { + height: 25% !important; +} -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; } - .modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; } - .modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); } +.h-50 { + height: 50% !important; +} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; } +.h-75 { + height: 75% !important; +} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; } +.h-100 { + height: 100% !important; +} -.modal-content { - position: relative; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - outline: 0; } +.h-auto { + height: auto !important; +} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; } - .modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; } - .modal-backdrop.in { - filter: alpha(opacity=50); - opacity: 0.5; } +.mh-100 { + max-height: 100% !important; +} -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; } - .modal-header:before, .modal-header:after { - display: table; - content: \\" \\"; } - .modal-header:after { - clear: both; } +.vh-100 { + height: 100vh !important; +} -.modal-header .close { - margin-top: -2px; } +.min-vh-100 { + min-height: 100vh !important; +} -.modal-title { - margin: 0; - line-height: 1.42857; } +.flex-fill { + flex: 1 1 auto !important; +} -.modal-body { - position: relative; - padding: 15px; } +.flex-row { + flex-direction: row !important; +} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; } - .modal-footer:before, .modal-footer:after { - display: table; - content: \\" \\"; } - .modal-footer:after { - clear: both; } - .modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; } - .modal-footer .btn-group .btn + .btn { - margin-left: -1px; } - .modal-footer .btn-block + .btn-block { - margin-left: 0; } +.flex-column { + flex-direction: column !important; +} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; } +.flex-row-reverse { + flex-direction: row-reverse !important; +} -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } - .modal-sm { - width: 300px; } } +.flex-column-reverse { + flex-direction: column-reverse !important; +} -@media (min-width: 992px) { - .modal-lg { - width: 900px; } } +.flex-grow-0 { + flex-grow: 0 !important; +} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.42857; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 12px; - filter: alpha(opacity=0); - opacity: 0; } - .tooltip.in { - filter: alpha(opacity=90); - opacity: 0.9; } - .tooltip.top { - padding: 5px 0; - margin-top: -3px; } - .tooltip.right { - padding: 0 5px; - margin-left: 3px; } - .tooltip.bottom { - padding: 5px 0; - margin-top: 3px; } - .tooltip.left { - padding: 0 5px; - margin-left: -3px; } - .tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; } - .tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; } - .tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } +.flex-grow-1 { + flex-grow: 1 !important; +} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; } +.flex-shrink-0 { + flex-shrink: 0 !important; +} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; } +.flex-shrink-1 { + flex-shrink: 1 !important; +} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.42857; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 14px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } - .popover.top { - margin-top: -10px; } - .popover.right { - margin-left: 10px; } - .popover.bottom { - margin-top: 10px; } - .popover.left { - margin-left: -10px; } - .popover > .arrow { - border-width: 11px; } - .popover > .arrow, .popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; } - .popover > .arrow:after { - content: \\"\\"; - border-width: 10px; } - .popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; } - .popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-color: #fff; - border-bottom-width: 0; } - .popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; } - .popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: \\" \\"; - border-right-color: #fff; - border-left-width: 0; } - .popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-width: 0; - border-bottom-color: #fff; } - .popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); } - .popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: \\" \\"; - border-right-width: 0; - border-left-color: #fff; } +.flex-wrap { + flex-wrap: wrap !important; +} -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; } +.flex-nowrap { + flex-wrap: nowrap !important; +} -.popover-content { - padding: 9px 14px; } +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} -.carousel { - position: relative; } +.gap-0 { + gap: 0 !important; +} -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; } - .carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; } - .carousel-inner > .item > img, - .carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; } - @media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; } } - .carousel-inner > .active, - .carousel-inner > .next, - .carousel-inner > .prev { - display: block; } - .carousel-inner > .active { - left: 0; } - .carousel-inner > .next, - .carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; } - .carousel-inner > .next { - left: 100%; } - .carousel-inner > .prev { - left: -100%; } - .carousel-inner > .next.left, - .carousel-inner > .prev.right { - left: 0; } - .carousel-inner > .active.left { - left: -100%; } - .carousel-inner > .active.right { - left: 100%; } +.gap-1 { + gap: 0.25rem !important; +} -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: 0.5; } - .carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - filter: alpha(opacity=90); - opacity: 0.9; } - .carousel-control .icon-prev, - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; } - .carousel-control .icon-prev, - .carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; } - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; } - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; } - .carousel-control .icon-prev:before { - content: \\"\\\\2039\\"; } - .carousel-control .icon-next:before { - content: \\"\\\\203a\\"; } +.gap-2 { + gap: 0.5rem !important; +} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; } - .carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \\\\9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; } - .carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; } +.gap-3 { + gap: 1rem !important; +} -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .carousel-caption .btn { - text-shadow: none; } +.gap-4 { + gap: 1.5rem !important; +} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; } - .carousel-indicators { - bottom: 20px; } } +.gap-5 { + gap: 3rem !important; +} -.clearfix:before, .clearfix:after { - display: table; - content: \\" \\"; } +.justify-content-start { + justify-content: flex-start !important; +} -.clearfix:after { - clear: both; } +.justify-content-end { + justify-content: flex-end !important; +} -.center-block { - display: block; - margin-right: auto; - margin-left: auto; } +.justify-content-center { + justify-content: center !important; +} -.pull-right { - float: right !important; } +.justify-content-between { + justify-content: space-between !important; +} -.pull-left { - float: left !important; } +.justify-content-around { + justify-content: space-around !important; +} -.hide { - display: none !important; } +.justify-content-evenly { + justify-content: space-evenly !important; +} -.show { - display: block !important; } +.align-items-start { + align-items: flex-start !important; +} -.invisible { - visibility: hidden; } +.align-items-end { + align-items: flex-end !important; +} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; } +.align-items-center { + align-items: center !important; +} -.hidden { - display: none !important; } +.align-items-baseline { + align-items: baseline !important; +} -.affix { - position: fixed; } +.align-items-stretch { + align-items: stretch !important; +} -@-ms-viewport { - width: device-width; } +.align-content-start { + align-content: flex-start !important; +} -.visible-xs { - display: none !important; } +.align-content-end { + align-content: flex-end !important; +} -.visible-sm { - display: none !important; } +.align-content-center { + align-content: center !important; +} -.visible-md { - display: none !important; } +.align-content-between { + align-content: space-between !important; +} -.visible-lg { - display: none !important; } +.align-content-around { + align-content: space-around !important; +} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; } +.align-content-stretch { + align-content: stretch !important; +} -@media (max-width: 767px) { - .visible-xs { - display: block !important; } - table.visible-xs { - display: table !important; } - tr.visible-xs { - display: table-row !important; } - th.visible-xs, - td.visible-xs { - display: table-cell !important; } } +.align-self-auto { + align-self: auto !important; +} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; } } +.align-self-start { + align-self: flex-start !important; +} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; } } +.align-self-end { + align-self: flex-end !important; +} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; } } +.align-self-center { + align-self: center !important; +} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; } - table.visible-sm { - display: table !important; } - tr.visible-sm { - display: table-row !important; } - th.visible-sm, - td.visible-sm { - display: table-cell !important; } } +.align-self-baseline { + align-self: baseline !important; +} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; } } +.align-self-stretch { + align-self: stretch !important; +} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; } } +.order-first { + order: -1 !important; +} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; } } +.order-0 { + order: 0 !important; +} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; } - table.visible-md { - display: table !important; } - tr.visible-md { - display: table-row !important; } - th.visible-md, - td.visible-md { - display: table-cell !important; } } +.order-1 { + order: 1 !important; +} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; } } +.order-2 { + order: 2 !important; +} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; } } +.order-3 { + order: 3 !important; +} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; } } +.order-4 { + order: 4 !important; +} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; } - table.visible-lg { - display: table !important; } - tr.visible-lg { - display: table-row !important; } - th.visible-lg, - td.visible-lg { - display: table-cell !important; } } +.order-5 { + order: 5 !important; +} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; } } +.order-last { + order: 6 !important; +} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; } } +.m-0 { + margin: 0 !important; +} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; } } +.m-1 { + margin: 0.25rem !important; +} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; } } +.m-2 { + margin: 0.5rem !important; +} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; } } +.m-3 { + margin: 1rem !important; +} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; } } +.m-4 { + margin: 1.5rem !important; +} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; } } +.m-5 { + margin: 3rem !important; +} -.visible-print { - display: none !important; } +.m-auto { + margin: auto !important; +} -@media print { - .visible-print { - display: block !important; } - table.visible-print { - display: table !important; } - tr.visible-print { - display: table-row !important; } - th.visible-print, - td.visible-print { - display: table-cell !important; } } +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} -.visible-print-block { - display: none !important; } - @media print { - .visible-print-block { - display: block !important; } } +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} -.visible-print-inline { - display: none !important; } - @media print { - .visible-print-inline { - display: inline !important; } } +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} + +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} + +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} -.visible-print-inline-block { - display: none !important; } - @media print { - .visible-print-inline-block { - display: inline-block !important; } } +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; +} -@media print { - .hidden-print { - display: none !important; } } -" -`; +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} -exports[`loader should work with the "bootstrap-sass" package, directly import (node-sass) (scss): errors 1`] = `Array []`; +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} -exports[`loader should work with the "bootstrap-sass" package, directly import (node-sass) (scss): warnings 1`] = `Array []`; +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} -exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -/*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } -body { - margin: 0; +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } -audio:not([controls]) { - display: none; - height: 0; +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } -[hidden], -template { - display: none; +.mt-0 { + margin-top: 0 !important; } -a { - background-color: transparent; +.mt-1 { + margin-top: 0.25rem !important; } -a:active, -a:hover { - outline: 0; +.mt-2 { + margin-top: 0.5rem !important; } -abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted; +.mt-3 { + margin-top: 1rem !important; } -b, -strong { - font-weight: bold; +.mt-4 { + margin-top: 1.5rem !important; } -dfn { - font-style: italic; +.mt-5 { + margin-top: 3rem !important; } -h1 { - font-size: 2em; - margin: 0.67em 0; +.mt-auto { + margin-top: auto !important; } -mark { - background: #ff0; - color: #000; +.me-0 { + margin-right: 0 !important; } -small { - font-size: 80%; +.me-1 { + margin-right: 0.25rem !important; } -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; +.me-2 { + margin-right: 0.5rem !important; } -sup { - top: -0.5em; +.me-3 { + margin-right: 1rem !important; } -sub { - bottom: -0.25em; +.me-4 { + margin-right: 1.5rem !important; } -img { - border: 0; +.me-5 { + margin-right: 3rem !important; } -svg:not(:root) { - overflow: hidden; +.me-auto { + margin-right: auto !important; } -figure { - margin: 1em 40px; +.mb-0 { + margin-bottom: 0 !important; } -hr { - box-sizing: content-box; - height: 0; +.mb-1 { + margin-bottom: 0.25rem !important; } -pre { - overflow: auto; +.mb-2 { + margin-bottom: 0.5rem !important; } -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; +.mb-3 { + margin-bottom: 1rem !important; } -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; +.mb-4 { + margin-bottom: 1.5rem !important; } -button { - overflow: visible; +.mb-5 { + margin-bottom: 3rem !important; } -button, -select { - text-transform: none; +.mb-auto { + margin-bottom: auto !important; } -button, -html input[type=button], -input[type=reset], -input[type=submit] { - -webkit-appearance: button; - cursor: pointer; +.ms-0 { + margin-left: 0 !important; } -button[disabled], -html input[disabled] { - cursor: default; +.ms-1 { + margin-left: 0.25rem !important; } -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; +.ms-2 { + margin-left: 0.5rem !important; } -input { - line-height: normal; +.ms-3 { + margin-left: 1rem !important; } -input[type=checkbox], -input[type=radio] { - box-sizing: border-box; - padding: 0; +.ms-4 { + margin-left: 1.5rem !important; } -input[type=number]::-webkit-inner-spin-button, -input[type=number]::-webkit-outer-spin-button { - height: auto; +.ms-5 { + margin-left: 3rem !important; } -input[type=search] { - -webkit-appearance: textfield; - box-sizing: content-box; +.ms-auto { + margin-left: auto !important; } -input[type=search]::-webkit-search-cancel-button, -input[type=search]::-webkit-search-decoration { - -webkit-appearance: none; +.p-0 { + padding: 0 !important; } -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; +.p-1 { + padding: 0.25rem !important; } -legend { - border: 0; - padding: 0; +.p-2 { + padding: 0.5rem !important; } -textarea { - overflow: auto; +.p-3 { + padding: 1rem !important; } -optgroup { - font-weight: bold; +.p-4 { + padding: 1.5rem !important; } -table { - border-collapse: collapse; - border-spacing: 0; +.p-5 { + padding: 3rem !important; } -td, -th { - padding: 0; +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; } -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, -*:before, -*:after { - color: #000 !important; - text-shadow: none !important; - background: transparent !important; - box-shadow: none !important; - } +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} - a, -a:visited { - text-decoration: underline; - } +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} - a[href]:after { - content: \\" (\\" attr(href) \\")\\"; - } +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} - abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; - } +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} - a[href^=\\"#\\"]:after, -a[href^=\\"javascript:\\"]:after { - content: \\"\\"; - } +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; +} - pre, -blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} - thead { - display: table-header-group; - } +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} - tr, -img { - page-break-inside: avoid; - } +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} - img { - max-width: 100% !important; - } +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} - p, -h2, -h3 { - orphans: 3; - widows: 3; - } +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} - h2, -h3 { - page-break-after: avoid; - } +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} - .navbar { - display: none; - } +.pt-0 { + padding-top: 0 !important; +} - .btn > .caret, -.dropup > .btn > .caret { - border-top-color: #000 !important; - } +.pt-1 { + padding-top: 0.25rem !important; +} - .label { - border: 1px solid #000; - } +.pt-2 { + padding-top: 0.5rem !important; +} - .table { - border-collapse: collapse !important; - } - .table td, -.table th { - background-color: #fff !important; - } +.pt-3 { + padding-top: 1rem !important; +} - .table-bordered th, -.table-bordered td { - border: 1px solid #ddd !important; - } +.pt-4 { + padding-top: 1.5rem !important; } -@font-face { - font-family: \\"Glyphicons Halflings\\"; - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); + +.pt-5 { + padding-top: 3rem !important; } -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: \\"Glyphicons Halflings\\"; - font-style: normal; - font-weight: 400; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; + +.pe-0 { + padding-right: 0 !important; } -.glyphicon-asterisk:before { - content: \\"*\\"; +.pe-1 { + padding-right: 0.25rem !important; } -.glyphicon-plus:before { - content: \\"+\\"; +.pe-2 { + padding-right: 0.5rem !important; } -.glyphicon-euro:before, -.glyphicon-eur:before { - content: \\"€\\"; +.pe-3 { + padding-right: 1rem !important; } -.glyphicon-minus:before { - content: \\"−\\"; +.pe-4 { + padding-right: 1.5rem !important; } -.glyphicon-cloud:before { - content: \\"☁\\"; +.pe-5 { + padding-right: 3rem !important; } -.glyphicon-envelope:before { - content: \\"✉\\"; +.pb-0 { + padding-bottom: 0 !important; } -.glyphicon-pencil:before { - content: \\"✏\\"; +.pb-1 { + padding-bottom: 0.25rem !important; } -.glyphicon-glass:before { - content: \\"\\\\e001\\"; +.pb-2 { + padding-bottom: 0.5rem !important; } -.glyphicon-music:before { - content: \\"\\\\e002\\"; +.pb-3 { + padding-bottom: 1rem !important; } -.glyphicon-search:before { - content: \\"\\\\e003\\"; +.pb-4 { + padding-bottom: 1.5rem !important; } -.glyphicon-heart:before { - content: \\"\\\\e005\\"; +.pb-5 { + padding-bottom: 3rem !important; } -.glyphicon-star:before { - content: \\"\\\\e006\\"; +.ps-0 { + padding-left: 0 !important; } -.glyphicon-star-empty:before { - content: \\"\\\\e007\\"; +.ps-1 { + padding-left: 0.25rem !important; } -.glyphicon-user:before { - content: \\"\\\\e008\\"; +.ps-2 { + padding-left: 0.5rem !important; } -.glyphicon-film:before { - content: \\"\\\\e009\\"; +.ps-3 { + padding-left: 1rem !important; } -.glyphicon-th-large:before { - content: \\"\\\\e010\\"; +.ps-4 { + padding-left: 1.5rem !important; } -.glyphicon-th:before { - content: \\"\\\\e011\\"; +.ps-5 { + padding-left: 3rem !important; } -.glyphicon-th-list:before { - content: \\"\\\\e012\\"; +.font-monospace { + font-family: var(--bs-font-monospace) !important; } -.glyphicon-ok:before { - content: \\"\\\\e013\\"; +.fs-1 { + font-size: calc(1.375rem + 1.5vw) !important; } -.glyphicon-remove:before { - content: \\"\\\\e014\\"; +.fs-2 { + font-size: calc(1.325rem + 0.9vw) !important; } -.glyphicon-zoom-in:before { - content: \\"\\\\e015\\"; +.fs-3 { + font-size: calc(1.3rem + 0.6vw) !important; } -.glyphicon-zoom-out:before { - content: \\"\\\\e016\\"; +.fs-4 { + font-size: calc(1.275rem + 0.3vw) !important; } -.glyphicon-off:before { - content: \\"\\\\e017\\"; +.fs-5 { + font-size: 1.25rem !important; } -.glyphicon-signal:before { - content: \\"\\\\e018\\"; +.fs-6 { + font-size: 1rem !important; } -.glyphicon-cog:before { - content: \\"\\\\e019\\"; +.fst-italic { + font-style: italic !important; } -.glyphicon-trash:before { - content: \\"\\\\e020\\"; +.fst-normal { + font-style: normal !important; } -.glyphicon-home:before { - content: \\"\\\\e021\\"; +.fw-light { + font-weight: 300 !important; } -.glyphicon-file:before { - content: \\"\\\\e022\\"; +.fw-lighter { + font-weight: lighter !important; } -.glyphicon-time:before { - content: \\"\\\\e023\\"; +.fw-normal { + font-weight: 400 !important; } -.glyphicon-road:before { - content: \\"\\\\e024\\"; +.fw-bold { + font-weight: 700 !important; } -.glyphicon-download-alt:before { - content: \\"\\\\e025\\"; +.fw-bolder { + font-weight: bolder !important; } -.glyphicon-download:before { - content: \\"\\\\e026\\"; +.lh-1 { + line-height: 1 !important; } -.glyphicon-upload:before { - content: \\"\\\\e027\\"; +.lh-sm { + line-height: 1.25 !important; } -.glyphicon-inbox:before { - content: \\"\\\\e028\\"; +.lh-base { + line-height: 1.5 !important; } -.glyphicon-play-circle:before { - content: \\"\\\\e029\\"; +.lh-lg { + line-height: 2 !important; } -.glyphicon-repeat:before { - content: \\"\\\\e030\\"; +.text-start { + text-align: left !important; } -.glyphicon-refresh:before { - content: \\"\\\\e031\\"; +.text-end { + text-align: right !important; } -.glyphicon-list-alt:before { - content: \\"\\\\e032\\"; +.text-center { + text-align: center !important; } -.glyphicon-lock:before { - content: \\"\\\\e033\\"; +.text-decoration-none { + text-decoration: none !important; } -.glyphicon-flag:before { - content: \\"\\\\e034\\"; +.text-decoration-underline { + text-decoration: underline !important; } -.glyphicon-headphones:before { - content: \\"\\\\e035\\"; +.text-decoration-line-through { + text-decoration: line-through !important; } -.glyphicon-volume-off:before { - content: \\"\\\\e036\\"; +.text-lowercase { + text-transform: lowercase !important; } -.glyphicon-volume-down:before { - content: \\"\\\\e037\\"; +.text-uppercase { + text-transform: uppercase !important; } -.glyphicon-volume-up:before { - content: \\"\\\\e038\\"; +.text-capitalize { + text-transform: capitalize !important; } -.glyphicon-qrcode:before { - content: \\"\\\\e039\\"; +.text-wrap { + white-space: normal !important; } -.glyphicon-barcode:before { - content: \\"\\\\e040\\"; +.text-nowrap { + white-space: nowrap !important; } -.glyphicon-tag:before { - content: \\"\\\\e041\\"; +/* rtl:begin:remove */ +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; } -.glyphicon-tags:before { - content: \\"\\\\e042\\"; +/* rtl:end:remove */ +.text-primary { + --bs-text-opacity: 1; + color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-book:before { - content: \\"\\\\e043\\"; +.text-secondary { + --bs-text-opacity: 1; + color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-bookmark:before { - content: \\"\\\\e044\\"; +.text-success { + --bs-text-opacity: 1; + color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-print:before { - content: \\"\\\\e045\\"; +.text-info { + --bs-text-opacity: 1; + color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-camera:before { - content: \\"\\\\e046\\"; +.text-warning { + --bs-text-opacity: 1; + color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-font:before { - content: \\"\\\\e047\\"; +.text-danger { + --bs-text-opacity: 1; + color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-bold:before { - content: \\"\\\\e048\\"; +.text-light { + --bs-text-opacity: 1; + color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-italic:before { - content: \\"\\\\e049\\"; +.text-dark { + --bs-text-opacity: 1; + color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-text-height:before { - content: \\"\\\\e050\\"; +.text-black { + --bs-text-opacity: 1; + color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-text-width:before { - content: \\"\\\\e051\\"; +.text-white { + --bs-text-opacity: 1; + color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-align-left:before { - content: \\"\\\\e052\\"; +.text-body { + --bs-text-opacity: 1; + color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; } -.glyphicon-align-center:before { - content: \\"\\\\e053\\"; +.text-muted { + --bs-text-opacity: 1; + color: #6c757d !important; } -.glyphicon-align-right:before { - content: \\"\\\\e054\\"; +.text-black-50 { + --bs-text-opacity: 1; + color: rgba(0, 0, 0, 0.5) !important; } -.glyphicon-align-justify:before { - content: \\"\\\\e055\\"; +.text-white-50 { + --bs-text-opacity: 1; + color: rgba(255, 255, 255, 0.5) !important; } -.glyphicon-list:before { - content: \\"\\\\e056\\"; +.text-reset { + --bs-text-opacity: 1; + color: inherit !important; } -.glyphicon-indent-left:before { - content: \\"\\\\e057\\"; +.text-opacity-25 { + --bs-text-opacity: 0.25; } -.glyphicon-indent-right:before { - content: \\"\\\\e058\\"; +.text-opacity-50 { + --bs-text-opacity: 0.5; } -.glyphicon-facetime-video:before { - content: \\"\\\\e059\\"; +.text-opacity-75 { + --bs-text-opacity: 0.75; } -.glyphicon-picture:before { - content: \\"\\\\e060\\"; +.text-opacity-100 { + --bs-text-opacity: 1; } -.glyphicon-map-marker:before { - content: \\"\\\\e062\\"; +.bg-primary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-adjust:before { - content: \\"\\\\e063\\"; +.bg-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-tint:before { - content: \\"\\\\e064\\"; +.bg-success { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-edit:before { - content: \\"\\\\e065\\"; +.bg-info { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-share:before { - content: \\"\\\\e066\\"; +.bg-warning { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-check:before { - content: \\"\\\\e067\\"; +.bg-danger { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-move:before { - content: \\"\\\\e068\\"; +.bg-light { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-step-backward:before { - content: \\"\\\\e069\\"; +.bg-dark { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-fast-backward:before { - content: \\"\\\\e070\\"; +.bg-black { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-backward:before { - content: \\"\\\\e071\\"; +.bg-white { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-play:before { - content: \\"\\\\e072\\"; +.bg-body { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; } -.glyphicon-pause:before { - content: \\"\\\\e073\\"; +.bg-transparent { + --bs-bg-opacity: 1; + background-color: transparent !important; } -.glyphicon-stop:before { - content: \\"\\\\e074\\"; +.bg-opacity-10 { + --bs-bg-opacity: 0.1; } -.glyphicon-forward:before { - content: \\"\\\\e075\\"; +.bg-opacity-25 { + --bs-bg-opacity: 0.25; } -.glyphicon-fast-forward:before { - content: \\"\\\\e076\\"; +.bg-opacity-50 { + --bs-bg-opacity: 0.5; } -.glyphicon-step-forward:before { - content: \\"\\\\e077\\"; +.bg-opacity-75 { + --bs-bg-opacity: 0.75; } -.glyphicon-eject:before { - content: \\"\\\\e078\\"; +.bg-opacity-100 { + --bs-bg-opacity: 1; } -.glyphicon-chevron-left:before { - content: \\"\\\\e079\\"; +.bg-gradient { + background-image: var(--bs-gradient) !important; } -.glyphicon-chevron-right:before { - content: \\"\\\\e080\\"; +.user-select-all { + user-select: all !important; } -.glyphicon-plus-sign:before { - content: \\"\\\\e081\\"; +.user-select-auto { + user-select: auto !important; } -.glyphicon-minus-sign:before { - content: \\"\\\\e082\\"; +.user-select-none { + user-select: none !important; } -.glyphicon-remove-sign:before { - content: \\"\\\\e083\\"; +.pe-none { + pointer-events: none !important; } -.glyphicon-ok-sign:before { - content: \\"\\\\e084\\"; +.pe-auto { + pointer-events: auto !important; } -.glyphicon-question-sign:before { - content: \\"\\\\e085\\"; +.rounded { + border-radius: 0.25rem !important; } -.glyphicon-info-sign:before { - content: \\"\\\\e086\\"; +.rounded-0 { + border-radius: 0 !important; } -.glyphicon-screenshot:before { - content: \\"\\\\e087\\"; +.rounded-1 { + border-radius: 0.2rem !important; } -.glyphicon-remove-circle:before { - content: \\"\\\\e088\\"; +.rounded-2 { + border-radius: 0.25rem !important; } -.glyphicon-ok-circle:before { - content: \\"\\\\e089\\"; +.rounded-3 { + border-radius: 0.3rem !important; } -.glyphicon-ban-circle:before { - content: \\"\\\\e090\\"; +.rounded-circle { + border-radius: 50% !important; } -.glyphicon-arrow-left:before { - content: \\"\\\\e091\\"; +.rounded-pill { + border-radius: 50rem !important; } -.glyphicon-arrow-right:before { - content: \\"\\\\e092\\"; +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } -.glyphicon-arrow-up:before { - content: \\"\\\\e093\\"; +.rounded-end { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } -.glyphicon-arrow-down:before { - content: \\"\\\\e094\\"; +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } -.glyphicon-share-alt:before { - content: \\"\\\\e095\\"; +.rounded-start { + border-bottom-left-radius: 0.25rem !important; + border-top-left-radius: 0.25rem !important; } -.glyphicon-resize-full:before { - content: \\"\\\\e096\\"; +.visible { + visibility: visible !important; } -.glyphicon-resize-small:before { - content: \\"\\\\e097\\"; +.invisible { + visibility: hidden !important; } -.glyphicon-exclamation-sign:before { - content: \\"\\\\e101\\"; -} +@media (min-width: 576px) { + .float-sm-start { + float: left !important; + } + + .float-sm-end { + float: right !important; + } + + .float-sm-none { + float: none !important; + } + + .d-sm-inline { + display: inline !important; + } + + .d-sm-inline-block { + display: inline-block !important; + } + + .d-sm-block { + display: block !important; + } + + .d-sm-grid { + display: grid !important; + } + + .d-sm-table { + display: table !important; + } + + .d-sm-table-row { + display: table-row !important; + } + + .d-sm-table-cell { + display: table-cell !important; + } + + .d-sm-flex { + display: flex !important; + } + + .d-sm-inline-flex { + display: inline-flex !important; + } + + .d-sm-none { + display: none !important; + } + + .flex-sm-fill { + flex: 1 1 auto !important; + } + + .flex-sm-row { + flex-direction: row !important; + } + + .flex-sm-column { + flex-direction: column !important; + } + + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + + .flex-sm-wrap { + flex-wrap: wrap !important; + } + + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .gap-sm-0 { + gap: 0 !important; + } + + .gap-sm-1 { + gap: 0.25rem !important; + } + + .gap-sm-2 { + gap: 0.5rem !important; + } + + .gap-sm-3 { + gap: 1rem !important; + } + + .gap-sm-4 { + gap: 1.5rem !important; + } + + .gap-sm-5 { + gap: 3rem !important; + } + + .justify-content-sm-start { + justify-content: flex-start !important; + } + + .justify-content-sm-end { + justify-content: flex-end !important; + } + + .justify-content-sm-center { + justify-content: center !important; + } + + .justify-content-sm-between { + justify-content: space-between !important; + } + + .justify-content-sm-around { + justify-content: space-around !important; + } + + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + + .align-items-sm-start { + align-items: flex-start !important; + } + + .align-items-sm-end { + align-items: flex-end !important; + } + + .align-items-sm-center { + align-items: center !important; + } + + .align-items-sm-baseline { + align-items: baseline !important; + } + + .align-items-sm-stretch { + align-items: stretch !important; + } + + .align-content-sm-start { + align-content: flex-start !important; + } + + .align-content-sm-end { + align-content: flex-end !important; + } + + .align-content-sm-center { + align-content: center !important; + } -.glyphicon-gift:before { - content: \\"\\\\e102\\"; -} + .align-content-sm-between { + align-content: space-between !important; + } -.glyphicon-leaf:before { - content: \\"\\\\e103\\"; -} + .align-content-sm-around { + align-content: space-around !important; + } -.glyphicon-fire:before { - content: \\"\\\\e104\\"; -} + .align-content-sm-stretch { + align-content: stretch !important; + } -.glyphicon-eye-open:before { - content: \\"\\\\e105\\"; -} + .align-self-sm-auto { + align-self: auto !important; + } -.glyphicon-eye-close:before { - content: \\"\\\\e106\\"; -} + .align-self-sm-start { + align-self: flex-start !important; + } -.glyphicon-warning-sign:before { - content: \\"\\\\e107\\"; -} + .align-self-sm-end { + align-self: flex-end !important; + } -.glyphicon-plane:before { - content: \\"\\\\e108\\"; -} + .align-self-sm-center { + align-self: center !important; + } -.glyphicon-calendar:before { - content: \\"\\\\e109\\"; -} + .align-self-sm-baseline { + align-self: baseline !important; + } -.glyphicon-random:before { - content: \\"\\\\e110\\"; -} + .align-self-sm-stretch { + align-self: stretch !important; + } -.glyphicon-comment:before { - content: \\"\\\\e111\\"; -} + .order-sm-first { + order: -1 !important; + } -.glyphicon-magnet:before { - content: \\"\\\\e112\\"; -} + .order-sm-0 { + order: 0 !important; + } -.glyphicon-chevron-up:before { - content: \\"\\\\e113\\"; -} + .order-sm-1 { + order: 1 !important; + } -.glyphicon-chevron-down:before { - content: \\"\\\\e114\\"; -} + .order-sm-2 { + order: 2 !important; + } -.glyphicon-retweet:before { - content: \\"\\\\e115\\"; -} + .order-sm-3 { + order: 3 !important; + } -.glyphicon-shopping-cart:before { - content: \\"\\\\e116\\"; -} + .order-sm-4 { + order: 4 !important; + } -.glyphicon-folder-close:before { - content: \\"\\\\e117\\"; -} + .order-sm-5 { + order: 5 !important; + } -.glyphicon-folder-open:before { - content: \\"\\\\e118\\"; -} + .order-sm-last { + order: 6 !important; + } -.glyphicon-resize-vertical:before { - content: \\"\\\\e119\\"; -} + .m-sm-0 { + margin: 0 !important; + } -.glyphicon-resize-horizontal:before { - content: \\"\\\\e120\\"; -} + .m-sm-1 { + margin: 0.25rem !important; + } -.glyphicon-hdd:before { - content: \\"\\\\e121\\"; -} + .m-sm-2 { + margin: 0.5rem !important; + } -.glyphicon-bullhorn:before { - content: \\"\\\\e122\\"; -} + .m-sm-3 { + margin: 1rem !important; + } -.glyphicon-bell:before { - content: \\"\\\\e123\\"; -} + .m-sm-4 { + margin: 1.5rem !important; + } -.glyphicon-certificate:before { - content: \\"\\\\e124\\"; -} + .m-sm-5 { + margin: 3rem !important; + } -.glyphicon-thumbs-up:before { - content: \\"\\\\e125\\"; -} + .m-sm-auto { + margin: auto !important; + } -.glyphicon-thumbs-down:before { - content: \\"\\\\e126\\"; -} + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } -.glyphicon-hand-right:before { - content: \\"\\\\e127\\"; -} + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } -.glyphicon-hand-left:before { - content: \\"\\\\e128\\"; -} + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } -.glyphicon-hand-up:before { - content: \\"\\\\e129\\"; -} + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -.glyphicon-hand-down:before { - content: \\"\\\\e130\\"; -} + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -.glyphicon-circle-arrow-right:before { - content: \\"\\\\e131\\"; -} + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -.glyphicon-circle-arrow-left:before { - content: \\"\\\\e132\\"; -} + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } -.glyphicon-circle-arrow-up:before { - content: \\"\\\\e133\\"; -} + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -.glyphicon-circle-arrow-down:before { - content: \\"\\\\e134\\"; -} + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.glyphicon-globe:before { - content: \\"\\\\e135\\"; -} + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -.glyphicon-wrench:before { - content: \\"\\\\e136\\"; -} + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -.glyphicon-tasks:before { - content: \\"\\\\e137\\"; -} + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.glyphicon-filter:before { - content: \\"\\\\e138\\"; -} + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.glyphicon-briefcase:before { - content: \\"\\\\e139\\"; -} + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -.glyphicon-fullscreen:before { - content: \\"\\\\e140\\"; -} + .mt-sm-0 { + margin-top: 0 !important; + } -.glyphicon-dashboard:before { - content: \\"\\\\e141\\"; -} + .mt-sm-1 { + margin-top: 0.25rem !important; + } -.glyphicon-paperclip:before { - content: \\"\\\\e142\\"; -} + .mt-sm-2 { + margin-top: 0.5rem !important; + } -.glyphicon-heart-empty:before { - content: \\"\\\\e143\\"; -} + .mt-sm-3 { + margin-top: 1rem !important; + } -.glyphicon-link:before { - content: \\"\\\\e144\\"; -} + .mt-sm-4 { + margin-top: 1.5rem !important; + } -.glyphicon-phone:before { - content: \\"\\\\e145\\"; -} + .mt-sm-5 { + margin-top: 3rem !important; + } -.glyphicon-pushpin:before { - content: \\"\\\\e146\\"; -} + .mt-sm-auto { + margin-top: auto !important; + } -.glyphicon-usd:before { - content: \\"\\\\e148\\"; -} + .me-sm-0 { + margin-right: 0 !important; + } -.glyphicon-gbp:before { - content: \\"\\\\e149\\"; -} + .me-sm-1 { + margin-right: 0.25rem !important; + } -.glyphicon-sort:before { - content: \\"\\\\e150\\"; -} + .me-sm-2 { + margin-right: 0.5rem !important; + } -.glyphicon-sort-by-alphabet:before { - content: \\"\\\\e151\\"; -} + .me-sm-3 { + margin-right: 1rem !important; + } -.glyphicon-sort-by-alphabet-alt:before { - content: \\"\\\\e152\\"; -} + .me-sm-4 { + margin-right: 1.5rem !important; + } -.glyphicon-sort-by-order:before { - content: \\"\\\\e153\\"; -} + .me-sm-5 { + margin-right: 3rem !important; + } -.glyphicon-sort-by-order-alt:before { - content: \\"\\\\e154\\"; -} + .me-sm-auto { + margin-right: auto !important; + } -.glyphicon-sort-by-attributes:before { - content: \\"\\\\e155\\"; -} + .mb-sm-0 { + margin-bottom: 0 !important; + } -.glyphicon-sort-by-attributes-alt:before { - content: \\"\\\\e156\\"; -} + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } -.glyphicon-unchecked:before { - content: \\"\\\\e157\\"; -} + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } -.glyphicon-expand:before { - content: \\"\\\\e158\\"; -} + .mb-sm-3 { + margin-bottom: 1rem !important; + } -.glyphicon-collapse-down:before { - content: \\"\\\\e159\\"; -} + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } -.glyphicon-collapse-up:before { - content: \\"\\\\e160\\"; -} + .mb-sm-5 { + margin-bottom: 3rem !important; + } -.glyphicon-log-in:before { - content: \\"\\\\e161\\"; -} + .mb-sm-auto { + margin-bottom: auto !important; + } -.glyphicon-flash:before { - content: \\"\\\\e162\\"; -} + .ms-sm-0 { + margin-left: 0 !important; + } -.glyphicon-log-out:before { - content: \\"\\\\e163\\"; -} + .ms-sm-1 { + margin-left: 0.25rem !important; + } -.glyphicon-new-window:before { - content: \\"\\\\e164\\"; -} + .ms-sm-2 { + margin-left: 0.5rem !important; + } -.glyphicon-record:before { - content: \\"\\\\e165\\"; -} + .ms-sm-3 { + margin-left: 1rem !important; + } -.glyphicon-save:before { - content: \\"\\\\e166\\"; -} + .ms-sm-4 { + margin-left: 1.5rem !important; + } -.glyphicon-open:before { - content: \\"\\\\e167\\"; -} + .ms-sm-5 { + margin-left: 3rem !important; + } -.glyphicon-saved:before { - content: \\"\\\\e168\\"; -} + .ms-sm-auto { + margin-left: auto !important; + } -.glyphicon-import:before { - content: \\"\\\\e169\\"; -} + .p-sm-0 { + padding: 0 !important; + } -.glyphicon-export:before { - content: \\"\\\\e170\\"; -} + .p-sm-1 { + padding: 0.25rem !important; + } -.glyphicon-send:before { - content: \\"\\\\e171\\"; -} + .p-sm-2 { + padding: 0.5rem !important; + } -.glyphicon-floppy-disk:before { - content: \\"\\\\e172\\"; -} + .p-sm-3 { + padding: 1rem !important; + } -.glyphicon-floppy-saved:before { - content: \\"\\\\e173\\"; -} + .p-sm-4 { + padding: 1.5rem !important; + } -.glyphicon-floppy-remove:before { - content: \\"\\\\e174\\"; -} + .p-sm-5 { + padding: 3rem !important; + } -.glyphicon-floppy-save:before { - content: \\"\\\\e175\\"; -} + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.glyphicon-floppy-open:before { - content: \\"\\\\e176\\"; -} + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.glyphicon-credit-card:before { - content: \\"\\\\e177\\"; -} + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.glyphicon-transfer:before { - content: \\"\\\\e178\\"; -} + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.glyphicon-cutlery:before { - content: \\"\\\\e179\\"; -} + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -.glyphicon-header:before { - content: \\"\\\\e180\\"; -} + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -.glyphicon-compressed:before { - content: \\"\\\\e181\\"; -} + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -.glyphicon-earphone:before { - content: \\"\\\\e182\\"; -} + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -.glyphicon-phone-alt:before { - content: \\"\\\\e183\\"; -} + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -.glyphicon-tower:before { - content: \\"\\\\e184\\"; -} + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -.glyphicon-stats:before { - content: \\"\\\\e185\\"; -} + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.glyphicon-sd-video:before { - content: \\"\\\\e186\\"; -} + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -.glyphicon-hd-video:before { - content: \\"\\\\e187\\"; -} + .pt-sm-0 { + padding-top: 0 !important; + } -.glyphicon-subtitles:before { - content: \\"\\\\e188\\"; -} + .pt-sm-1 { + padding-top: 0.25rem !important; + } -.glyphicon-sound-stereo:before { - content: \\"\\\\e189\\"; -} + .pt-sm-2 { + padding-top: 0.5rem !important; + } -.glyphicon-sound-dolby:before { - content: \\"\\\\e190\\"; -} + .pt-sm-3 { + padding-top: 1rem !important; + } -.glyphicon-sound-5-1:before { - content: \\"\\\\e191\\"; -} + .pt-sm-4 { + padding-top: 1.5rem !important; + } -.glyphicon-sound-6-1:before { - content: \\"\\\\e192\\"; -} + .pt-sm-5 { + padding-top: 3rem !important; + } -.glyphicon-sound-7-1:before { - content: \\"\\\\e193\\"; -} + .pe-sm-0 { + padding-right: 0 !important; + } -.glyphicon-copyright-mark:before { - content: \\"\\\\e194\\"; -} + .pe-sm-1 { + padding-right: 0.25rem !important; + } -.glyphicon-registration-mark:before { - content: \\"\\\\e195\\"; -} + .pe-sm-2 { + padding-right: 0.5rem !important; + } -.glyphicon-cloud-download:before { - content: \\"\\\\e197\\"; -} + .pe-sm-3 { + padding-right: 1rem !important; + } -.glyphicon-cloud-upload:before { - content: \\"\\\\e198\\"; -} + .pe-sm-4 { + padding-right: 1.5rem !important; + } -.glyphicon-tree-conifer:before { - content: \\"\\\\e199\\"; -} + .pe-sm-5 { + padding-right: 3rem !important; + } -.glyphicon-tree-deciduous:before { - content: \\"\\\\e200\\"; -} + .pb-sm-0 { + padding-bottom: 0 !important; + } -.glyphicon-cd:before { - content: \\"\\\\e201\\"; -} + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } -.glyphicon-save-file:before { - content: \\"\\\\e202\\"; -} + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } -.glyphicon-open-file:before { - content: \\"\\\\e203\\"; -} + .pb-sm-3 { + padding-bottom: 1rem !important; + } -.glyphicon-level-up:before { - content: \\"\\\\e204\\"; -} + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } -.glyphicon-copy:before { - content: \\"\\\\e205\\"; -} + .pb-sm-5 { + padding-bottom: 3rem !important; + } -.glyphicon-paste:before { - content: \\"\\\\e206\\"; -} + .ps-sm-0 { + padding-left: 0 !important; + } -.glyphicon-alert:before { - content: \\"\\\\e209\\"; -} + .ps-sm-1 { + padding-left: 0.25rem !important; + } -.glyphicon-equalizer:before { - content: \\"\\\\e210\\"; -} + .ps-sm-2 { + padding-left: 0.5rem !important; + } -.glyphicon-king:before { - content: \\"\\\\e211\\"; -} + .ps-sm-3 { + padding-left: 1rem !important; + } -.glyphicon-queen:before { - content: \\"\\\\e212\\"; -} + .ps-sm-4 { + padding-left: 1.5rem !important; + } -.glyphicon-pawn:before { - content: \\"\\\\e213\\"; -} + .ps-sm-5 { + padding-left: 3rem !important; + } -.glyphicon-bishop:before { - content: \\"\\\\e214\\"; -} + .text-sm-start { + text-align: left !important; + } -.glyphicon-knight:before { - content: \\"\\\\e215\\"; -} + .text-sm-end { + text-align: right !important; + } -.glyphicon-baby-formula:before { - content: \\"\\\\e216\\"; + .text-sm-center { + text-align: center !important; + } } +@media (min-width: 768px) { + .float-md-start { + float: left !important; + } -.glyphicon-tent:before { - content: \\"⛺\\"; -} + .float-md-end { + float: right !important; + } -.glyphicon-blackboard:before { - content: \\"\\\\e218\\"; -} + .float-md-none { + float: none !important; + } -.glyphicon-bed:before { - content: \\"\\\\e219\\"; -} + .d-md-inline { + display: inline !important; + } -.glyphicon-apple:before { - content: \\"\\\\f8ff\\"; -} + .d-md-inline-block { + display: inline-block !important; + } -.glyphicon-erase:before { - content: \\"\\\\e221\\"; -} + .d-md-block { + display: block !important; + } -.glyphicon-hourglass:before { - content: \\"⌛\\"; -} + .d-md-grid { + display: grid !important; + } -.glyphicon-lamp:before { - content: \\"\\\\e223\\"; -} + .d-md-table { + display: table !important; + } -.glyphicon-duplicate:before { - content: \\"\\\\e224\\"; -} + .d-md-table-row { + display: table-row !important; + } -.glyphicon-piggy-bank:before { - content: \\"\\\\e225\\"; -} + .d-md-table-cell { + display: table-cell !important; + } -.glyphicon-scissors:before { - content: \\"\\\\e226\\"; -} + .d-md-flex { + display: flex !important; + } -.glyphicon-bitcoin:before { - content: \\"\\\\e227\\"; -} + .d-md-inline-flex { + display: inline-flex !important; + } -.glyphicon-btc:before { - content: \\"\\\\e227\\"; -} + .d-md-none { + display: none !important; + } -.glyphicon-xbt:before { - content: \\"\\\\e227\\"; -} + .flex-md-fill { + flex: 1 1 auto !important; + } -.glyphicon-yen:before { - content: \\"¥\\"; -} + .flex-md-row { + flex-direction: row !important; + } -.glyphicon-jpy:before { - content: \\"¥\\"; -} + .flex-md-column { + flex-direction: column !important; + } -.glyphicon-ruble:before { - content: \\"₽\\"; -} + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } -.glyphicon-rub:before { - content: \\"₽\\"; -} + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } -.glyphicon-scale:before { - content: \\"\\\\e230\\"; -} + .flex-md-grow-0 { + flex-grow: 0 !important; + } -.glyphicon-ice-lolly:before { - content: \\"\\\\e231\\"; -} + .flex-md-grow-1 { + flex-grow: 1 !important; + } -.glyphicon-ice-lolly-tasted:before { - content: \\"\\\\e232\\"; -} + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } -.glyphicon-education:before { - content: \\"\\\\e233\\"; -} + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } -.glyphicon-option-horizontal:before { - content: \\"\\\\e234\\"; -} + .flex-md-wrap { + flex-wrap: wrap !important; + } -.glyphicon-option-vertical:before { - content: \\"\\\\e235\\"; -} + .flex-md-nowrap { + flex-wrap: nowrap !important; + } -.glyphicon-menu-hamburger:before { - content: \\"\\\\e236\\"; -} + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } -.glyphicon-modal-window:before { - content: \\"\\\\e237\\"; -} + .gap-md-0 { + gap: 0 !important; + } -.glyphicon-oil:before { - content: \\"\\\\e238\\"; -} + .gap-md-1 { + gap: 0.25rem !important; + } -.glyphicon-grain:before { - content: \\"\\\\e239\\"; -} + .gap-md-2 { + gap: 0.5rem !important; + } -.glyphicon-sunglasses:before { - content: \\"\\\\e240\\"; -} + .gap-md-3 { + gap: 1rem !important; + } -.glyphicon-text-size:before { - content: \\"\\\\e241\\"; -} + .gap-md-4 { + gap: 1.5rem !important; + } -.glyphicon-text-color:before { - content: \\"\\\\e242\\"; -} + .gap-md-5 { + gap: 3rem !important; + } -.glyphicon-text-background:before { - content: \\"\\\\e243\\"; -} + .justify-content-md-start { + justify-content: flex-start !important; + } -.glyphicon-object-align-top:before { - content: \\"\\\\e244\\"; -} + .justify-content-md-end { + justify-content: flex-end !important; + } -.glyphicon-object-align-bottom:before { - content: \\"\\\\e245\\"; -} + .justify-content-md-center { + justify-content: center !important; + } -.glyphicon-object-align-horizontal:before { - content: \\"\\\\e246\\"; -} + .justify-content-md-between { + justify-content: space-between !important; + } -.glyphicon-object-align-left:before { - content: \\"\\\\e247\\"; -} + .justify-content-md-around { + justify-content: space-around !important; + } -.glyphicon-object-align-vertical:before { - content: \\"\\\\e248\\"; -} + .justify-content-md-evenly { + justify-content: space-evenly !important; + } -.glyphicon-object-align-right:before { - content: \\"\\\\e249\\"; -} + .align-items-md-start { + align-items: flex-start !important; + } -.glyphicon-triangle-right:before { - content: \\"\\\\e250\\"; -} + .align-items-md-end { + align-items: flex-end !important; + } -.glyphicon-triangle-left:before { - content: \\"\\\\e251\\"; -} + .align-items-md-center { + align-items: center !important; + } -.glyphicon-triangle-bottom:before { - content: \\"\\\\e252\\"; -} + .align-items-md-baseline { + align-items: baseline !important; + } -.glyphicon-triangle-top:before { - content: \\"\\\\e253\\"; -} + .align-items-md-stretch { + align-items: stretch !important; + } -.glyphicon-console:before { - content: \\"\\\\e254\\"; -} + .align-content-md-start { + align-content: flex-start !important; + } -.glyphicon-superscript:before { - content: \\"\\\\e255\\"; -} + .align-content-md-end { + align-content: flex-end !important; + } -.glyphicon-subscript:before { - content: \\"\\\\e256\\"; -} + .align-content-md-center { + align-content: center !important; + } -.glyphicon-menu-left:before { - content: \\"\\\\e257\\"; -} + .align-content-md-between { + align-content: space-between !important; + } -.glyphicon-menu-right:before { - content: \\"\\\\e258\\"; -} + .align-content-md-around { + align-content: space-around !important; + } -.glyphicon-menu-down:before { - content: \\"\\\\e259\\"; -} + .align-content-md-stretch { + align-content: stretch !important; + } -.glyphicon-menu-up:before { - content: \\"\\\\e260\\"; -} + .align-self-md-auto { + align-self: auto !important; + } -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} + .align-self-md-start { + align-self: flex-start !important; + } -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} + .align-self-md-end { + align-self: flex-end !important; + } -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} + .align-self-md-center { + align-self: center !important; + } -body { - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.428571429; - color: #333333; - background-color: #fff; -} + .align-self-md-baseline { + align-self: baseline !important; + } -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} + .align-self-md-stretch { + align-self: stretch !important; + } -a { - color: #337ab7; - text-decoration: none; -} -a:hover, a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} + .order-md-first { + order: -1 !important; + } -figure { - margin: 0; -} + .order-md-0 { + order: 0 !important; + } -img { - vertical-align: middle; -} + .order-md-1 { + order: 1 !important; + } -.img-responsive { - display: block; - max-width: 100%; - height: auto; -} + .order-md-2 { + order: 2 !important; + } -.img-rounded { - border-radius: 6px; -} + .order-md-3 { + order: 3 !important; + } -.img-thumbnail { - padding: 4px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} + .order-md-4 { + order: 4 !important; + } -.img-circle { - border-radius: 50%; -} + .order-md-5 { + order: 5 !important; + } -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; -} + .order-md-last { + order: 6 !important; + } -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} + .m-md-0 { + margin: 0 !important; + } -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} + .m-md-1 { + margin: 0.25rem !important; + } -[role=button] { - cursor: pointer; -} + .m-md-2 { + margin: 0.5rem !important; + } -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h1 .small, h2 small, -h2 .small, h3 small, -h3 .small, h4 small, -h4 .small, h5 small, -h5 .small, h6 small, -h6 .small, -.h1 small, -.h1 .small, .h2 small, -.h2 .small, .h3 small, -.h3 .small, .h4 small, -.h4 .small, .h5 small, -.h5 .small, .h6 small, -.h6 .small { - font-weight: 400; - line-height: 1; - color: #777777; -} + .m-md-3 { + margin: 1rem !important; + } -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -h1 .small, .h1 small, -.h1 .small, -h2 small, -h2 .small, .h2 small, -.h2 .small, -h3 small, -h3 .small, .h3 small, -.h3 .small { - font-size: 65%; -} + .m-md-4 { + margin: 1.5rem !important; + } -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -h4 .small, .h4 small, -.h4 .small, -h5 small, -h5 .small, .h5 small, -.h5 .small, -h6 small, -h6 .small, .h6 small, -.h6 .small { - font-size: 75%; -} + .m-md-5 { + margin: 3rem !important; + } -h1, .h1 { - font-size: 36px; -} + .m-md-auto { + margin: auto !important; + } -h2, .h2 { - font-size: 30px; -} + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } -h3, .h3 { - font-size: 24px; -} + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } -h4, .h4 { - font-size: 18px; -} + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } -h5, .h5 { - font-size: 14px; -} + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -h6, .h6 { - font-size: 12px; -} + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -p { - margin: 0 0 10px; -} + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } -} -small, -.small { - font-size: 85%; -} + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.text-left { - text-align: left; -} + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -.text-right { - text-align: right; -} + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -.text-center { - text-align: center; -} + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.text-justify { - text-align: justify; -} + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.text-nowrap { - white-space: nowrap; -} + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -.text-lowercase { - text-transform: lowercase; -} + .mt-md-0 { + margin-top: 0 !important; + } -.text-uppercase, .initialism { - text-transform: uppercase; -} + .mt-md-1 { + margin-top: 0.25rem !important; + } -.text-capitalize { - text-transform: capitalize; -} + .mt-md-2 { + margin-top: 0.5rem !important; + } -.text-muted { - color: #777777; -} + .mt-md-3 { + margin-top: 1rem !important; + } -.text-primary { - color: #337ab7; -} + .mt-md-4 { + margin-top: 1.5rem !important; + } -a.text-primary:hover, -a.text-primary:focus { - color: #286090; -} + .mt-md-5 { + margin-top: 3rem !important; + } -.text-success { - color: #3c763d; -} + .mt-md-auto { + margin-top: auto !important; + } -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} + .me-md-0 { + margin-right: 0 !important; + } -.text-info { - color: #31708f; -} + .me-md-1 { + margin-right: 0.25rem !important; + } -a.text-info:hover, -a.text-info:focus { - color: #245269; -} + .me-md-2 { + margin-right: 0.5rem !important; + } -.text-warning { - color: #8a6d3b; -} + .me-md-3 { + margin-right: 1rem !important; + } -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} + .me-md-4 { + margin-right: 1.5rem !important; + } -.text-danger { - color: #a94442; -} + .me-md-5 { + margin-right: 3rem !important; + } -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} + .me-md-auto { + margin-right: auto !important; + } -.bg-primary { - color: #fff; -} + .mb-md-0 { + margin-bottom: 0 !important; + } -.bg-primary { - background-color: #337ab7; -} + .mb-md-1 { + margin-bottom: 0.25rem !important; + } -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; -} + .mb-md-2 { + margin-bottom: 0.5rem !important; + } -.bg-success { - background-color: #dff0d8; -} + .mb-md-3 { + margin-bottom: 1rem !important; + } -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} + .mb-md-4 { + margin-bottom: 1.5rem !important; + } -.bg-info { - background-color: #d9edf7; -} + .mb-md-5 { + margin-bottom: 3rem !important; + } -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} + .mb-md-auto { + margin-bottom: auto !important; + } -.bg-warning { - background-color: #fcf8e3; -} + .ms-md-0 { + margin-left: 0 !important; + } -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} + .ms-md-1 { + margin-left: 0.25rem !important; + } -.bg-danger { - background-color: #f2dede; -} + .ms-md-2 { + margin-left: 0.5rem !important; + } -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} + .ms-md-3 { + margin-left: 1rem !important; + } -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; -} + .ms-md-4 { + margin-left: 1.5rem !important; + } -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ul ol, -ol ul, -ol ol { - margin-bottom: 0; -} + .ms-md-5 { + margin-left: 3rem !important; + } -.list-unstyled { - padding-left: 0; - list-style: none; -} + .ms-md-auto { + margin-left: auto !important; + } -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} + .p-md-0 { + padding: 0 !important; + } -dl { - margin-top: 0; - margin-bottom: 20px; -} + .p-md-1 { + padding: 0.25rem !important; + } -dt, -dd { - line-height: 1.428571429; -} + .p-md-2 { + padding: 0.5rem !important; + } -dt { - font-weight: 700; -} + .p-md-3 { + padding: 1rem !important; + } -dd { - margin-left: 0; -} + .p-md-4 { + padding: 1.5rem !important; + } -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: \\" \\"; -} -.dl-horizontal dd:after { - clear: both; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; + .p-md-5 { + padding: 3rem !important; } - .dl-horizontal dd { - margin-left: 180px; + + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; } -} -abbr[title], -abbr[data-original-title] { - cursor: help; -} + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.initialism { - font-size: 90%; -} + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.428571429; - color: #777777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: \\"— \\"; -} + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eeeeee; - border-left: 0; -} -.blockquote-reverse footer:before, -.blockquote-reverse small:before, -.blockquote-reverse .small:before, -blockquote.pull-right footer:before, -blockquote.pull-right small:before, -blockquote.pull-right .small:before { - content: \\"\\"; -} -.blockquote-reverse footer:after, -.blockquote-reverse small:after, -.blockquote-reverse .small:after, -blockquote.pull-right footer:after, -blockquote.pull-right small:after, -blockquote.pull-right .small:after { - content: \\" —\\"; -} + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.428571429; -} + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; -} + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; -} + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.428571429; - color: #333333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.container:before, .container:after { - display: table; - content: \\" \\"; -} -.container:after { - clear: both; -} -@media (min-width: 768px) { - .container { - width: 750px; + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } -} -@media (min-width: 992px) { - .container { - width: 970px; + + .pt-md-0 { + padding-top: 0 !important; } -} -@media (min-width: 1200px) { - .container { - width: 1170px; + + .pt-md-1 { + padding-top: 0.25rem !important; } -} -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.container-fluid:before, .container-fluid:after { - display: table; - content: \\" \\"; -} -.container-fluid:after { - clear: both; -} + .pt-md-2 { + padding-top: 0.5rem !important; + } -.row { - margin-right: -15px; - margin-left: -15px; -} -.row:before, .row:after { - display: table; - content: \\" \\"; -} -.row:after { - clear: both; -} + .pt-md-3 { + padding-top: 1rem !important; + } -.row-no-gutters { - margin-right: 0; - margin-left: 0; -} -.row-no-gutters [class*=col-] { - padding-right: 0; - padding-left: 0; -} + .pt-md-4 { + padding-top: 1.5rem !important; + } -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} + .pt-md-5 { + padding-top: 3rem !important; + } -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} + .pe-md-0 { + padding-right: 0 !important; + } -.col-xs-1 { - width: 8.3333333333%; -} + .pe-md-1 { + padding-right: 0.25rem !important; + } -.col-xs-2 { - width: 16.6666666667%; -} + .pe-md-2 { + padding-right: 0.5rem !important; + } -.col-xs-3 { - width: 25%; -} + .pe-md-3 { + padding-right: 1rem !important; + } -.col-xs-4 { - width: 33.3333333333%; -} + .pe-md-4 { + padding-right: 1.5rem !important; + } -.col-xs-5 { - width: 41.6666666667%; -} + .pe-md-5 { + padding-right: 3rem !important; + } -.col-xs-6 { - width: 50%; -} + .pb-md-0 { + padding-bottom: 0 !important; + } -.col-xs-7 { - width: 58.3333333333%; -} + .pb-md-1 { + padding-bottom: 0.25rem !important; + } -.col-xs-8 { - width: 66.6666666667%; -} + .pb-md-2 { + padding-bottom: 0.5rem !important; + } -.col-xs-9 { - width: 75%; -} + .pb-md-3 { + padding-bottom: 1rem !important; + } -.col-xs-10 { - width: 83.3333333333%; -} + .pb-md-4 { + padding-bottom: 1.5rem !important; + } -.col-xs-11 { - width: 91.6666666667%; -} + .pb-md-5 { + padding-bottom: 3rem !important; + } -.col-xs-12 { - width: 100%; -} + .ps-md-0 { + padding-left: 0 !important; + } -.col-xs-pull-0 { - right: auto; -} + .ps-md-1 { + padding-left: 0.25rem !important; + } -.col-xs-pull-1 { - right: 8.3333333333%; -} + .ps-md-2 { + padding-left: 0.5rem !important; + } -.col-xs-pull-2 { - right: 16.6666666667%; -} + .ps-md-3 { + padding-left: 1rem !important; + } -.col-xs-pull-3 { - right: 25%; -} + .ps-md-4 { + padding-left: 1.5rem !important; + } -.col-xs-pull-4 { - right: 33.3333333333%; -} + .ps-md-5 { + padding-left: 3rem !important; + } -.col-xs-pull-5 { - right: 41.6666666667%; -} + .text-md-start { + text-align: left !important; + } -.col-xs-pull-6 { - right: 50%; -} + .text-md-end { + text-align: right !important; + } -.col-xs-pull-7 { - right: 58.3333333333%; + .text-md-center { + text-align: center !important; + } } +@media (min-width: 992px) { + .float-lg-start { + float: left !important; + } -.col-xs-pull-8 { - right: 66.6666666667%; -} + .float-lg-end { + float: right !important; + } -.col-xs-pull-9 { - right: 75%; -} + .float-lg-none { + float: none !important; + } -.col-xs-pull-10 { - right: 83.3333333333%; -} + .d-lg-inline { + display: inline !important; + } -.col-xs-pull-11 { - right: 91.6666666667%; -} + .d-lg-inline-block { + display: inline-block !important; + } -.col-xs-pull-12 { - right: 100%; -} + .d-lg-block { + display: block !important; + } -.col-xs-push-0 { - left: auto; -} + .d-lg-grid { + display: grid !important; + } -.col-xs-push-1 { - left: 8.3333333333%; -} + .d-lg-table { + display: table !important; + } -.col-xs-push-2 { - left: 16.6666666667%; -} + .d-lg-table-row { + display: table-row !important; + } -.col-xs-push-3 { - left: 25%; -} + .d-lg-table-cell { + display: table-cell !important; + } -.col-xs-push-4 { - left: 33.3333333333%; -} + .d-lg-flex { + display: flex !important; + } -.col-xs-push-5 { - left: 41.6666666667%; -} + .d-lg-inline-flex { + display: inline-flex !important; + } -.col-xs-push-6 { - left: 50%; -} + .d-lg-none { + display: none !important; + } -.col-xs-push-7 { - left: 58.3333333333%; -} + .flex-lg-fill { + flex: 1 1 auto !important; + } -.col-xs-push-8 { - left: 66.6666666667%; -} + .flex-lg-row { + flex-direction: row !important; + } -.col-xs-push-9 { - left: 75%; -} + .flex-lg-column { + flex-direction: column !important; + } -.col-xs-push-10 { - left: 83.3333333333%; -} + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } -.col-xs-push-11 { - left: 91.6666666667%; -} + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } -.col-xs-push-12 { - left: 100%; -} + .flex-lg-grow-0 { + flex-grow: 0 !important; + } -.col-xs-offset-0 { - margin-left: 0%; -} + .flex-lg-grow-1 { + flex-grow: 1 !important; + } -.col-xs-offset-1 { - margin-left: 8.3333333333%; -} + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } -.col-xs-offset-2 { - margin-left: 16.6666666667%; -} + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } -.col-xs-offset-3 { - margin-left: 25%; -} + .flex-lg-wrap { + flex-wrap: wrap !important; + } -.col-xs-offset-4 { - margin-left: 33.3333333333%; -} + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } -.col-xs-offset-5 { - margin-left: 41.6666666667%; -} + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } -.col-xs-offset-6 { - margin-left: 50%; -} + .gap-lg-0 { + gap: 0 !important; + } -.col-xs-offset-7 { - margin-left: 58.3333333333%; -} + .gap-lg-1 { + gap: 0.25rem !important; + } -.col-xs-offset-8 { - margin-left: 66.6666666667%; -} + .gap-lg-2 { + gap: 0.5rem !important; + } -.col-xs-offset-9 { - margin-left: 75%; -} + .gap-lg-3 { + gap: 1rem !important; + } -.col-xs-offset-10 { - margin-left: 83.3333333333%; -} + .gap-lg-4 { + gap: 1.5rem !important; + } -.col-xs-offset-11 { - margin-left: 91.6666666667%; -} + .gap-lg-5 { + gap: 3rem !important; + } -.col-xs-offset-12 { - margin-left: 100%; -} + .justify-content-lg-start { + justify-content: flex-start !important; + } -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; + .justify-content-lg-end { + justify-content: flex-end !important; } - .col-sm-1 { - width: 8.3333333333%; + .justify-content-lg-center { + justify-content: center !important; } - .col-sm-2 { - width: 16.6666666667%; + .justify-content-lg-between { + justify-content: space-between !important; } - .col-sm-3 { - width: 25%; + .justify-content-lg-around { + justify-content: space-around !important; } - .col-sm-4 { - width: 33.3333333333%; + .justify-content-lg-evenly { + justify-content: space-evenly !important; } - .col-sm-5 { - width: 41.6666666667%; + .align-items-lg-start { + align-items: flex-start !important; } - .col-sm-6 { - width: 50%; + .align-items-lg-end { + align-items: flex-end !important; } - .col-sm-7 { - width: 58.3333333333%; + .align-items-lg-center { + align-items: center !important; } - .col-sm-8 { - width: 66.6666666667%; + .align-items-lg-baseline { + align-items: baseline !important; } - .col-sm-9 { - width: 75%; + .align-items-lg-stretch { + align-items: stretch !important; } - .col-sm-10 { - width: 83.3333333333%; + .align-content-lg-start { + align-content: flex-start !important; } - .col-sm-11 { - width: 91.6666666667%; + .align-content-lg-end { + align-content: flex-end !important; } - .col-sm-12 { - width: 100%; + .align-content-lg-center { + align-content: center !important; } - .col-sm-pull-0 { - right: auto; + .align-content-lg-between { + align-content: space-between !important; } - .col-sm-pull-1 { - right: 8.3333333333%; + .align-content-lg-around { + align-content: space-around !important; } - .col-sm-pull-2 { - right: 16.6666666667%; + .align-content-lg-stretch { + align-content: stretch !important; } - .col-sm-pull-3 { - right: 25%; + .align-self-lg-auto { + align-self: auto !important; } - .col-sm-pull-4 { - right: 33.3333333333%; + .align-self-lg-start { + align-self: flex-start !important; } - .col-sm-pull-5 { - right: 41.6666666667%; + .align-self-lg-end { + align-self: flex-end !important; } - .col-sm-pull-6 { - right: 50%; + .align-self-lg-center { + align-self: center !important; } - .col-sm-pull-7 { - right: 58.3333333333%; + .align-self-lg-baseline { + align-self: baseline !important; } - .col-sm-pull-8 { - right: 66.6666666667%; + .align-self-lg-stretch { + align-self: stretch !important; } - .col-sm-pull-9 { - right: 75%; + .order-lg-first { + order: -1 !important; } - .col-sm-pull-10 { - right: 83.3333333333%; + .order-lg-0 { + order: 0 !important; } - .col-sm-pull-11 { - right: 91.6666666667%; + .order-lg-1 { + order: 1 !important; } - .col-sm-pull-12 { - right: 100%; + .order-lg-2 { + order: 2 !important; } - .col-sm-push-0 { - left: auto; + .order-lg-3 { + order: 3 !important; } - .col-sm-push-1 { - left: 8.3333333333%; + .order-lg-4 { + order: 4 !important; } - .col-sm-push-2 { - left: 16.6666666667%; + .order-lg-5 { + order: 5 !important; } - .col-sm-push-3 { - left: 25%; + .order-lg-last { + order: 6 !important; } - .col-sm-push-4 { - left: 33.3333333333%; + .m-lg-0 { + margin: 0 !important; } - .col-sm-push-5 { - left: 41.6666666667%; + .m-lg-1 { + margin: 0.25rem !important; } - .col-sm-push-6 { - left: 50%; + .m-lg-2 { + margin: 0.5rem !important; } - .col-sm-push-7 { - left: 58.3333333333%; + .m-lg-3 { + margin: 1rem !important; } - .col-sm-push-8 { - left: 66.6666666667%; + .m-lg-4 { + margin: 1.5rem !important; } - .col-sm-push-9 { - left: 75%; + .m-lg-5 { + margin: 3rem !important; } - .col-sm-push-10 { - left: 83.3333333333%; + .m-lg-auto { + margin: auto !important; } - .col-sm-push-11 { - left: 91.6666666667%; + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; } - .col-sm-push-12 { - left: 100%; + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } - .col-sm-offset-0 { - margin-left: 0%; + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } - .col-sm-offset-1 { - margin-left: 8.3333333333%; + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } - .col-sm-offset-2 { - margin-left: 16.6666666667%; + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } - .col-sm-offset-3 { - margin-left: 25%; + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } - .col-sm-offset-4 { - margin-left: 33.3333333333%; + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } - .col-sm-offset-5 { - margin-left: 41.6666666667%; + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } - .col-sm-offset-6 { - margin-left: 50%; + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .col-sm-offset-7 { - margin-left: 58.3333333333%; + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .col-sm-offset-8 { - margin-left: 66.6666666667%; + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .col-sm-offset-9 { - margin-left: 75%; + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .col-sm-offset-10 { - margin-left: 83.3333333333%; + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .col-sm-offset-11 { - margin-left: 91.6666666667%; + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .col-sm-offset-12 { - margin-left: 100%; + .mt-lg-0 { + margin-top: 0 !important; } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; + + .mt-lg-1 { + margin-top: 0.25rem !important; } - .col-md-1 { - width: 8.3333333333%; + .mt-lg-2 { + margin-top: 0.5rem !important; } - .col-md-2 { - width: 16.6666666667%; + .mt-lg-3 { + margin-top: 1rem !important; } - .col-md-3 { - width: 25%; + .mt-lg-4 { + margin-top: 1.5rem !important; } - .col-md-4 { - width: 33.3333333333%; + .mt-lg-5 { + margin-top: 3rem !important; } - .col-md-5 { - width: 41.6666666667%; + .mt-lg-auto { + margin-top: auto !important; } - .col-md-6 { - width: 50%; + .me-lg-0 { + margin-right: 0 !important; } - .col-md-7 { - width: 58.3333333333%; + .me-lg-1 { + margin-right: 0.25rem !important; } - .col-md-8 { - width: 66.6666666667%; + .me-lg-2 { + margin-right: 0.5rem !important; } - .col-md-9 { - width: 75%; + .me-lg-3 { + margin-right: 1rem !important; } - .col-md-10 { - width: 83.3333333333%; + .me-lg-4 { + margin-right: 1.5rem !important; } - .col-md-11 { - width: 91.6666666667%; + .me-lg-5 { + margin-right: 3rem !important; } - .col-md-12 { - width: 100%; + .me-lg-auto { + margin-right: auto !important; } - .col-md-pull-0 { - right: auto; + .mb-lg-0 { + margin-bottom: 0 !important; } - .col-md-pull-1 { - right: 8.3333333333%; + .mb-lg-1 { + margin-bottom: 0.25rem !important; } - .col-md-pull-2 { - right: 16.6666666667%; + .mb-lg-2 { + margin-bottom: 0.5rem !important; } - .col-md-pull-3 { - right: 25%; + .mb-lg-3 { + margin-bottom: 1rem !important; } - .col-md-pull-4 { - right: 33.3333333333%; + .mb-lg-4 { + margin-bottom: 1.5rem !important; } - .col-md-pull-5 { - right: 41.6666666667%; + .mb-lg-5 { + margin-bottom: 3rem !important; } - .col-md-pull-6 { - right: 50%; + .mb-lg-auto { + margin-bottom: auto !important; } - .col-md-pull-7 { - right: 58.3333333333%; + .ms-lg-0 { + margin-left: 0 !important; } - .col-md-pull-8 { - right: 66.6666666667%; + .ms-lg-1 { + margin-left: 0.25rem !important; } - .col-md-pull-9 { - right: 75%; + .ms-lg-2 { + margin-left: 0.5rem !important; } - .col-md-pull-10 { - right: 83.3333333333%; + .ms-lg-3 { + margin-left: 1rem !important; } - .col-md-pull-11 { - right: 91.6666666667%; + .ms-lg-4 { + margin-left: 1.5rem !important; } - .col-md-pull-12 { - right: 100%; + .ms-lg-5 { + margin-left: 3rem !important; } - .col-md-push-0 { - left: auto; + .ms-lg-auto { + margin-left: auto !important; } - .col-md-push-1 { - left: 8.3333333333%; + .p-lg-0 { + padding: 0 !important; } - .col-md-push-2 { - left: 16.6666666667%; + .p-lg-1 { + padding: 0.25rem !important; } - .col-md-push-3 { - left: 25%; + .p-lg-2 { + padding: 0.5rem !important; } - .col-md-push-4 { - left: 33.3333333333%; + .p-lg-3 { + padding: 1rem !important; } - .col-md-push-5 { - left: 41.6666666667%; + .p-lg-4 { + padding: 1.5rem !important; } - .col-md-push-6 { - left: 50%; + .p-lg-5 { + padding: 3rem !important; } - .col-md-push-7 { - left: 58.3333333333%; + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; } - .col-md-push-8 { - left: 66.6666666667%; + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; } - .col-md-push-9 { - left: 75%; + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; } - .col-md-push-10 { - left: 83.3333333333%; + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; } - .col-md-push-11 { - left: 91.6666666667%; + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; } - .col-md-push-12 { - left: 100%; + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; } - .col-md-offset-0 { - margin-left: 0%; + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; } - .col-md-offset-1 { - margin-left: 8.3333333333%; + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } - .col-md-offset-2 { - margin-left: 16.6666666667%; + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } - .col-md-offset-3 { - margin-left: 25%; + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } - .col-md-offset-4 { - margin-left: 33.3333333333%; + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } - .col-md-offset-5 { - margin-left: 41.6666666667%; + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } - .col-md-offset-6 { - margin-left: 50%; + .pt-lg-0 { + padding-top: 0 !important; } - .col-md-offset-7 { - margin-left: 58.3333333333%; + .pt-lg-1 { + padding-top: 0.25rem !important; } - .col-md-offset-8 { - margin-left: 66.6666666667%; + .pt-lg-2 { + padding-top: 0.5rem !important; } - .col-md-offset-9 { - margin-left: 75%; + .pt-lg-3 { + padding-top: 1rem !important; } - .col-md-offset-10 { - margin-left: 83.3333333333%; + .pt-lg-4 { + padding-top: 1.5rem !important; } - .col-md-offset-11 { - margin-left: 91.6666666667%; + .pt-lg-5 { + padding-top: 3rem !important; } - .col-md-offset-12 { - margin-left: 100%; + .pe-lg-0 { + padding-right: 0 !important; } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; + + .pe-lg-1 { + padding-right: 0.25rem !important; } - .col-lg-1 { - width: 8.3333333333%; + .pe-lg-2 { + padding-right: 0.5rem !important; } - .col-lg-2 { - width: 16.6666666667%; + .pe-lg-3 { + padding-right: 1rem !important; } - .col-lg-3 { - width: 25%; + .pe-lg-4 { + padding-right: 1.5rem !important; } - .col-lg-4 { - width: 33.3333333333%; + .pe-lg-5 { + padding-right: 3rem !important; } - .col-lg-5 { - width: 41.6666666667%; + .pb-lg-0 { + padding-bottom: 0 !important; } - .col-lg-6 { - width: 50%; + .pb-lg-1 { + padding-bottom: 0.25rem !important; } - .col-lg-7 { - width: 58.3333333333%; + .pb-lg-2 { + padding-bottom: 0.5rem !important; } - .col-lg-8 { - width: 66.6666666667%; + .pb-lg-3 { + padding-bottom: 1rem !important; } - .col-lg-9 { - width: 75%; + .pb-lg-4 { + padding-bottom: 1.5rem !important; } - .col-lg-10 { - width: 83.3333333333%; + .pb-lg-5 { + padding-bottom: 3rem !important; } - .col-lg-11 { - width: 91.6666666667%; + .ps-lg-0 { + padding-left: 0 !important; } - .col-lg-12 { - width: 100%; + .ps-lg-1 { + padding-left: 0.25rem !important; } - .col-lg-pull-0 { - right: auto; + .ps-lg-2 { + padding-left: 0.5rem !important; } - .col-lg-pull-1 { - right: 8.3333333333%; + .ps-lg-3 { + padding-left: 1rem !important; } - .col-lg-pull-2 { - right: 16.6666666667%; + .ps-lg-4 { + padding-left: 1.5rem !important; } - .col-lg-pull-3 { - right: 25%; + .ps-lg-5 { + padding-left: 3rem !important; } - .col-lg-pull-4 { - right: 33.3333333333%; + .text-lg-start { + text-align: left !important; } - .col-lg-pull-5 { - right: 41.6666666667%; + .text-lg-end { + text-align: right !important; } - .col-lg-pull-6 { - right: 50%; + .text-lg-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .float-xl-start { + float: left !important; } - .col-lg-pull-7 { - right: 58.3333333333%; + .float-xl-end { + float: right !important; } - .col-lg-pull-8 { - right: 66.6666666667%; + .float-xl-none { + float: none !important; } - .col-lg-pull-9 { - right: 75%; + .d-xl-inline { + display: inline !important; } - .col-lg-pull-10 { - right: 83.3333333333%; + .d-xl-inline-block { + display: inline-block !important; } - .col-lg-pull-11 { - right: 91.6666666667%; + .d-xl-block { + display: block !important; } - .col-lg-pull-12 { - right: 100%; + .d-xl-grid { + display: grid !important; } - .col-lg-push-0 { - left: auto; + .d-xl-table { + display: table !important; } - .col-lg-push-1 { - left: 8.3333333333%; + .d-xl-table-row { + display: table-row !important; } - .col-lg-push-2 { - left: 16.6666666667%; + .d-xl-table-cell { + display: table-cell !important; } - .col-lg-push-3 { - left: 25%; + .d-xl-flex { + display: flex !important; } - .col-lg-push-4 { - left: 33.3333333333%; + .d-xl-inline-flex { + display: inline-flex !important; } - .col-lg-push-5 { - left: 41.6666666667%; + .d-xl-none { + display: none !important; } - .col-lg-push-6 { - left: 50%; + .flex-xl-fill { + flex: 1 1 auto !important; } - .col-lg-push-7 { - left: 58.3333333333%; + .flex-xl-row { + flex-direction: row !important; } - .col-lg-push-8 { - left: 66.6666666667%; + .flex-xl-column { + flex-direction: column !important; } - .col-lg-push-9 { - left: 75%; + .flex-xl-row-reverse { + flex-direction: row-reverse !important; } - .col-lg-push-10 { - left: 83.3333333333%; + .flex-xl-column-reverse { + flex-direction: column-reverse !important; } - .col-lg-push-11 { - left: 91.6666666667%; + .flex-xl-grow-0 { + flex-grow: 0 !important; } - .col-lg-push-12 { - left: 100%; + .flex-xl-grow-1 { + flex-grow: 1 !important; } - .col-lg-offset-0 { - margin-left: 0%; + .flex-xl-shrink-0 { + flex-shrink: 0 !important; } - .col-lg-offset-1 { - margin-left: 8.3333333333%; + .flex-xl-shrink-1 { + flex-shrink: 1 !important; } - .col-lg-offset-2 { - margin-left: 16.6666666667%; + .flex-xl-wrap { + flex-wrap: wrap !important; } - .col-lg-offset-3 { - margin-left: 25%; + .flex-xl-nowrap { + flex-wrap: nowrap !important; } - .col-lg-offset-4 { - margin-left: 33.3333333333%; + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; } - .col-lg-offset-5 { - margin-left: 41.6666666667%; + .gap-xl-0 { + gap: 0 !important; } - .col-lg-offset-6 { - margin-left: 50%; + .gap-xl-1 { + gap: 0.25rem !important; } - .col-lg-offset-7 { - margin-left: 58.3333333333%; + .gap-xl-2 { + gap: 0.5rem !important; } - .col-lg-offset-8 { - margin-left: 66.6666666667%; + .gap-xl-3 { + gap: 1rem !important; } - .col-lg-offset-9 { - margin-left: 75%; + .gap-xl-4 { + gap: 1.5rem !important; } - .col-lg-offset-10 { - margin-left: 83.3333333333%; + .gap-xl-5 { + gap: 3rem !important; } - .col-lg-offset-11 { - margin-left: 91.6666666667%; + .justify-content-xl-start { + justify-content: flex-start !important; } - .col-lg-offset-12 { - margin-left: 100%; + .justify-content-xl-end { + justify-content: flex-end !important; } -} -table { - background-color: transparent; -} -table col[class*=col-] { - position: static; - display: table-column; - float: none; -} -table td[class*=col-], -table th[class*=col-] { - position: static; - display: table-cell; - float: none; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; -} + .justify-content-xl-center { + justify-content: center !important; + } -th { - text-align: left; -} + .justify-content-xl-between { + justify-content: space-between !important; + } -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > thead > tr > td, -.table > tbody > tr > th, -.table > tbody > tr > td, -.table > tfoot > tr > th, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.428571429; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > th, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} + .justify-content-xl-around { + justify-content: space-around !important; + } -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; -} + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > th, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > th, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} + .align-items-xl-start { + align-items: flex-start !important; + } -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} + .align-items-xl-end { + align-items: flex-end !important; + } -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} + .align-items-xl-center { + align-items: center !important; + } -.table > thead > tr > td.active, -.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} + .align-items-xl-baseline { + align-items: baseline !important; + } -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} + .align-items-xl-stretch { + align-items: stretch !important; + } -.table > thead > tr > td.success, -.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} + .align-content-xl-start { + align-content: flex-start !important; + } -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} + .align-content-xl-end { + align-content: flex-end !important; + } -.table > thead > tr > td.info, -.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} + .align-content-xl-center { + align-content: center !important; + } -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} + .align-content-xl-between { + align-content: space-between !important; + } -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} + .align-content-xl-around { + align-content: space-around !important; + } -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} + .align-content-xl-stretch { + align-content: stretch !important; + } -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} + .align-self-xl-auto { + align-self: auto !important; + } -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} + .align-self-xl-start { + align-self: flex-start !important; + } -.table-responsive { - min-height: 0.01%; - overflow-x: auto; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; + .align-self-xl-end { + align-self: flex-end !important; } - .table-responsive > .table { - margin-bottom: 0; + + .align-self-xl-center { + align-self: center !important; } - .table-responsive > .table > thead > tr > th, -.table-responsive > .table > thead > tr > td, -.table-responsive > .table > tbody > tr > th, -.table-responsive > .table > tbody > tr > td, -.table-responsive > .table > tfoot > tr > th, -.table-responsive > .table > tfoot > tr > td { - white-space: nowrap; + + .align-self-xl-baseline { + align-self: baseline !important; } - .table-responsive > .table-bordered { - border: 0; + + .align-self-xl-stretch { + align-self: stretch !important; } - .table-responsive > .table-bordered > thead > tr > th:first-child, -.table-responsive > .table-bordered > thead > tr > td:first-child, -.table-responsive > .table-bordered > tbody > tr > th:first-child, -.table-responsive > .table-bordered > tbody > tr > td:first-child, -.table-responsive > .table-bordered > tfoot > tr > th:first-child, -.table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; + + .order-xl-first { + order: -1 !important; } - .table-responsive > .table-bordered > thead > tr > th:last-child, -.table-responsive > .table-bordered > thead > tr > td:last-child, -.table-responsive > .table-bordered > tbody > tr > th:last-child, -.table-responsive > .table-bordered > tbody > tr > td:last-child, -.table-responsive > .table-bordered > tfoot > tr > th:last-child, -.table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; + + .order-xl-0 { + order: 0 !important; } - .table-responsive > .table-bordered > tbody > tr:last-child > th, -.table-responsive > .table-bordered > tbody > tr:last-child > td, -.table-responsive > .table-bordered > tfoot > tr:last-child > th, -.table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; + + .order-xl-1 { + order: 1 !important; } -} -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} + .order-xl-2 { + order: 2 !important; + } -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} + .order-xl-3 { + order: 3 !important; + } -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: 700; -} + .order-xl-4 { + order: 4 !important; + } -input[type=search] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - appearance: none; -} + .order-xl-5 { + order: 5 !important; + } -input[type=radio], -input[type=checkbox] { - margin: 4px 0 0; - margin-top: 1px \\\\9 ; - line-height: normal; -} -input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], -input[type=checkbox][disabled], -input[type=checkbox].disabled, -fieldset[disabled] input[type=checkbox] { - cursor: not-allowed; -} + .order-xl-last { + order: 6 !important; + } -input[type=file] { - display: block; -} + .m-xl-0 { + margin: 0 !important; + } -input[type=range] { - display: block; - width: 100%; -} + .m-xl-1 { + margin: 0.25rem !important; + } -select[multiple], -select[size] { - height: auto; -} + .m-xl-2 { + margin: 0.5rem !important; + } -input[type=file]:focus, -input[type=radio]:focus, -input[type=checkbox]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} + .m-xl-3 { + margin: 1rem !important; + } -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.428571429; - color: #555555; -} + .m-xl-4 { + margin: 1.5rem !important; + } -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - color: #555555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; -} -.form-control[disabled], fieldset[disabled] .form-control { - cursor: not-allowed; -} + .m-xl-5 { + margin: 3rem !important; + } -textarea.form-control { - height: auto; -} + .m-xl-auto { + margin: auto !important; + } -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type=date].form-control, -input[type=time].form-control, -input[type=datetime-local].form-control, -input[type=month].form-control { - line-height: 34px; + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } - input[type=date].input-sm, -.input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date], -input[type=time].input-sm, -.input-group-sm > .input-group-btn > input[type=time].btn, -.input-group-sm input[type=time], -input[type=datetime-local].input-sm, -.input-group-sm > .input-group-btn > input[type=datetime-local].btn, -.input-group-sm input[type=datetime-local], -input[type=month].input-sm, -.input-group-sm > .input-group-btn > input[type=month].btn, -.input-group-sm input[type=month] { - line-height: 30px; + + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } - input[type=date].input-lg, -.input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date], -input[type=time].input-lg, -.input-group-lg > .input-group-btn > input[type=time].btn, -.input-group-lg input[type=time], -input[type=datetime-local].input-lg, -.input-group-lg > .input-group-btn > input[type=datetime-local].btn, -.input-group-lg input[type=datetime-local], -input[type=month].input-lg, -.input-group-lg > .input-group-btn > input[type=month].btn, -.input-group-lg input[type=month] { - line-height: 46px; + + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio.disabled label, fieldset[disabled] .radio label, -.checkbox.disabled label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; -} + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } -.radio input[type=radio], -.radio-inline input[type=radio], -.checkbox input[type=checkbox], -.checkbox-inline input[type=checkbox] { - position: absolute; - margin-top: 4px \\\\9 ; - margin-left: -20px; -} + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - vertical-align: middle; - cursor: pointer; -} -.radio-inline.disabled, fieldset[disabled] .radio-inline, -.checkbox-inline.disabled, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, -.input-group-lg > .form-control-static.input-group-addon, -.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, -.input-group-sm > .form-control-static.input-group-addon, -.input-group-sm > .input-group-btn > .form-control-static.btn { - padding-right: 0; - padding-left: 0; -} + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 30px; - line-height: 30px; -} + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select[multiple].form-control, -.input-group-sm > select[multiple].input-group-addon, -.input-group-sm > .input-group-btn > select[multiple].btn { - height: auto; -} + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; -} + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 46px; - line-height: 46px; -} + .mt-xl-0 { + margin-top: 0 !important; + } -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select[multiple].form-control, -.input-group-lg > select[multiple].input-group-addon, -.input-group-lg > .input-group-btn > select[multiple].btn { - height: auto; -} + .mt-xl-1 { + margin-top: 0.25rem !important; + } -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.3333333; -} + .mt-xl-2 { + margin-top: 0.5rem !important; + } -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} + .mt-xl-3 { + margin-top: 1rem !important; + } -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} + .mt-xl-4 { + margin-top: 1.5rem !important; + } -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, -.input-group-lg > .input-group-addon + .form-control-feedback, -.input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} + .mt-xl-5 { + margin-top: 3rem !important; + } -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, -.input-group-sm > .input-group-addon + .form-control-feedback, -.input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} + .mt-xl-auto { + margin-top: auto !important; + } -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; -} -.has-success .form-control-feedback { - color: #3c763d; -} + .me-xl-0 { + margin-right: 0 !important; + } -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} + .me-xl-1 { + margin-right: 0.25rem !important; + } -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; -} -.has-error .form-control-feedback { - color: #a94442; -} + .me-xl-2 { + margin-right: 0.5rem !important; + } -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} + .me-xl-3 { + margin-right: 1rem !important; + } -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} + .me-xl-4 { + margin-right: 1.5rem !important; + } -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; + .me-xl-5 { + margin-right: 3rem !important; } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; + + .me-xl-auto { + margin-right: auto !important; } - .form-inline .form-control-static { - display: inline-block; + + .mb-xl-0 { + margin-bottom: 0 !important; } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; + + .mb-xl-1 { + margin-bottom: 0.25rem !important; } - .form-inline .input-group .input-group-addon, -.form-inline .input-group .input-group-btn, -.form-inline .input-group .form-control { - width: auto; + + .mb-xl-2 { + margin-bottom: 0.5rem !important; } - .form-inline .input-group > .form-control { - width: 100%; + + .mb-xl-3 { + margin-bottom: 1rem !important; } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; + + .mb-xl-4 { + margin-bottom: 1.5rem !important; } - .form-inline .radio, -.form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; + + .mb-xl-5 { + margin-bottom: 3rem !important; } - .form-inline .radio label, -.form-inline .checkbox label { - padding-left: 0; + + .mb-xl-auto { + margin-bottom: auto !important; } - .form-inline .radio input[type=radio], -.form-inline .checkbox input[type=checkbox] { - position: relative; - margin-left: 0; + + .ms-xl-0 { + margin-left: 0 !important; } - .form-inline .has-feedback .form-control-feedback { - top: 0; + + .ms-xl-1 { + margin-left: 0.25rem !important; } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: \\" \\"; -} -.form-horizontal .form-group:after { - clear: both; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; + .ms-xl-2 { + margin-left: 0.5rem !important; } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; + + .ms-xl-3 { + margin-left: 1rem !important; } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; + + .ms-xl-4 { + margin-left: 1.5rem !important; } -} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, .btn[disabled], fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - opacity: 0.65; - -webkit-box-shadow: none; - box-shadow: none; -} + .ms-xl-5 { + margin-left: 3rem !important; + } -a.btn.disabled, fieldset[disabled] a.btn { - pointer-events: none; -} + .ms-xl-auto { + margin-left: auto !important; + } -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - background-image: none; - border-color: #adadad; -} -.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} + .p-xl-0 { + padding: 0 !important; + } -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - background-image: none; - border-color: #204d74; -} -.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} + .p-xl-1 { + padding: 0.25rem !important; + } -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - background-image: none; - border-color: #398439; -} -.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; -} -.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} + .p-xl-2 { + padding: 0.5rem !important; + } -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - background-image: none; - border-color: #269abc; -} -.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} + .p-xl-3 { + padding: 1rem !important; + } -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - background-image: none; - border-color: #d58512; -} -.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} + .p-xl-4 { + padding: 1.5rem !important; + } -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - background-image: none; - border-color: #ac2925; -} -.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} + .p-xl-5 { + padding: 3rem !important; + } -.btn-link { - font-weight: 400; - color: #337ab7; - border-radius: 0; -} -.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; -} -.btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; -} + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.btn-lg, .btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.btn-sm, .btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.btn-block { - display: block; - width: 100%; -} + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -.btn-block + .btn-block { - margin-top: 5px; -} + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -input[type=submit].btn-block, -input[type=reset].btn-block, -input[type=button].btn-block { - width: 100%; -} + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.in { - opacity: 1; -} + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -.collapse { - display: none; -} -.collapse.in { - display: block; -} + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -tr.collapse.in { - display: table-row; -} + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -tbody.collapse.in { - display: table-row-group; -} + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \\\\9 ; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} + .pt-xl-0 { + padding-top: 0 !important; + } -.dropup, -.dropdown { - position: relative; -} + .pt-xl-1 { + padding-top: 0.25rem !important; + } -.dropdown-toggle:focus { - outline: 0; -} + .pt-xl-2 { + padding-top: 0.5rem !important; + } -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.428571429; - color: #333333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} + .pt-xl-3 { + padding-top: 1rem !important; + } -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} + .pt-xl-4 { + padding-top: 1.5rem !important; + } -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; -} -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} + .pt-xl-5 { + padding-top: 3rem !important; + } -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} + .pe-xl-0 { + padding-right: 0 !important; + } -.dropdown-menu-right { - right: 0; - left: auto; -} + .pe-xl-1 { + padding-right: 0.25rem !important; + } -.dropdown-menu-left { - right: auto; - left: 0; -} + .pe-xl-2 { + padding-right: 0.5rem !important; + } -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.428571429; - color: #777777; - white-space: nowrap; -} + .pe-xl-3 { + padding-right: 1rem !important; + } -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; -} + .pe-xl-4 { + padding-right: 1.5rem !important; + } -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} + .pe-xl-5 { + padding-right: 3rem !important; + } -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: \\"\\"; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \\\\9 ; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} + .pb-xl-0 { + padding-bottom: 0 !important; + } -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; + .pb-xl-1 { + padding-bottom: 0.25rem !important; } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; + + .pb-xl-2 { + padding-bottom: 0.5rem !important; } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:hover, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} + .pb-xl-3 { + padding-bottom: 1rem !important; + } -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar:before, .btn-toolbar:after { - display: table; - content: \\" \\"; -} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar .btn, -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} + .pb-xl-5 { + padding-bottom: 3rem !important; + } -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} + .ps-xl-0 { + padding-left: 0 !important; + } -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} + .ps-xl-1 { + padding-left: 0.25rem !important; + } -.btn-group > .btn-group { - float: left; -} + .ps-xl-2 { + padding-left: 0.5rem !important; + } -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} + .ps-xl-3 { + padding-left: 1rem !important; + } -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} + .ps-xl-4 { + padding-left: 1.5rem !important; + } -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} + .ps-xl-5 { + padding-left: 3rem !important; + } -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} + .text-xl-start { + text-align: left !important; + } -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; -} + .text-xl-end { + text-align: right !important; + } -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; + .text-xl-center { + text-align: center !important; + } } +@media (min-width: 1400px) { + .float-xxl-start { + float: left !important; + } -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} + .float-xxl-end { + float: right !important; + } -.btn .caret { - margin-left: 0; -} + .float-xxl-none { + float: none !important; + } -.btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} + .d-xxl-inline { + display: inline !important; + } -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; -} + .d-xxl-inline-block { + display: inline-block !important; + } -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { - display: table; - content: \\" \\"; -} -.btn-group-vertical > .btn-group:after { - clear: both; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} + .d-xxl-block { + display: block !important; + } -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} + .d-xxl-grid { + display: grid !important; + } -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} + .d-xxl-table { + display: table !important; + } -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} + .d-xxl-table-row { + display: table-row !important; + } -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} + .d-xxl-table-cell { + display: table-cell !important; + } -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} + .d-xxl-flex { + display: flex !important; + } -[data-toggle=buttons] > .btn input[type=radio], -[data-toggle=buttons] > .btn input[type=checkbox], -[data-toggle=buttons] > .btn-group > .btn input[type=radio], -[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} + .d-xxl-inline-flex { + display: inline-flex !important; + } -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*=col-] { - float: none; - padding-right: 0; - padding-left: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group .form-control:focus { - z-index: 3; -} + .d-xxl-none { + display: none !important; + } -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} + .flex-xxl-fill { + flex: 1 1 auto !important; + } -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} + .flex-xxl-row { + flex-direction: row !important; + } -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: 400; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type=radio], -.input-group-addon input[type=checkbox] { - margin-top: 0; -} + .flex-xxl-column { + flex-direction: column !important; + } -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } -.input-group-addon:first-child { - border-right: 0; -} + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } -.input-group-addon:last-child { - border-left: 0; -} + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; -} + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav:before, .nav:after { - display: table; - content: \\" \\"; -} -.nav:after { - clear: both; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.nav > li.disabled > a { - color: #777777; -} -.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.428571429; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; -} -.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} + .flex-xxl-wrap { + flex-wrap: wrap !important; + } -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } -.nav-justified, .nav-tabs.nav-justified { - width: 100%; -} -.nav-justified > li, .nav-tabs.nav-justified > li { - float: none; -} -.nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; + + .gap-xxl-0 { + gap: 0 !important; } -} -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; + .gap-xxl-1 { + gap: 0.25rem !important; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border-bottom-color: #fff; + + .gap-xxl-2 { + gap: 0.5rem !important; } -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} + .gap-xxl-3 { + gap: 1rem !important; + } -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} + .gap-xxl-4 { + gap: 1.5rem !important; + } -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -.navbar:before, .navbar:after { - display: table; - content: \\" \\"; -} -.navbar:after { - clear: both; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; + .gap-xxl-5 { + gap: 3rem !important; } -} -.navbar-header:before, .navbar-header:after { - display: table; - content: \\" \\"; -} -.navbar-header:after { - clear: both; -} -@media (min-width: 768px) { - .navbar-header { - float: left; + .justify-content-xxl-start { + justify-content: flex-start !important; } -} -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse:before, .navbar-collapse:after { - display: table; - content: \\" \\"; -} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; + .justify-content-xxl-end { + justify-content: flex-end !important; } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; + + .justify-content-xxl-center { + justify-content: center !important; } - .navbar-collapse.in { - overflow-y: visible; + + .justify-content-xxl-between { + justify-content: space-between !important; } - .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; + + .justify-content-xxl-around { + justify-content: space-around !important; } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 200px; + .justify-content-xxl-evenly { + justify-content: space-evenly !important; } -} -@media (min-width: 768px) { - .navbar-fixed-top, -.navbar-fixed-bottom { - border-radius: 0; + + .align-items-xxl-start { + align-items: flex-start !important; } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} + .align-items-xxl-end { + align-items: flex-end !important; + } -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} + .align-items-xxl-center { + align-items: center !important; + } -.container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; + .align-items-xxl-baseline { + align-items: baseline !important; } -} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; + .align-items-xxl-stretch { + align-items: stretch !important; } -} -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { - margin-left: -15px; + .align-content-xxl-start { + align-content: flex-start !important; } -} -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-right: 15px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; + .align-content-xxl-end { + align-content: flex-end !important; } -} -.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; + .align-content-xxl-center { + align-content: center !important; } - .navbar-nav .open .dropdown-menu > li > a, -.navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; + + .align-content-xxl-between { + align-content: space-between !important; } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; + + .align-content-xxl-around { + align-content: space-around !important; } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; + + .align-content-xxl-stretch { + align-content: stretch !important; + } + + .align-self-xxl-auto { + align-self: auto !important; } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; + + .align-self-xxl-start { + align-self: flex-start !important; } - .navbar-nav > li { - float: left; + + .align-self-xxl-end { + align-self: flex-end !important; } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; + + .align-self-xxl-center { + align-self: center !important; } -} -.navbar-form { - padding: 10px 15px; - margin-right: -15px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px; -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; + .align-self-xxl-baseline { + align-self: baseline !important; } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; + + .align-self-xxl-stretch { + align-self: stretch !important; } - .navbar-form .form-control-static { - display: inline-block; + + .order-xxl-first { + order: -1 !important; } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; + + .order-xxl-0 { + order: 0 !important; } - .navbar-form .input-group .input-group-addon, -.navbar-form .input-group .input-group-btn, -.navbar-form .input-group .form-control { - width: auto; + + .order-xxl-1 { + order: 1 !important; } - .navbar-form .input-group > .form-control { - width: 100%; + + .order-xxl-2 { + order: 2 !important; } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; + + .order-xxl-3 { + order: 3 !important; } - .navbar-form .radio, -.navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; + + .order-xxl-4 { + order: 4 !important; } - .navbar-form .radio label, -.navbar-form .checkbox label { - padding-left: 0; + + .order-xxl-5 { + order: 5 !important; } - .navbar-form .radio input[type=radio], -.navbar-form .checkbox input[type=checkbox] { - position: relative; - margin-left: 0; + + .order-xxl-last { + order: 6 !important; } - .navbar-form .has-feedback .form-control-feedback { - top: 0; + + .m-xxl-0 { + margin: 0 !important; } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; + + .m-xxl-1 { + margin: 0.25rem !important; } - .navbar-form .form-group:last-child { - margin-bottom: 0; + + .m-xxl-2 { + margin: 0.5rem !important; } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; + + .m-xxl-3 { + margin: 1rem !important; } -} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} + .m-xxl-4 { + margin: 1.5rem !important; + } -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} + .m-xxl-5 { + margin: 3rem !important; + } -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 14px; - margin-bottom: 14px; -} + .m-xxl-auto { + margin: auto !important; + } -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } - .navbar-right { - float: right !important; - margin-right: -15px; + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } - .navbar-right ~ .navbar-right { - margin-right: 0; + + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav > li > a { - color: #777; -} -.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; + + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; + + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; + + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; + + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-default .btn-link { - color: #777; -} -.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; -} -.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} -.navbar-inverse { - background-color: #222; - border-color: #090909; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #090909; -} -.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #090909; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; + + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; + + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; + + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; + + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; + + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; } -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: \\"/ \\"; -} -.breadcrumb > .active { - color: #777777; -} + .mt-xxl-0 { + margin-top: 0 !important; + } -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.428571429; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -.pagination > li > a:hover, .pagination > li > a:focus, -.pagination > li > span:hover, -.pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, -.pagination > .active > span, -.pagination > .active > span:hover, -.pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} + .mt-xxl-1 { + margin-top: 0.25rem !important; + } -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} + .mt-xxl-2 { + margin-top: 0.5rem !important; + } -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} + .mt-xxl-3 { + margin-top: 1rem !important; + } -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; -} -.pager:before, .pager:after { - display: table; - content: \\" \\"; -} -.pager:after { - clear: both; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777777; - cursor: not-allowed; - background-color: #fff; -} + .mt-xxl-4 { + margin-top: 1.5rem !important; + } -.label { - display: inline; - padding: 0.2em 0.6em 0.3em; - font-size: 75%; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25em; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} + .mt-xxl-5 { + margin-top: 3rem !important; + } -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} + .mt-xxl-auto { + margin-top: auto !important; + } -.label-default { - background-color: #777777; -} -.label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; -} + .me-xxl-0 { + margin-right: 0 !important; + } -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; -} + .me-xxl-1 { + margin-right: 0.25rem !important; + } -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; -} + .me-xxl-2 { + margin-right: 0.5rem !important; + } -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; -} + .me-xxl-3 { + margin-right: 1rem !important; + } -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; -} + .me-xxl-4 { + margin-right: 1.5rem !important; + } -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; -} + .me-xxl-5 { + margin-right: 3rem !important; + } -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -.list-group-item.active > .badge, .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} + .me-xxl-auto { + margin-right: auto !important; + } -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} + .mb-xxl-0 { + margin-bottom: 0 !important; + } -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, .container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; + .mb-xxl-1 { + margin-bottom: 0.25rem !important; } - .container .jumbotron, .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; + + .mb-xxl-2 { + margin-bottom: 0.5rem !important; } - .jumbotron h1, -.jumbotron .h1 { - font-size: 63px; + + .mb-xxl-3 { + margin-bottom: 1rem !important; } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.428571429; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-right: auto; - margin-left: auto; -} -.thumbnail .caption { - padding: 9px; - color: #333333; -} + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} + .mb-xxl-5 { + margin-bottom: 3rem !important; + } -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} + .mb-xxl-auto { + margin-bottom: auto !important; + } -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} + .ms-xxl-0 { + margin-left: 0 !important; + } -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} + .ms-xxl-1 { + margin-left: 0.25rem !important; + } -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} + .ms-xxl-2 { + margin-left: 0.5rem !important; + } -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} + .ms-xxl-3 { + margin-left: 1rem !important; + } -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} + .ms-xxl-4 { + margin-left: 1.5rem !important; + } -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; + .ms-xxl-5 { + margin-left: 3rem !important; } - to { - background-position: 0 0; + + .ms-xxl-auto { + margin-left: auto !important; } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; + + .p-xxl-0 { + padding: 0 !important; } - to { - background-position: 0 0; + + .p-xxl-1 { + padding: 0.25rem !important; } -} -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} + .p-xxl-2 { + padding: 0.5rem !important; + } -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} + .p-xxl-3 { + padding: 1rem !important; + } -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} + .p-xxl-4 { + padding: 1.5rem !important; + } -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} + .p-xxl-5 { + padding: 3rem !important; + } -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } -.media, -.media-body { - overflow: hidden; - zoom: 1; -} + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } -.media-body { - width: 10000px; -} + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } -.media-right, -.media > .pull-right { - padding-left: 10px; -} + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } -.media-left, -.media > .pull-left { - padding-right: 10px; -} + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } -.media-middle { - vertical-align: middle; -} + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } -.media-bottom { - vertical-align: bottom; -} + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} + .pt-xxl-0 { + padding-top: 0 !important; + } -.media-list { - padding-left: 0; - list-style: none; -} + .pt-xxl-1 { + padding-top: 0.25rem !important; + } -.list-group { - padding-left: 0; - margin-bottom: 20px; -} + .pt-xxl-2 { + padding-top: 0.5rem !important; + } -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - color: #777777; - cursor: not-allowed; - background-color: #eeeeee; -} -.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; -} -.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} + .pt-xxl-3 { + padding-top: 1rem !important; + } -a.list-group-item, -button.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, a.list-group-item:focus, -button.list-group-item:hover, -button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} + .pt-xxl-4 { + padding-top: 1.5rem !important; + } -button.list-group-item { - width: 100%; - text-align: left; -} + .pt-xxl-5 { + padding-top: 3rem !important; + } -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} + .pe-xxl-0 { + padding-right: 0 !important; + } -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, a.list-group-item-success:focus, -button.list-group-item-success:hover, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, -button.list-group-item-success.active, -button.list-group-item-success.active:hover, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} + .pe-xxl-1 { + padding-right: 0.25rem !important; + } -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} + .pe-xxl-2 { + padding-right: 0.5rem !important; + } -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, a.list-group-item-info:focus, -button.list-group-item-info:hover, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, -button.list-group-item-info.active, -button.list-group-item-info.active:hover, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} + .pe-xxl-3 { + padding-right: 1rem !important; + } -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} + .pe-xxl-4 { + padding-right: 1.5rem !important; + } -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, a.list-group-item-warning:focus, -button.list-group-item-warning:hover, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, -button.list-group-item-warning.active, -button.list-group-item-warning.active:hover, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} + .pe-xxl-5 { + padding-right: 3rem !important; + } -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} + .pb-xxl-0 { + padding-bottom: 0 !important; + } -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, a.list-group-item-danger:focus, -button.list-group-item-danger:hover, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, -button.list-group-item-danger.active, -button.list-group-item-danger.active:hover, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} + .pb-xxl-3 { + padding-bottom: 1rem !important; + } -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } -.panel-body { - padding: 15px; -} -.panel-body:before, .panel-body:after { - display: table; - content: \\" \\"; -} -.panel-body:after { - clear: both; -} + .pb-xxl-5 { + padding-bottom: 3rem !important; + } -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} + .ps-xxl-0 { + padding-left: 0 !important; + } -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} + .ps-xxl-1 { + padding-left: 0.25rem !important; + } -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} + .ps-xxl-2 { + padding-left: 0.5rem !important; + } -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} + .ps-xxl-3 { + padding-left: 1rem !important; + } -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} + .ps-xxl-4 { + padding-left: 1.5rem !important; + } -.list-group + .panel-footer { - border-top-width: 0; -} + .ps-xxl-5 { + padding-left: 3rem !important; + } -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - margin-bottom: 0; - border: 0; -} + .text-xxl-start { + text-align: left !important; + } -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} + .text-xxl-end { + text-align: right !important; + } -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; + .text-xxl-center { + text-align: center !important; + } } +@media (min-width: 1200px) { + .fs-1 { + font-size: 2.5rem !important; + } -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} + .fs-2 { + font-size: 2rem !important; + } -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} + .fs-3 { + font-size: 1.75rem !important; + } -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; + .fs-4 { + font-size: 1.5rem !important; + } } +@media print { + .d-print-inline { + display: inline !important; + } -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} + .d-print-inline-block { + display: inline-block !important; + } -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} + .d-print-block { + display: block !important; + } -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} + .d-print-grid { + display: grid !important; + } -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} + .d-print-table { + display: table !important; + } -.embed-responsive-4by3 { - padding-bottom: 75%; -} + .d-print-table-row { + display: table-row !important; + } -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} + .d-print-table-cell { + display: table-cell !important; + } -.well-lg { - padding: 24px; - border-radius: 6px; -} + .d-print-flex { + display: flex !important; + } -.well-sm { - padding: 9px; - border-radius: 3px; -} + .d-print-inline-flex { + display: inline-flex !important; + } -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: 0.2; -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: 0.5; -} + .d-print-none { + display: none !important; + } +}" +`; -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - appearance: none; -} +exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (scss): errors 1`] = `Array []`; -.modal-open { - overflow: hidden; -} +exports[`loader should work with "bootstrap" package v5, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} +exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (sass): css 1`] = ` +".load-me { + color: red; +}" +`; -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} +exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (sass): errors 1`] = `Array []`; -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} +exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (sass): warnings 1`] = `Array []`; -.modal-content { - position: relative; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - outline: 0; -} +exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (scss): css 1`] = ` +".load-me { + color: red; +}" +`; -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; -} -.modal-backdrop.in { - filter: alpha(opacity=50); - opacity: 0.5; -} +exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (scss): errors 1`] = `Array []`; -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header:before, .modal-header:after { - display: table; - content: \\" \\"; -} -.modal-header:after { - clear: both; -} +exports[`loader should work with a package with "sass" and "exports" fields (dart-sass) (scss): warnings 1`] = `Array []`; -.modal-header .close { - margin-top: -2px; +exports[`loader should work with an alias (dart-sass) (sass): css 1`] = ` +"a { + color: red; } -.modal-title { - margin: 0; - line-height: 1.428571429; +.directory-6-file { + color: #faf; } -.modal-body { - position: relative; - padding: 15px; +.dir-with-underscore-index { + color: red; } -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: \\" \\"; -} -.modal-footer:after { - clear: both; -} -.modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; +.dir-with-underscore-index { + color: red; } -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} +.dir-with-underscore-index { + color: red; +}" +`; -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } +exports[`loader should work with an alias (dart-sass) (sass): errors 1`] = `Array []`; - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - } +exports[`loader should work with an alias (dart-sass) (sass): warnings 1`] = `Array []`; - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.428571429; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 12px; - filter: alpha(opacity=0); - opacity: 0; -} -.tooltip.in { - filter: alpha(opacity=90); - opacity: 0.9; -} -.tooltip.top { - padding: 5px 0; - margin-top: -3px; -} -.tooltip.right { - padding: 0 5px; - margin-left: 3px; -} -.tooltip.bottom { - padding: 5px 0; - margin-top: 3px; -} -.tooltip.left { - padding: 0 5px; - margin-left: -3px; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; +exports[`loader should work with an alias (dart-sass) (scss): css 1`] = ` +".alias { + color: red; } -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; + +.directory-6-file { + color: #faf; } -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; + +.dir-with-underscore-index { + color: red; } -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; + +.dir-with-underscore-index { + color: red; } -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; + +.dir-with-underscore-index { + color: red; +}" +`; + +exports[`loader should work with an alias (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should work with an alias (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should work with an empty file (dart-sass) (sass): css 1`] = `""`; + +exports[`loader should work with an empty file (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should work with an empty file (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with an empty file (dart-sass) (scss): css 1`] = `""`; + +exports[`loader should work with an empty file (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should work with an empty file (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should work with an empty file (sass-embedded) (sass): css 1`] = `""`; + +exports[`loader should work with an empty file (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`loader should work with an empty file (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with an empty file (sass-embedded) (scss): css 1`] = `""`; + +exports[`loader should work with an empty file (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`loader should work with an empty file (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`loader should work with difference "@import" at-rules (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +/* @import another/module */ +@import url(http://example.com/something/from/the/interwebs); +.another-sass-module { + background: hotpink; } -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; +/* @import another/underscore */ +.underscore { + background: hotpink; } -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; +/* @import another/_underscore */ +.underscore { + background: hotpink; } -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.428571429; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 14px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); +/* @import ~sass/underscore */ +.underscore-sass { + background: hotpink; } -.popover.top { - margin-top: -10px; + +/* @import ~sass/some.module */ +.some-sass-module { + background: hotpink; } -.popover.right { - margin-left: 10px; + +/* @import url(http://example.com/something/from/the/interwebs); */ +/* scoped import @import language */ +.scoped-import { + @import \\"./file.css\\"; } -.popover.bottom { - margin-top: 10px; +.scoped-import body { + font: 100% Helvetica, sans-serif; + color: #333; } -.popover.left { - margin-left: -10px; +.scoped-import nav ul { + margin: 0; + padding: 0; + list-style: none; } -.popover > .arrow { - border-width: 11px; +.scoped-import nav li { + display: inline-block; } -.popover > .arrow, .popover > .arrow:after { - position: absolute; +.scoped-import nav a { display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; + padding: 6px 12px; + text-decoration: none; } -.popover > .arrow:after { - content: \\"\\"; - border-width: 10px; +.scoped-import .box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } -.popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; +.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; } -.popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-color: #fff; - border-bottom-width: 0; +.scoped-import .success { + border-color: green; } -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; +.scoped-import .error { + border-color: red; } -.popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: \\" \\"; - border-right-color: #fff; - border-left-width: 0; +.scoped-import .warning { + border-color: yellow; } -.popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); +.scoped-import .foo:before { + content: \\"\\\\e0c6\\"; } -.popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-width: 0; - border-bottom-color: #fff; +.scoped-import .bar:before { + content: \\"∑\\"; } -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); + +/* @import util */ +.util { + color: hotpink; } -.popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: \\" \\"; - border-right-width: 0; - border-left-color: #fff; + +/* @import ~module */ +.module { + background: hotpink; } -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; +/* @import ~another */ +.another-scss-module-from-node-modules { + background: hotpink; } -.popover-content { - padding: 9px 14px; +a { + color: red; +}" +`; + +exports[`loader should work with difference "@import" at-rules (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should work with difference "@import" at-rules (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with difference "@import" at-rules (dart-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +/* @import \\"another/module\\"; */ +@import url(http://example.com/something/from/the/interwebs); +.another-scss-module { + background: hotpink; } -.carousel { - position: relative; +/* @import \\"another/underscore\\"; */ +.underscore { + background: hotpink; } -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; +/* @import \\"another/_underscore\\"; */ +.underscore { + background: hotpink; } -.carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; + +/* @import \\"~scss/underscore\\"; */ +.underscore-scss { + background: hotpink; } -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; + +/* @import \\"~scss/some.module\\"; */ +.some-scss-module { + background: hotpink; } -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; - } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; - } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; - } + +/* @import url(http://example.com/something/from/the/interwebs); */ +/* scoped import @import \\"language\\"; */ +.scoped-import { + @import \\"./file.css\\"; } -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { +.scoped-import body { + font: 100% Helvetica, sans-serif; + color: #333; +} +.scoped-import nav ul { + margin: 0; + padding: 0; + list-style: none; +} +.scoped-import nav li { + display: inline-block; +} +.scoped-import nav a { display: block; + padding: 6px 12px; + text-decoration: none; } -.carousel-inner > .active { - left: 0; +.scoped-import .box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; +.scoped-import .foo:before { + content: \\"\\\\e0c6\\"; } -.carousel-inner > .next { - left: 100%; +.scoped-import .bar:before { + content: \\"∑\\"; } -.carousel-inner > .prev { - left: -100%; + +/* @import \\"util\\"; */ +.util { + color: hotpink; } -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; + +/* @import \\"~module\\"; */ +.module { + background: hotpink; } -.carousel-inner > .active.left { - left: -100%; + +/* @import \\"~another\\"; */ +.another-scss-module-from-node-modules { + background: hotpink; } -.carousel-inner > .active.right { - left: 100%; + +/* @import \\"~@org/style\\"; */ +a { + color: red; +}" +`; + +exports[`loader should work with difference "@import" at-rules (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should work with difference "@import" at-rules (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should work with different "@use" at-rules (dart-sass) (sass): css 1`] = ` +".another-sass-module { + background: hotpink; } -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: 0.5; +.underscore { + background: hotpink; } -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#80000000\\", endColorstr=\\"#00000000\\", GradientType=1); - background-repeat: repeat-x; + +.underscore-sass { + background: hotpink; } -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#00000000\\", endColorstr=\\"#80000000\\", GradientType=1); - background-repeat: repeat-x; + +.some-sass-module { + background: hotpink; } -.carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - filter: alpha(opacity=90); - opacity: 0.9; + +.util { + color: hotpink; } -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; + +.module { + background: hotpink; } -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; + +.another-scss-module-from-node-modules { + background: hotpink; } -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; + +a { + color: red; } -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; + +/* @use another/module */ +/* @use another/underscore */ +/* @use another/_underscore */ +/* @use ~sass/underscore */ +/* @use ~sass/some.module */ +/* @use util */ +/* @use ~module */ +/* @use ~another */" +`; + +exports[`loader should work with different "@use" at-rules (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should work with different "@use" at-rules (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with different "@use" at-rules (dart-sass) (scss): css 1`] = ` +".another-scss-module { + background: hotpink; } -.carousel-control .icon-prev:before { - content: \\"‹\\"; + +.underscore { + background: hotpink; } -.carousel-control .icon-next:before { - content: \\"›\\"; + +.underscore-scss { + background: hotpink; } -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; +.some-scss-module { + background: hotpink; } -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \\\\9 ; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; + +.util { + color: hotpink; } -.carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; + +.module { + background: hotpink; } -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +.another-scss-module-from-node-modules { + background: hotpink; } -.carousel-caption .btn { - text-shadow: none; + +a { + color: red; } -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right, -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, -.carousel-control .icon-prev { - margin-left: -10px; - } - .carousel-control .glyphicon-chevron-right, -.carousel-control .icon-next { - margin-right: -10px; - } +/* @use \\"another/module\\"; */ +/* @use \\"another/underscore\\"; */ +/* @use \\"another/_underscore\\"; */ +/* @use \\"~scss/underscore\\"; */ +/* @use \\"~scss/some.module\\"; */ +/* @use \\"util\\"; */ +/* @use \\"~module\\"; */ +/* @use \\"~another\\"; */ +/* @use \\"~@org/style\\"; */" +`; - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } +exports[`loader should work with different "@use" at-rules (dart-sass) (scss): errors 1`] = `Array []`; - .carousel-indicators { - bottom: 20px; - } +exports[`loader should work with different "@use" at-rules (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`loader should work with multiple "@import" at-rules (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; } -.clearfix:before, .clearfix:after { - display: table; - content: \\" \\"; + +nav ul { + margin: 0; + padding: 0; + list-style: none; } -.clearfix:after { - clear: both; +nav li { + display: inline-block; } - -.center-block { +nav a { display: block; - margin-right: auto; - margin-left: auto; + padding: 6px 12px; + text-decoration: none; } -.pull-right { - float: right !important; +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } -.pull-left { - float: left !important; +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; } -.hide { - display: none !important; +.success { + border-color: green; } -.show { - display: block !important; +.error { + border-color: red; } -.invisible { - visibility: hidden; +.warning { + border-color: yellow; } -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; +.foo:before { + content: \\"\\\\e0c6\\"; } -.hidden { - display: none !important; +.bar:before { + content: \\"∑\\"; } -.affix { - position: fixed; +.another-sass-module { + background: hotpink; } -@-ms-viewport { - width: device-width; +body { + background: lightgrey; +}" +`; + +exports[`loader should work with multiple "@import" at-rules (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should work with multiple "@import" at-rules (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with multiple "@import" at-rules (dart-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; } -.visible-xs { - display: none !important; + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } -.visible-sm { - display: none !important; +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } -.visible-md { - display: none !important; +.foo:before { + content: \\"\\\\e0c6\\"; } -.visible-lg { - display: none !important; +.bar:before { + content: \\"∑\\"; } -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; +.another-scss-module { + background: hotpink; } -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } +body { + background: lightgrey; +}" +`; - table.visible-xs { - display: table !important; - } +exports[`loader should work with multiple "@import" at-rules (dart-sass) (scss): errors 1`] = `Array []`; - tr.visible-xs { - display: table-row !important; - } +exports[`loader should work with multiple "@import" at-rules (dart-sass) (scss): warnings 1`] = `Array []`; - th.visible-xs, -td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } +exports[`loader should work with multiple "@import" at-rules (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; } -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} - table.visible-sm { - display: table !important; - } +.success { + border-color: green; +} - tr.visible-sm { - display: table-row !important; - } +.error { + border-color: red; +} - th.visible-sm, -td.visible-sm { - display: table-cell !important; - } +.warning { + border-color: yellow; } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } + +.foo:before { + content: \\"\\\\e0c6\\"; } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } +.bar:before { + content: \\"∑\\"; } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } +.another-sass-module { + background: hotpink; } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } +body { + background: lightgrey; +}" +`; - table.visible-md { - display: table !important; - } +exports[`loader should work with multiple "@import" at-rules (sass-embedded) (sass): errors 1`] = `Array []`; - tr.visible-md { - display: table-row !important; - } +exports[`loader should work with multiple "@import" at-rules (sass-embedded) (sass): warnings 1`] = `Array []`; - th.visible-md, -td.visible-md { - display: table-cell !important; - } +exports[`loader should work with multiple "@import" at-rules (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } +.foo:before { + content: \\"\\\\e0c6\\"; } -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } +.bar:before { + content: \\"∑\\"; +} - table.visible-lg { - display: table !important; - } +.another-scss-module { + background: hotpink; +} - tr.visible-lg { - display: table-row !important; - } +body { + background: lightgrey; +}" +`; - th.visible-lg, -td.visible-lg { - display: table-cell !important; - } +exports[`loader should work with multiple "@import" at-rules (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`loader should work with multiple "@import" at-rules (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`loader should work with multiple "@import" at-rules without quotes (dart-sass) (sass): css 1`] = ` +".example { + color: red; } -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } + +.example { + color: red; } -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } +.example { + color: red; } -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } +.example { + color: red; } -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } +.example-2 { + color: blue; } -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } + +.example-2 { + color: blue; } -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } + +.example-2 { + color: blue; } -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } + +.example-2 { + color: blue; } -.visible-print { - display: none !important; + +.directory-file { + color: #000066; } -@media print { - .visible-print { - display: block !important; - } +.directory-file { + color: #000066; +} - table.visible-print { - display: table !important; - } +.directory-file { + color: #000066; +} - tr.visible-print { - display: table-row !important; - } +.directory-file { + color: #000066; +} - th.visible-print, -td.visible-print { - display: table-cell !important; - } +.directory-6-file { + color: #faf; } -.visible-print-block { - display: none !important; + +.directory-6-file { + color: #faf; } -@media print { - .visible-print-block { - display: block !important; - } + +.directory-6-file { + color: #faf; } -.visible-print-inline { - display: none !important; +.directory-6-file { + color: #faf; } -@media print { - .visible-print-inline { - display: inline !important; - } + +.directory-6-file { + color: #faf; } -.visible-print-inline-block { - display: none !important; +.directory-6-file { + color: #faf; } -@media print { - .visible-print-inline-block { - display: inline-block !important; - } + +.directory-6-file { + color: #faf; } -@media print { - .hidden-print { - display: none !important; - } +.directory-6-file { + color: #faf; +} + +.underscore-sass { + background: hotpink; }" `; -exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work with multiple "@import" at-rules without quotes (dart-sass) (sass): errors 1`] = `Array []`; -exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work with multiple "@import" at-rules without quotes (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (scss): css 1`] = ` +exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; /*! * Bootstrap v3.4.1 (https://getbootstrap.com/) @@ -233846,11 +169649,11 @@ td.visible-print { }" `; -exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (sass): errors 1`] = `Array []`; -exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`loader should work with the "bootstrap-sass" package, import as a package (node-sass) (sass): css 1`] = ` +exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; /*! * Bootstrap v3.4.1 (https://getbootstrap.com/) @@ -233861,10 +169664,12 @@ exports[`loader should work with the "bootstrap-sass" package, import as a packa html { font-family: sans-serif; -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; } + -webkit-text-size-adjust: 100%; +} body { - margin: 0; } + margin: 0; +} article, aside, @@ -233879,88 +169684,109 @@ menu, nav, section, summary { - display: block; } + display: block; +} audio, canvas, progress, video { display: inline-block; - vertical-align: baseline; } + vertical-align: baseline; +} audio:not([controls]) { display: none; - height: 0; } + height: 0; +} [hidden], template { - display: none; } + display: none; +} a { - background-color: transparent; } + background-color: transparent; +} a:active, a:hover { - outline: 0; } + outline: 0; +} abbr[title] { border-bottom: none; text-decoration: underline; - text-decoration: underline dotted; } + text-decoration: underline dotted; +} b, strong { - font-weight: bold; } + font-weight: bold; +} dfn { - font-style: italic; } + font-style: italic; +} h1 { font-size: 2em; - margin: 0.67em 0; } + margin: 0.67em 0; +} mark { background: #ff0; - color: #000; } + color: #000; +} small { - font-size: 80%; } + font-size: 80%; +} sub, sup { font-size: 75%; line-height: 0; position: relative; - vertical-align: baseline; } + vertical-align: baseline; +} sup { - top: -0.5em; } + top: -0.5em; +} sub { - bottom: -0.25em; } + bottom: -0.25em; +} img { - border: 0; } + border: 0; +} svg:not(:root) { - overflow: hidden; } + overflow: hidden; +} figure { - margin: 1em 40px; } + margin: 1em 40px; +} hr { box-sizing: content-box; - height: 0; } + height: 0; +} pre { - overflow: auto; } + overflow: auto; +} code, kbd, pre, samp { font-family: monospace, monospace; - font-size: 1em; } + font-size: 1em; +} button, input, @@ -233969,133 +169795,182 @@ select, textarea { color: inherit; font: inherit; - margin: 0; } + margin: 0; +} button { - overflow: visible; } + overflow: visible; +} button, select { - text-transform: none; } + text-transform: none; +} button, -html input[type=\\"button\\"], -input[type=\\"reset\\"], -input[type=\\"submit\\"] { +html input[type=button], +input[type=reset], +input[type=submit] { -webkit-appearance: button; - cursor: pointer; } + cursor: pointer; +} button[disabled], html input[disabled] { - cursor: default; } + cursor: default; +} button::-moz-focus-inner, input::-moz-focus-inner { border: 0; - padding: 0; } + padding: 0; +} input { - line-height: normal; } + line-height: normal; +} -input[type=\\"checkbox\\"], -input[type=\\"radio\\"] { +input[type=checkbox], +input[type=radio] { box-sizing: border-box; - padding: 0; } + padding: 0; +} -input[type=\\"number\\"]::-webkit-inner-spin-button, -input[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + height: auto; +} -input[type=\\"search\\"] { +input[type=search] { -webkit-appearance: textfield; - box-sizing: content-box; } + box-sizing: content-box; +} -input[type=\\"search\\"]::-webkit-search-cancel-button, -input[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } +input[type=search]::-webkit-search-cancel-button, +input[type=search]::-webkit-search-decoration { + -webkit-appearance: none; +} fieldset { border: 1px solid #c0c0c0; margin: 0 2px; - padding: 0.35em 0.625em 0.75em; } + padding: 0.35em 0.625em 0.75em; +} legend { border: 0; - padding: 0; } + padding: 0; +} textarea { - overflow: auto; } + overflow: auto; +} optgroup { - font-weight: bold; } + font-weight: bold; +} table { border-collapse: collapse; - border-spacing: 0; } + border-spacing: 0; +} td, th { - padding: 0; } + padding: 0; +} /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, - *:before, - *:after { +*:before, +*:after { color: #000 !important; text-shadow: none !important; background: transparent !important; - box-shadow: none !important; } + box-shadow: none !important; + } + a, - a:visited { - text-decoration: underline; } +a:visited { + text-decoration: underline; + } + a[href]:after { - content: \\" (\\" attr(href) \\")\\"; } + content: \\" (\\" attr(href) \\")\\"; + } + abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; } + content: \\" (\\" attr(title) \\")\\"; + } + a[href^=\\"#\\"]:after, - a[href^=\\"javascript:\\"]:after { - content: \\"\\"; } +a[href^=\\"javascript:\\"]:after { + content: \\"\\"; + } + pre, - blockquote { +blockquote { border: 1px solid #999; - page-break-inside: avoid; } + page-break-inside: avoid; + } + thead { - display: table-header-group; } + display: table-header-group; + } + tr, +img { + page-break-inside: avoid; + } + img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } + max-width: 100% !important; + } + p, - h2, - h3 { +h2, +h3 { orphans: 3; - widows: 3; } + widows: 3; + } + h2, - h3 { - page-break-after: avoid; } +h3 { + page-break-after: avoid; + } + .navbar { - display: none; } + display: none; + } + .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; } +.dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { - border: 1px solid #000; } + border: 1px solid #000; + } + .table { - border-collapse: collapse !important; } - .table td, - .table th { - background-color: #fff !important; } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; } } + border-collapse: collapse !important; + } + .table td, +.table th { + background-color: #fff !important; + } + .table-bordered th, +.table-bordered td { + border: 1px solid #ddd !important; + } +} @font-face { font-family: \\"Glyphicons Halflings\\"; src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); } - + src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); +} .glyphicon { position: relative; top: 1px; @@ -234105,816 +169980,1083 @@ th { font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } + -moz-osx-font-smoothing: grayscale; +} .glyphicon-asterisk:before { - content: \\"\\\\002a\\"; } + content: \\"*\\"; +} .glyphicon-plus:before { - content: \\"\\\\002b\\"; } + content: \\"+\\"; +} .glyphicon-euro:before, .glyphicon-eur:before { - content: \\"\\\\20ac\\"; } + content: \\"€\\"; +} .glyphicon-minus:before { - content: \\"\\\\2212\\"; } + content: \\"−\\"; +} .glyphicon-cloud:before { - content: \\"\\\\2601\\"; } + content: \\"☁\\"; +} .glyphicon-envelope:before { - content: \\"\\\\2709\\"; } + content: \\"✉\\"; +} .glyphicon-pencil:before { - content: \\"\\\\270f\\"; } + content: \\"✏\\"; +} .glyphicon-glass:before { - content: \\"\\\\e001\\"; } + content: \\"\\\\e001\\"; +} .glyphicon-music:before { - content: \\"\\\\e002\\"; } + content: \\"\\\\e002\\"; +} .glyphicon-search:before { - content: \\"\\\\e003\\"; } + content: \\"\\\\e003\\"; +} .glyphicon-heart:before { - content: \\"\\\\e005\\"; } + content: \\"\\\\e005\\"; +} .glyphicon-star:before { - content: \\"\\\\e006\\"; } + content: \\"\\\\e006\\"; +} .glyphicon-star-empty:before { - content: \\"\\\\e007\\"; } + content: \\"\\\\e007\\"; +} .glyphicon-user:before { - content: \\"\\\\e008\\"; } + content: \\"\\\\e008\\"; +} .glyphicon-film:before { - content: \\"\\\\e009\\"; } + content: \\"\\\\e009\\"; +} .glyphicon-th-large:before { - content: \\"\\\\e010\\"; } + content: \\"\\\\e010\\"; +} .glyphicon-th:before { - content: \\"\\\\e011\\"; } + content: \\"\\\\e011\\"; +} .glyphicon-th-list:before { - content: \\"\\\\e012\\"; } + content: \\"\\\\e012\\"; +} .glyphicon-ok:before { - content: \\"\\\\e013\\"; } + content: \\"\\\\e013\\"; +} .glyphicon-remove:before { - content: \\"\\\\e014\\"; } + content: \\"\\\\e014\\"; +} .glyphicon-zoom-in:before { - content: \\"\\\\e015\\"; } + content: \\"\\\\e015\\"; +} .glyphicon-zoom-out:before { - content: \\"\\\\e016\\"; } + content: \\"\\\\e016\\"; +} .glyphicon-off:before { - content: \\"\\\\e017\\"; } + content: \\"\\\\e017\\"; +} .glyphicon-signal:before { - content: \\"\\\\e018\\"; } + content: \\"\\\\e018\\"; +} .glyphicon-cog:before { - content: \\"\\\\e019\\"; } + content: \\"\\\\e019\\"; +} .glyphicon-trash:before { - content: \\"\\\\e020\\"; } + content: \\"\\\\e020\\"; +} .glyphicon-home:before { - content: \\"\\\\e021\\"; } + content: \\"\\\\e021\\"; +} .glyphicon-file:before { - content: \\"\\\\e022\\"; } + content: \\"\\\\e022\\"; +} .glyphicon-time:before { - content: \\"\\\\e023\\"; } + content: \\"\\\\e023\\"; +} .glyphicon-road:before { - content: \\"\\\\e024\\"; } + content: \\"\\\\e024\\"; +} .glyphicon-download-alt:before { - content: \\"\\\\e025\\"; } + content: \\"\\\\e025\\"; +} .glyphicon-download:before { - content: \\"\\\\e026\\"; } + content: \\"\\\\e026\\"; +} .glyphicon-upload:before { - content: \\"\\\\e027\\"; } + content: \\"\\\\e027\\"; +} .glyphicon-inbox:before { - content: \\"\\\\e028\\"; } + content: \\"\\\\e028\\"; +} .glyphicon-play-circle:before { - content: \\"\\\\e029\\"; } + content: \\"\\\\e029\\"; +} .glyphicon-repeat:before { - content: \\"\\\\e030\\"; } + content: \\"\\\\e030\\"; +} .glyphicon-refresh:before { - content: \\"\\\\e031\\"; } + content: \\"\\\\e031\\"; +} .glyphicon-list-alt:before { - content: \\"\\\\e032\\"; } + content: \\"\\\\e032\\"; +} .glyphicon-lock:before { - content: \\"\\\\e033\\"; } + content: \\"\\\\e033\\"; +} .glyphicon-flag:before { - content: \\"\\\\e034\\"; } + content: \\"\\\\e034\\"; +} .glyphicon-headphones:before { - content: \\"\\\\e035\\"; } + content: \\"\\\\e035\\"; +} .glyphicon-volume-off:before { - content: \\"\\\\e036\\"; } + content: \\"\\\\e036\\"; +} .glyphicon-volume-down:before { - content: \\"\\\\e037\\"; } + content: \\"\\\\e037\\"; +} .glyphicon-volume-up:before { - content: \\"\\\\e038\\"; } + content: \\"\\\\e038\\"; +} .glyphicon-qrcode:before { - content: \\"\\\\e039\\"; } + content: \\"\\\\e039\\"; +} .glyphicon-barcode:before { - content: \\"\\\\e040\\"; } + content: \\"\\\\e040\\"; +} .glyphicon-tag:before { - content: \\"\\\\e041\\"; } + content: \\"\\\\e041\\"; +} .glyphicon-tags:before { - content: \\"\\\\e042\\"; } + content: \\"\\\\e042\\"; +} .glyphicon-book:before { - content: \\"\\\\e043\\"; } + content: \\"\\\\e043\\"; +} .glyphicon-bookmark:before { - content: \\"\\\\e044\\"; } + content: \\"\\\\e044\\"; +} .glyphicon-print:before { - content: \\"\\\\e045\\"; } + content: \\"\\\\e045\\"; +} .glyphicon-camera:before { - content: \\"\\\\e046\\"; } + content: \\"\\\\e046\\"; +} .glyphicon-font:before { - content: \\"\\\\e047\\"; } + content: \\"\\\\e047\\"; +} .glyphicon-bold:before { - content: \\"\\\\e048\\"; } + content: \\"\\\\e048\\"; +} .glyphicon-italic:before { - content: \\"\\\\e049\\"; } + content: \\"\\\\e049\\"; +} .glyphicon-text-height:before { - content: \\"\\\\e050\\"; } + content: \\"\\\\e050\\"; +} .glyphicon-text-width:before { - content: \\"\\\\e051\\"; } + content: \\"\\\\e051\\"; +} .glyphicon-align-left:before { - content: \\"\\\\e052\\"; } + content: \\"\\\\e052\\"; +} .glyphicon-align-center:before { - content: \\"\\\\e053\\"; } + content: \\"\\\\e053\\"; +} .glyphicon-align-right:before { - content: \\"\\\\e054\\"; } + content: \\"\\\\e054\\"; +} .glyphicon-align-justify:before { - content: \\"\\\\e055\\"; } + content: \\"\\\\e055\\"; +} .glyphicon-list:before { - content: \\"\\\\e056\\"; } + content: \\"\\\\e056\\"; +} .glyphicon-indent-left:before { - content: \\"\\\\e057\\"; } + content: \\"\\\\e057\\"; +} .glyphicon-indent-right:before { - content: \\"\\\\e058\\"; } + content: \\"\\\\e058\\"; +} .glyphicon-facetime-video:before { - content: \\"\\\\e059\\"; } + content: \\"\\\\e059\\"; +} .glyphicon-picture:before { - content: \\"\\\\e060\\"; } + content: \\"\\\\e060\\"; +} .glyphicon-map-marker:before { - content: \\"\\\\e062\\"; } + content: \\"\\\\e062\\"; +} .glyphicon-adjust:before { - content: \\"\\\\e063\\"; } + content: \\"\\\\e063\\"; +} .glyphicon-tint:before { - content: \\"\\\\e064\\"; } + content: \\"\\\\e064\\"; +} .glyphicon-edit:before { - content: \\"\\\\e065\\"; } + content: \\"\\\\e065\\"; +} .glyphicon-share:before { - content: \\"\\\\e066\\"; } + content: \\"\\\\e066\\"; +} .glyphicon-check:before { - content: \\"\\\\e067\\"; } + content: \\"\\\\e067\\"; +} .glyphicon-move:before { - content: \\"\\\\e068\\"; } + content: \\"\\\\e068\\"; +} .glyphicon-step-backward:before { - content: \\"\\\\e069\\"; } + content: \\"\\\\e069\\"; +} .glyphicon-fast-backward:before { - content: \\"\\\\e070\\"; } + content: \\"\\\\e070\\"; +} .glyphicon-backward:before { - content: \\"\\\\e071\\"; } + content: \\"\\\\e071\\"; +} .glyphicon-play:before { - content: \\"\\\\e072\\"; } + content: \\"\\\\e072\\"; +} .glyphicon-pause:before { - content: \\"\\\\e073\\"; } + content: \\"\\\\e073\\"; +} .glyphicon-stop:before { - content: \\"\\\\e074\\"; } + content: \\"\\\\e074\\"; +} .glyphicon-forward:before { - content: \\"\\\\e075\\"; } + content: \\"\\\\e075\\"; +} .glyphicon-fast-forward:before { - content: \\"\\\\e076\\"; } + content: \\"\\\\e076\\"; +} .glyphicon-step-forward:before { - content: \\"\\\\e077\\"; } + content: \\"\\\\e077\\"; +} .glyphicon-eject:before { - content: \\"\\\\e078\\"; } + content: \\"\\\\e078\\"; +} .glyphicon-chevron-left:before { - content: \\"\\\\e079\\"; } + content: \\"\\\\e079\\"; +} .glyphicon-chevron-right:before { - content: \\"\\\\e080\\"; } + content: \\"\\\\e080\\"; +} .glyphicon-plus-sign:before { - content: \\"\\\\e081\\"; } + content: \\"\\\\e081\\"; +} .glyphicon-minus-sign:before { - content: \\"\\\\e082\\"; } + content: \\"\\\\e082\\"; +} .glyphicon-remove-sign:before { - content: \\"\\\\e083\\"; } + content: \\"\\\\e083\\"; +} .glyphicon-ok-sign:before { - content: \\"\\\\e084\\"; } + content: \\"\\\\e084\\"; +} .glyphicon-question-sign:before { - content: \\"\\\\e085\\"; } + content: \\"\\\\e085\\"; +} .glyphicon-info-sign:before { - content: \\"\\\\e086\\"; } + content: \\"\\\\e086\\"; +} .glyphicon-screenshot:before { - content: \\"\\\\e087\\"; } + content: \\"\\\\e087\\"; +} .glyphicon-remove-circle:before { - content: \\"\\\\e088\\"; } + content: \\"\\\\e088\\"; +} .glyphicon-ok-circle:before { - content: \\"\\\\e089\\"; } + content: \\"\\\\e089\\"; +} .glyphicon-ban-circle:before { - content: \\"\\\\e090\\"; } + content: \\"\\\\e090\\"; +} .glyphicon-arrow-left:before { - content: \\"\\\\e091\\"; } + content: \\"\\\\e091\\"; +} .glyphicon-arrow-right:before { - content: \\"\\\\e092\\"; } + content: \\"\\\\e092\\"; +} .glyphicon-arrow-up:before { - content: \\"\\\\e093\\"; } + content: \\"\\\\e093\\"; +} .glyphicon-arrow-down:before { - content: \\"\\\\e094\\"; } + content: \\"\\\\e094\\"; +} .glyphicon-share-alt:before { - content: \\"\\\\e095\\"; } + content: \\"\\\\e095\\"; +} .glyphicon-resize-full:before { - content: \\"\\\\e096\\"; } + content: \\"\\\\e096\\"; +} .glyphicon-resize-small:before { - content: \\"\\\\e097\\"; } + content: \\"\\\\e097\\"; +} .glyphicon-exclamation-sign:before { - content: \\"\\\\e101\\"; } + content: \\"\\\\e101\\"; +} .glyphicon-gift:before { - content: \\"\\\\e102\\"; } + content: \\"\\\\e102\\"; +} .glyphicon-leaf:before { - content: \\"\\\\e103\\"; } + content: \\"\\\\e103\\"; +} .glyphicon-fire:before { - content: \\"\\\\e104\\"; } + content: \\"\\\\e104\\"; +} .glyphicon-eye-open:before { - content: \\"\\\\e105\\"; } + content: \\"\\\\e105\\"; +} .glyphicon-eye-close:before { - content: \\"\\\\e106\\"; } + content: \\"\\\\e106\\"; +} .glyphicon-warning-sign:before { - content: \\"\\\\e107\\"; } + content: \\"\\\\e107\\"; +} .glyphicon-plane:before { - content: \\"\\\\e108\\"; } + content: \\"\\\\e108\\"; +} .glyphicon-calendar:before { - content: \\"\\\\e109\\"; } + content: \\"\\\\e109\\"; +} .glyphicon-random:before { - content: \\"\\\\e110\\"; } + content: \\"\\\\e110\\"; +} .glyphicon-comment:before { - content: \\"\\\\e111\\"; } + content: \\"\\\\e111\\"; +} .glyphicon-magnet:before { - content: \\"\\\\e112\\"; } + content: \\"\\\\e112\\"; +} .glyphicon-chevron-up:before { - content: \\"\\\\e113\\"; } + content: \\"\\\\e113\\"; +} .glyphicon-chevron-down:before { - content: \\"\\\\e114\\"; } + content: \\"\\\\e114\\"; +} .glyphicon-retweet:before { - content: \\"\\\\e115\\"; } + content: \\"\\\\e115\\"; +} .glyphicon-shopping-cart:before { - content: \\"\\\\e116\\"; } + content: \\"\\\\e116\\"; +} .glyphicon-folder-close:before { - content: \\"\\\\e117\\"; } + content: \\"\\\\e117\\"; +} .glyphicon-folder-open:before { - content: \\"\\\\e118\\"; } + content: \\"\\\\e118\\"; +} .glyphicon-resize-vertical:before { - content: \\"\\\\e119\\"; } + content: \\"\\\\e119\\"; +} .glyphicon-resize-horizontal:before { - content: \\"\\\\e120\\"; } + content: \\"\\\\e120\\"; +} .glyphicon-hdd:before { - content: \\"\\\\e121\\"; } + content: \\"\\\\e121\\"; +} .glyphicon-bullhorn:before { - content: \\"\\\\e122\\"; } + content: \\"\\\\e122\\"; +} .glyphicon-bell:before { - content: \\"\\\\e123\\"; } + content: \\"\\\\e123\\"; +} .glyphicon-certificate:before { - content: \\"\\\\e124\\"; } + content: \\"\\\\e124\\"; +} .glyphicon-thumbs-up:before { - content: \\"\\\\e125\\"; } + content: \\"\\\\e125\\"; +} .glyphicon-thumbs-down:before { - content: \\"\\\\e126\\"; } + content: \\"\\\\e126\\"; +} .glyphicon-hand-right:before { - content: \\"\\\\e127\\"; } + content: \\"\\\\e127\\"; +} .glyphicon-hand-left:before { - content: \\"\\\\e128\\"; } + content: \\"\\\\e128\\"; +} .glyphicon-hand-up:before { - content: \\"\\\\e129\\"; } + content: \\"\\\\e129\\"; +} .glyphicon-hand-down:before { - content: \\"\\\\e130\\"; } + content: \\"\\\\e130\\"; +} .glyphicon-circle-arrow-right:before { - content: \\"\\\\e131\\"; } + content: \\"\\\\e131\\"; +} .glyphicon-circle-arrow-left:before { - content: \\"\\\\e132\\"; } + content: \\"\\\\e132\\"; +} .glyphicon-circle-arrow-up:before { - content: \\"\\\\e133\\"; } + content: \\"\\\\e133\\"; +} .glyphicon-circle-arrow-down:before { - content: \\"\\\\e134\\"; } + content: \\"\\\\e134\\"; +} .glyphicon-globe:before { - content: \\"\\\\e135\\"; } + content: \\"\\\\e135\\"; +} .glyphicon-wrench:before { - content: \\"\\\\e136\\"; } + content: \\"\\\\e136\\"; +} .glyphicon-tasks:before { - content: \\"\\\\e137\\"; } + content: \\"\\\\e137\\"; +} .glyphicon-filter:before { - content: \\"\\\\e138\\"; } + content: \\"\\\\e138\\"; +} .glyphicon-briefcase:before { - content: \\"\\\\e139\\"; } + content: \\"\\\\e139\\"; +} .glyphicon-fullscreen:before { - content: \\"\\\\e140\\"; } + content: \\"\\\\e140\\"; +} .glyphicon-dashboard:before { - content: \\"\\\\e141\\"; } + content: \\"\\\\e141\\"; +} .glyphicon-paperclip:before { - content: \\"\\\\e142\\"; } + content: \\"\\\\e142\\"; +} .glyphicon-heart-empty:before { - content: \\"\\\\e143\\"; } + content: \\"\\\\e143\\"; +} .glyphicon-link:before { - content: \\"\\\\e144\\"; } + content: \\"\\\\e144\\"; +} .glyphicon-phone:before { - content: \\"\\\\e145\\"; } + content: \\"\\\\e145\\"; +} .glyphicon-pushpin:before { - content: \\"\\\\e146\\"; } + content: \\"\\\\e146\\"; +} .glyphicon-usd:before { - content: \\"\\\\e148\\"; } + content: \\"\\\\e148\\"; +} .glyphicon-gbp:before { - content: \\"\\\\e149\\"; } + content: \\"\\\\e149\\"; +} .glyphicon-sort:before { - content: \\"\\\\e150\\"; } + content: \\"\\\\e150\\"; +} .glyphicon-sort-by-alphabet:before { - content: \\"\\\\e151\\"; } + content: \\"\\\\e151\\"; +} .glyphicon-sort-by-alphabet-alt:before { - content: \\"\\\\e152\\"; } + content: \\"\\\\e152\\"; +} .glyphicon-sort-by-order:before { - content: \\"\\\\e153\\"; } + content: \\"\\\\e153\\"; +} .glyphicon-sort-by-order-alt:before { - content: \\"\\\\e154\\"; } + content: \\"\\\\e154\\"; +} .glyphicon-sort-by-attributes:before { - content: \\"\\\\e155\\"; } + content: \\"\\\\e155\\"; +} .glyphicon-sort-by-attributes-alt:before { - content: \\"\\\\e156\\"; } + content: \\"\\\\e156\\"; +} .glyphicon-unchecked:before { - content: \\"\\\\e157\\"; } + content: \\"\\\\e157\\"; +} .glyphicon-expand:before { - content: \\"\\\\e158\\"; } + content: \\"\\\\e158\\"; +} .glyphicon-collapse-down:before { - content: \\"\\\\e159\\"; } + content: \\"\\\\e159\\"; +} .glyphicon-collapse-up:before { - content: \\"\\\\e160\\"; } + content: \\"\\\\e160\\"; +} .glyphicon-log-in:before { - content: \\"\\\\e161\\"; } + content: \\"\\\\e161\\"; +} .glyphicon-flash:before { - content: \\"\\\\e162\\"; } + content: \\"\\\\e162\\"; +} .glyphicon-log-out:before { - content: \\"\\\\e163\\"; } + content: \\"\\\\e163\\"; +} .glyphicon-new-window:before { - content: \\"\\\\e164\\"; } + content: \\"\\\\e164\\"; +} .glyphicon-record:before { - content: \\"\\\\e165\\"; } + content: \\"\\\\e165\\"; +} .glyphicon-save:before { - content: \\"\\\\e166\\"; } + content: \\"\\\\e166\\"; +} .glyphicon-open:before { - content: \\"\\\\e167\\"; } + content: \\"\\\\e167\\"; +} .glyphicon-saved:before { - content: \\"\\\\e168\\"; } + content: \\"\\\\e168\\"; +} .glyphicon-import:before { - content: \\"\\\\e169\\"; } + content: \\"\\\\e169\\"; +} .glyphicon-export:before { - content: \\"\\\\e170\\"; } + content: \\"\\\\e170\\"; +} .glyphicon-send:before { - content: \\"\\\\e171\\"; } + content: \\"\\\\e171\\"; +} .glyphicon-floppy-disk:before { - content: \\"\\\\e172\\"; } + content: \\"\\\\e172\\"; +} .glyphicon-floppy-saved:before { - content: \\"\\\\e173\\"; } + content: \\"\\\\e173\\"; +} .glyphicon-floppy-remove:before { - content: \\"\\\\e174\\"; } + content: \\"\\\\e174\\"; +} .glyphicon-floppy-save:before { - content: \\"\\\\e175\\"; } + content: \\"\\\\e175\\"; +} .glyphicon-floppy-open:before { - content: \\"\\\\e176\\"; } + content: \\"\\\\e176\\"; +} .glyphicon-credit-card:before { - content: \\"\\\\e177\\"; } + content: \\"\\\\e177\\"; +} .glyphicon-transfer:before { - content: \\"\\\\e178\\"; } + content: \\"\\\\e178\\"; +} .glyphicon-cutlery:before { - content: \\"\\\\e179\\"; } + content: \\"\\\\e179\\"; +} .glyphicon-header:before { - content: \\"\\\\e180\\"; } + content: \\"\\\\e180\\"; +} .glyphicon-compressed:before { - content: \\"\\\\e181\\"; } + content: \\"\\\\e181\\"; +} .glyphicon-earphone:before { - content: \\"\\\\e182\\"; } + content: \\"\\\\e182\\"; +} .glyphicon-phone-alt:before { - content: \\"\\\\e183\\"; } + content: \\"\\\\e183\\"; +} .glyphicon-tower:before { - content: \\"\\\\e184\\"; } + content: \\"\\\\e184\\"; +} .glyphicon-stats:before { - content: \\"\\\\e185\\"; } + content: \\"\\\\e185\\"; +} .glyphicon-sd-video:before { - content: \\"\\\\e186\\"; } + content: \\"\\\\e186\\"; +} .glyphicon-hd-video:before { - content: \\"\\\\e187\\"; } + content: \\"\\\\e187\\"; +} .glyphicon-subtitles:before { - content: \\"\\\\e188\\"; } + content: \\"\\\\e188\\"; +} .glyphicon-sound-stereo:before { - content: \\"\\\\e189\\"; } + content: \\"\\\\e189\\"; +} .glyphicon-sound-dolby:before { - content: \\"\\\\e190\\"; } + content: \\"\\\\e190\\"; +} .glyphicon-sound-5-1:before { - content: \\"\\\\e191\\"; } + content: \\"\\\\e191\\"; +} .glyphicon-sound-6-1:before { - content: \\"\\\\e192\\"; } + content: \\"\\\\e192\\"; +} .glyphicon-sound-7-1:before { - content: \\"\\\\e193\\"; } + content: \\"\\\\e193\\"; +} .glyphicon-copyright-mark:before { - content: \\"\\\\e194\\"; } + content: \\"\\\\e194\\"; +} .glyphicon-registration-mark:before { - content: \\"\\\\e195\\"; } + content: \\"\\\\e195\\"; +} .glyphicon-cloud-download:before { - content: \\"\\\\e197\\"; } + content: \\"\\\\e197\\"; +} .glyphicon-cloud-upload:before { - content: \\"\\\\e198\\"; } + content: \\"\\\\e198\\"; +} .glyphicon-tree-conifer:before { - content: \\"\\\\e199\\"; } + content: \\"\\\\e199\\"; +} .glyphicon-tree-deciduous:before { - content: \\"\\\\e200\\"; } + content: \\"\\\\e200\\"; +} .glyphicon-cd:before { - content: \\"\\\\e201\\"; } + content: \\"\\\\e201\\"; +} .glyphicon-save-file:before { - content: \\"\\\\e202\\"; } + content: \\"\\\\e202\\"; +} .glyphicon-open-file:before { - content: \\"\\\\e203\\"; } + content: \\"\\\\e203\\"; +} .glyphicon-level-up:before { - content: \\"\\\\e204\\"; } + content: \\"\\\\e204\\"; +} .glyphicon-copy:before { - content: \\"\\\\e205\\"; } + content: \\"\\\\e205\\"; +} .glyphicon-paste:before { - content: \\"\\\\e206\\"; } + content: \\"\\\\e206\\"; +} .glyphicon-alert:before { - content: \\"\\\\e209\\"; } + content: \\"\\\\e209\\"; +} .glyphicon-equalizer:before { - content: \\"\\\\e210\\"; } + content: \\"\\\\e210\\"; +} .glyphicon-king:before { - content: \\"\\\\e211\\"; } + content: \\"\\\\e211\\"; +} .glyphicon-queen:before { - content: \\"\\\\e212\\"; } + content: \\"\\\\e212\\"; +} .glyphicon-pawn:before { - content: \\"\\\\e213\\"; } + content: \\"\\\\e213\\"; +} .glyphicon-bishop:before { - content: \\"\\\\e214\\"; } + content: \\"\\\\e214\\"; +} .glyphicon-knight:before { - content: \\"\\\\e215\\"; } + content: \\"\\\\e215\\"; +} .glyphicon-baby-formula:before { - content: \\"\\\\e216\\"; } + content: \\"\\\\e216\\"; +} .glyphicon-tent:before { - content: \\"\\\\26fa\\"; } + content: \\"⛺\\"; +} .glyphicon-blackboard:before { - content: \\"\\\\e218\\"; } + content: \\"\\\\e218\\"; +} .glyphicon-bed:before { - content: \\"\\\\e219\\"; } + content: \\"\\\\e219\\"; +} .glyphicon-apple:before { - content: \\"\\\\f8ff\\"; } + content: \\"\\\\f8ff\\"; +} .glyphicon-erase:before { - content: \\"\\\\e221\\"; } + content: \\"\\\\e221\\"; +} .glyphicon-hourglass:before { - content: \\"\\\\231b\\"; } + content: \\"⌛\\"; +} .glyphicon-lamp:before { - content: \\"\\\\e223\\"; } + content: \\"\\\\e223\\"; +} .glyphicon-duplicate:before { - content: \\"\\\\e224\\"; } + content: \\"\\\\e224\\"; +} .glyphicon-piggy-bank:before { - content: \\"\\\\e225\\"; } + content: \\"\\\\e225\\"; +} .glyphicon-scissors:before { - content: \\"\\\\e226\\"; } + content: \\"\\\\e226\\"; +} .glyphicon-bitcoin:before { - content: \\"\\\\e227\\"; } + content: \\"\\\\e227\\"; +} .glyphicon-btc:before { - content: \\"\\\\e227\\"; } + content: \\"\\\\e227\\"; +} .glyphicon-xbt:before { - content: \\"\\\\e227\\"; } + content: \\"\\\\e227\\"; +} .glyphicon-yen:before { - content: \\"\\\\00a5\\"; } + content: \\"¥\\"; +} .glyphicon-jpy:before { - content: \\"\\\\00a5\\"; } + content: \\"¥\\"; +} .glyphicon-ruble:before { - content: \\"\\\\20bd\\"; } + content: \\"₽\\"; +} .glyphicon-rub:before { - content: \\"\\\\20bd\\"; } + content: \\"₽\\"; +} .glyphicon-scale:before { - content: \\"\\\\e230\\"; } + content: \\"\\\\e230\\"; +} .glyphicon-ice-lolly:before { - content: \\"\\\\e231\\"; } + content: \\"\\\\e231\\"; +} .glyphicon-ice-lolly-tasted:before { - content: \\"\\\\e232\\"; } + content: \\"\\\\e232\\"; +} .glyphicon-education:before { - content: \\"\\\\e233\\"; } + content: \\"\\\\e233\\"; +} .glyphicon-option-horizontal:before { - content: \\"\\\\e234\\"; } + content: \\"\\\\e234\\"; +} .glyphicon-option-vertical:before { - content: \\"\\\\e235\\"; } + content: \\"\\\\e235\\"; +} .glyphicon-menu-hamburger:before { - content: \\"\\\\e236\\"; } + content: \\"\\\\e236\\"; +} .glyphicon-modal-window:before { - content: \\"\\\\e237\\"; } + content: \\"\\\\e237\\"; +} .glyphicon-oil:before { - content: \\"\\\\e238\\"; } + content: \\"\\\\e238\\"; +} .glyphicon-grain:before { - content: \\"\\\\e239\\"; } + content: \\"\\\\e239\\"; +} .glyphicon-sunglasses:before { - content: \\"\\\\e240\\"; } + content: \\"\\\\e240\\"; +} .glyphicon-text-size:before { - content: \\"\\\\e241\\"; } + content: \\"\\\\e241\\"; +} .glyphicon-text-color:before { - content: \\"\\\\e242\\"; } + content: \\"\\\\e242\\"; +} .glyphicon-text-background:before { - content: \\"\\\\e243\\"; } + content: \\"\\\\e243\\"; +} .glyphicon-object-align-top:before { - content: \\"\\\\e244\\"; } + content: \\"\\\\e244\\"; +} .glyphicon-object-align-bottom:before { - content: \\"\\\\e245\\"; } + content: \\"\\\\e245\\"; +} .glyphicon-object-align-horizontal:before { - content: \\"\\\\e246\\"; } + content: \\"\\\\e246\\"; +} .glyphicon-object-align-left:before { - content: \\"\\\\e247\\"; } + content: \\"\\\\e247\\"; +} .glyphicon-object-align-vertical:before { - content: \\"\\\\e248\\"; } + content: \\"\\\\e248\\"; +} .glyphicon-object-align-right:before { - content: \\"\\\\e249\\"; } + content: \\"\\\\e249\\"; +} .glyphicon-triangle-right:before { - content: \\"\\\\e250\\"; } + content: \\"\\\\e250\\"; +} .glyphicon-triangle-left:before { - content: \\"\\\\e251\\"; } + content: \\"\\\\e251\\"; +} .glyphicon-triangle-bottom:before { - content: \\"\\\\e252\\"; } + content: \\"\\\\e252\\"; +} .glyphicon-triangle-top:before { - content: \\"\\\\e253\\"; } + content: \\"\\\\e253\\"; +} .glyphicon-console:before { - content: \\"\\\\e254\\"; } + content: \\"\\\\e254\\"; +} .glyphicon-superscript:before { - content: \\"\\\\e255\\"; } + content: \\"\\\\e255\\"; +} .glyphicon-subscript:before { - content: \\"\\\\e256\\"; } + content: \\"\\\\e256\\"; +} .glyphicon-menu-left:before { - content: \\"\\\\e257\\"; } + content: \\"\\\\e257\\"; +} .glyphicon-menu-right:before { - content: \\"\\\\e258\\"; } + content: \\"\\\\e258\\"; +} .glyphicon-menu-down:before { - content: \\"\\\\e259\\"; } + content: \\"\\\\e259\\"; +} .glyphicon-menu-up:before { - content: \\"\\\\e260\\"; } + content: \\"\\\\e260\\"; +} * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; - box-sizing: border-box; } + box-sizing: border-box; +} *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; - box-sizing: border-box; } + box-sizing: border-box; +} html { font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} body { font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; font-size: 14px; - line-height: 1.42857; + line-height: 1.428571429; color: #333333; - background-color: #fff; } + background-color: #fff; +} input, button, @@ -234922,35 +171064,43 @@ select, textarea { font-family: inherit; font-size: inherit; - line-height: inherit; } + line-height: inherit; +} a { color: #337ab7; - text-decoration: none; } - a:hover, a:focus { - color: #23527c; - text-decoration: underline; } - a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } + text-decoration: none; +} +a:hover, a:focus { + color: #23527c; + text-decoration: underline; +} +a:focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} figure { - margin: 0; } + margin: 0; +} img { - vertical-align: middle; } + vertical-align: middle; +} .img-responsive { display: block; max-width: 100%; - height: auto; } + height: auto; +} .img-rounded { - border-radius: 6px; } + border-radius: 6px; +} .img-thumbnail { padding: 4px; - line-height: 1.42857; + line-height: 1.428571429; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; @@ -234959,16 +171109,19 @@ img { transition: all 0.2s ease-in-out; display: inline-block; max-width: 100%; - height: auto; } + height: auto; +} .img-circle { - border-radius: 50%; } + border-radius: 50%; +} hr { margin-top: 20px; margin-bottom: 20px; border: 0; - border-top: 1px solid #eeeeee; } + border-top: 1px solid #eeeeee; +} .sr-only { position: absolute; @@ -234978,7 +171131,8 @@ hr { margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); - border: 0; } + border: 0; +} .sr-only-focusable:active, .sr-only-focusable:focus { position: static; @@ -234986,255 +171140,315 @@ hr { height: auto; margin: 0; overflow: visible; - clip: auto; } + clip: auto; +} -[role=\\"button\\"] { - cursor: pointer; } +[role=button] { + cursor: pointer; +} h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 500; line-height: 1.1; - color: inherit; } - h1 small, - h1 .small, h2 small, - h2 .small, h3 small, - h3 .small, h4 small, - h4 .small, h5 small, - h5 .small, h6 small, - h6 .small, - .h1 small, - .h1 .small, .h2 small, - .h2 .small, .h3 small, - .h3 .small, .h4 small, - .h4 .small, .h5 small, - .h5 .small, .h6 small, - .h6 .small { - font-weight: 400; - line-height: 1; - color: #777777; } + color: inherit; +} +h1 small, +h1 .small, h2 small, +h2 .small, h3 small, +h3 .small, h4 small, +h4 .small, h5 small, +h5 .small, h6 small, +h6 .small, +.h1 small, +.h1 .small, .h2 small, +.h2 .small, .h3 small, +.h3 .small, .h4 small, +.h4 .small, .h5 small, +.h5 .small, .h6 small, +.h6 .small { + font-weight: 400; + line-height: 1; + color: #777777; +} h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; - margin-bottom: 10px; } - h1 small, - h1 .small, .h1 small, - .h1 .small, - h2 small, - h2 .small, .h2 small, - .h2 .small, - h3 small, - h3 .small, .h3 small, - .h3 .small { - font-size: 65%; } + margin-bottom: 10px; +} +h1 small, +h1 .small, .h1 small, +.h1 .small, +h2 small, +h2 .small, .h2 small, +.h2 .small, +h3 small, +h3 .small, .h3 small, +.h3 .small { + font-size: 65%; +} h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; - margin-bottom: 10px; } - h4 small, - h4 .small, .h4 small, - .h4 .small, - h5 small, - h5 .small, .h5 small, - .h5 .small, - h6 small, - h6 .small, .h6 small, - .h6 .small { - font-size: 75%; } + margin-bottom: 10px; +} +h4 small, +h4 .small, .h4 small, +.h4 .small, +h5 small, +h5 .small, .h5 small, +.h5 .small, +h6 small, +h6 .small, .h6 small, +.h6 .small { + font-size: 75%; +} h1, .h1 { - font-size: 36px; } + font-size: 36px; +} h2, .h2 { - font-size: 30px; } + font-size: 30px; +} h3, .h3 { - font-size: 24px; } + font-size: 24px; +} h4, .h4 { - font-size: 18px; } + font-size: 18px; +} h5, .h5 { - font-size: 14px; } + font-size: 14px; +} h6, .h6 { - font-size: 12px; } + font-size: 12px; +} p { - margin: 0 0 10px; } + margin: 0 0 10px; +} .lead { margin-bottom: 20px; font-size: 16px; font-weight: 300; - line-height: 1.4; } - @media (min-width: 768px) { - .lead { - font-size: 21px; } } + line-height: 1.4; +} +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} small, .small { - font-size: 85%; } + font-size: 85%; +} mark, .mark { - padding: .2em; - background-color: #fcf8e3; } + padding: 0.2em; + background-color: #fcf8e3; +} .text-left { - text-align: left; } + text-align: left; +} .text-right { - text-align: right; } + text-align: right; +} .text-center { - text-align: center; } + text-align: center; +} .text-justify { - text-align: justify; } + text-align: justify; +} .text-nowrap { - white-space: nowrap; } + white-space: nowrap; +} .text-lowercase { - text-transform: lowercase; } + text-transform: lowercase; +} .text-uppercase, .initialism { - text-transform: uppercase; } + text-transform: uppercase; +} .text-capitalize { - text-transform: capitalize; } + text-transform: capitalize; +} .text-muted { - color: #777777; } + color: #777777; +} .text-primary { - color: #337ab7; } + color: #337ab7; +} a.text-primary:hover, a.text-primary:focus { - color: #286090; } + color: #286090; +} .text-success { - color: #3c763d; } + color: #3c763d; +} a.text-success:hover, a.text-success:focus { - color: #2b542c; } + color: #2b542c; +} .text-info { - color: #31708f; } + color: #31708f; +} a.text-info:hover, a.text-info:focus { - color: #245269; } + color: #245269; +} .text-warning { - color: #8a6d3b; } + color: #8a6d3b; +} a.text-warning:hover, a.text-warning:focus { - color: #66512c; } + color: #66512c; +} .text-danger { - color: #a94442; } + color: #a94442; +} a.text-danger:hover, a.text-danger:focus { - color: #843534; } + color: #843534; +} .bg-primary { - color: #fff; } + color: #fff; +} .bg-primary { - background-color: #337ab7; } + background-color: #337ab7; +} a.bg-primary:hover, a.bg-primary:focus { - background-color: #286090; } + background-color: #286090; +} .bg-success { - background-color: #dff0d8; } + background-color: #dff0d8; +} a.bg-success:hover, a.bg-success:focus { - background-color: #c1e2b3; } + background-color: #c1e2b3; +} .bg-info { - background-color: #d9edf7; } + background-color: #d9edf7; +} a.bg-info:hover, a.bg-info:focus { - background-color: #afd9ee; } + background-color: #afd9ee; +} .bg-warning { - background-color: #fcf8e3; } + background-color: #fcf8e3; +} a.bg-warning:hover, a.bg-warning:focus { - background-color: #f7ecb5; } + background-color: #f7ecb5; +} .bg-danger { - background-color: #f2dede; } + background-color: #f2dede; +} a.bg-danger:hover, a.bg-danger:focus { - background-color: #e4b9b9; } + background-color: #e4b9b9; +} .page-header { padding-bottom: 9px; margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; } + border-bottom: 1px solid #eeeeee; +} ul, ol { margin-top: 0; - margin-bottom: 10px; } - ul ul, - ul ol, - ol ul, - ol ol { - margin-bottom: 0; } + margin-bottom: 10px; +} +ul ul, +ul ol, +ol ul, +ol ol { + margin-bottom: 0; +} .list-unstyled { padding-left: 0; - list-style: none; } + list-style: none; +} .list-inline { padding-left: 0; list-style: none; - margin-left: -5px; } - .list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; } + margin-left: -5px; +} +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} dl { margin-top: 0; - margin-bottom: 20px; } + margin-bottom: 20px; +} dt, dd { - line-height: 1.42857; } + line-height: 1.428571429; +} dt { - font-weight: 700; } + font-weight: 700; +} dd { - margin-left: 0; } + margin-left: 0; +} .dl-horizontal dd:before, .dl-horizontal dd:after { display: table; - content: \\" \\"; } - + content: \\" \\"; +} .dl-horizontal dd:after { - clear: both; } - + clear: both; +} @media (min-width: 768px) { .dl-horizontal dt { float: left; @@ -235243,37 +171457,46 @@ dd { text-align: right; overflow: hidden; text-overflow: ellipsis; - white-space: nowrap; } + white-space: nowrap; + } .dl-horizontal dd { - margin-left: 180px; } } + margin-left: 180px; + } +} abbr[title], abbr[data-original-title] { - cursor: help; } + cursor: help; +} .initialism { - font-size: 90%; } + font-size: 90%; +} blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; - border-left: 5px solid #eeeeee; } - blockquote p:last-child, - blockquote ul:last-child, - blockquote ol:last-child { - margin-bottom: 0; } - blockquote footer, - blockquote small, - blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857; - color: #777777; } - blockquote footer:before, - blockquote small:before, - blockquote .small:before { - content: \\"\\\\2014 \\\\00A0\\"; } + border-left: 5px solid #eeeeee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.428571429; + color: #777777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: \\"— \\"; +} .blockquote-reverse, blockquote.pull-right { @@ -235281,39 +171504,45 @@ blockquote.pull-right { padding-left: 0; text-align: right; border-right: 5px solid #eeeeee; - border-left: 0; } - .blockquote-reverse footer:before, - .blockquote-reverse small:before, - .blockquote-reverse .small:before, - blockquote.pull-right footer:before, - blockquote.pull-right small:before, - blockquote.pull-right .small:before { - content: \\"\\"; } - .blockquote-reverse footer:after, - .blockquote-reverse small:after, - .blockquote-reverse .small:after, - blockquote.pull-right footer:after, - blockquote.pull-right small:after, - blockquote.pull-right .small:after { - content: \\"\\\\00A0 \\\\2014\\"; } + border-left: 0; +} +.blockquote-reverse footer:before, +.blockquote-reverse small:before, +.blockquote-reverse .small:before, +blockquote.pull-right footer:before, +blockquote.pull-right small:before, +blockquote.pull-right .small:before { + content: \\"\\"; +} +.blockquote-reverse footer:after, +.blockquote-reverse small:after, +.blockquote-reverse .small:after, +blockquote.pull-right footer:after, +blockquote.pull-right small:after, +blockquote.pull-right .small:after { + content: \\" —\\"; +} address { margin-bottom: 20px; font-style: normal; - line-height: 1.42857; } + line-height: 1.428571429; +} code, kbd, pre, samp { - font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; } + font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; +} code { padding: 2px 4px; font-size: 90%; color: #c7254e; background-color: #f9f2f4; - border-radius: 4px; } + border-radius: 4px; +} kbd { padding: 2px 4px; @@ -235321,613 +171550,1008 @@ kbd { color: #fff; background-color: #333; border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } - kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; } + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; + box-shadow: none; +} pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; - line-height: 1.42857; + line-height: 1.428571429; color: #333333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; - border-radius: 4px; } - pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; } + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} .pre-scrollable { max-height: 340px; - overflow-y: scroll; } + overflow-y: scroll; +} .container { padding-right: 15px; padding-left: 15px; margin-right: auto; - margin-left: auto; } - .container:before, .container:after { - display: table; - content: \\" \\"; } - .container:after { - clear: both; } - @media (min-width: 768px) { - .container { - width: 750px; } } - @media (min-width: 992px) { - .container { - width: 970px; } } - @media (min-width: 1200px) { - .container { - width: 1170px; } } + margin-left: auto; +} +.container:before, .container:after { + display: table; + content: \\" \\"; +} +.container:after { + clear: both; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; - margin-left: auto; } - .container-fluid:before, .container-fluid:after { - display: table; - content: \\" \\"; } - .container-fluid:after { - clear: both; } + margin-left: auto; +} +.container-fluid:before, .container-fluid:after { + display: table; + content: \\" \\"; +} +.container-fluid:after { + clear: both; +} .row { margin-right: -15px; - margin-left: -15px; } - .row:before, .row:after { - display: table; - content: \\" \\"; } - .row:after { - clear: both; } + margin-left: -15px; +} +.row:before, .row:after { + display: table; + content: \\" \\"; +} +.row:after { + clear: both; +} .row-no-gutters { margin-right: 0; - margin-left: 0; } - .row-no-gutters [class*=\\"col-\\"] { - padding-right: 0; - padding-left: 0; } + margin-left: 0; +} +.row-no-gutters [class*=col-] { + padding-right: 0; + padding-left: 0; +} .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-right: 15px; - padding-left: 15px; } + padding-left: 15px; +} .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; } + float: left; +} .col-xs-1 { - width: 8.33333%; } + width: 8.3333333333%; +} .col-xs-2 { - width: 16.66667%; } + width: 16.6666666667%; +} .col-xs-3 { - width: 25%; } + width: 25%; +} .col-xs-4 { - width: 33.33333%; } + width: 33.3333333333%; +} .col-xs-5 { - width: 41.66667%; } + width: 41.6666666667%; +} .col-xs-6 { - width: 50%; } + width: 50%; +} .col-xs-7 { - width: 58.33333%; } + width: 58.3333333333%; +} .col-xs-8 { - width: 66.66667%; } + width: 66.6666666667%; +} .col-xs-9 { - width: 75%; } + width: 75%; +} .col-xs-10 { - width: 83.33333%; } + width: 83.3333333333%; +} .col-xs-11 { - width: 91.66667%; } + width: 91.6666666667%; +} .col-xs-12 { - width: 100%; } + width: 100%; +} .col-xs-pull-0 { - right: auto; } + right: auto; +} .col-xs-pull-1 { - right: 8.33333%; } + right: 8.3333333333%; +} .col-xs-pull-2 { - right: 16.66667%; } + right: 16.6666666667%; +} .col-xs-pull-3 { - right: 25%; } + right: 25%; +} .col-xs-pull-4 { - right: 33.33333%; } + right: 33.3333333333%; +} .col-xs-pull-5 { - right: 41.66667%; } + right: 41.6666666667%; +} .col-xs-pull-6 { - right: 50%; } + right: 50%; +} .col-xs-pull-7 { - right: 58.33333%; } + right: 58.3333333333%; +} .col-xs-pull-8 { - right: 66.66667%; } + right: 66.6666666667%; +} .col-xs-pull-9 { - right: 75%; } + right: 75%; +} .col-xs-pull-10 { - right: 83.33333%; } + right: 83.3333333333%; +} .col-xs-pull-11 { - right: 91.66667%; } + right: 91.6666666667%; +} .col-xs-pull-12 { - right: 100%; } + right: 100%; +} .col-xs-push-0 { - left: auto; } + left: auto; +} .col-xs-push-1 { - left: 8.33333%; } + left: 8.3333333333%; +} .col-xs-push-2 { - left: 16.66667%; } + left: 16.6666666667%; +} .col-xs-push-3 { - left: 25%; } + left: 25%; +} .col-xs-push-4 { - left: 33.33333%; } + left: 33.3333333333%; +} .col-xs-push-5 { - left: 41.66667%; } + left: 41.6666666667%; +} .col-xs-push-6 { - left: 50%; } + left: 50%; +} .col-xs-push-7 { - left: 58.33333%; } + left: 58.3333333333%; +} .col-xs-push-8 { - left: 66.66667%; } + left: 66.6666666667%; +} .col-xs-push-9 { - left: 75%; } + left: 75%; +} .col-xs-push-10 { - left: 83.33333%; } + left: 83.3333333333%; +} .col-xs-push-11 { - left: 91.66667%; } + left: 91.6666666667%; +} .col-xs-push-12 { - left: 100%; } + left: 100%; +} .col-xs-offset-0 { - margin-left: 0%; } + margin-left: 0%; +} .col-xs-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; +} .col-xs-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; +} .col-xs-offset-3 { - margin-left: 25%; } + margin-left: 25%; +} .col-xs-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; +} .col-xs-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; +} .col-xs-offset-6 { - margin-left: 50%; } + margin-left: 50%; +} .col-xs-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; +} .col-xs-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; +} .col-xs-offset-9 { - margin-left: 75%; } + margin-left: 75%; +} .col-xs-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; +} .col-xs-offset-11 { - margin-left: 91.66667%; } + margin-left: 91.6666666667%; +} .col-xs-offset-12 { - margin-left: 100%; } + margin-left: 100%; +} @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; } + float: left; + } + .col-sm-1 { - width: 8.33333%; } + width: 8.3333333333%; + } + .col-sm-2 { - width: 16.66667%; } + width: 16.6666666667%; + } + .col-sm-3 { - width: 25%; } + width: 25%; + } + .col-sm-4 { - width: 33.33333%; } + width: 33.3333333333%; + } + .col-sm-5 { - width: 41.66667%; } + width: 41.6666666667%; + } + .col-sm-6 { - width: 50%; } + width: 50%; + } + .col-sm-7 { - width: 58.33333%; } + width: 58.3333333333%; + } + .col-sm-8 { - width: 66.66667%; } + width: 66.6666666667%; + } + .col-sm-9 { - width: 75%; } + width: 75%; + } + .col-sm-10 { - width: 83.33333%; } + width: 83.3333333333%; + } + .col-sm-11 { - width: 91.66667%; } + width: 91.6666666667%; + } + .col-sm-12 { - width: 100%; } + width: 100%; + } + .col-sm-pull-0 { - right: auto; } + right: auto; + } + .col-sm-pull-1 { - right: 8.33333%; } + right: 8.3333333333%; + } + .col-sm-pull-2 { - right: 16.66667%; } + right: 16.6666666667%; + } + .col-sm-pull-3 { - right: 25%; } + right: 25%; + } + .col-sm-pull-4 { - right: 33.33333%; } + right: 33.3333333333%; + } + .col-sm-pull-5 { - right: 41.66667%; } + right: 41.6666666667%; + } + .col-sm-pull-6 { - right: 50%; } + right: 50%; + } + .col-sm-pull-7 { - right: 58.33333%; } + right: 58.3333333333%; + } + .col-sm-pull-8 { - right: 66.66667%; } + right: 66.6666666667%; + } + .col-sm-pull-9 { - right: 75%; } + right: 75%; + } + .col-sm-pull-10 { - right: 83.33333%; } + right: 83.3333333333%; + } + .col-sm-pull-11 { - right: 91.66667%; } + right: 91.6666666667%; + } + .col-sm-pull-12 { - right: 100%; } + right: 100%; + } + .col-sm-push-0 { - left: auto; } + left: auto; + } + .col-sm-push-1 { - left: 8.33333%; } + left: 8.3333333333%; + } + .col-sm-push-2 { - left: 16.66667%; } + left: 16.6666666667%; + } + .col-sm-push-3 { - left: 25%; } + left: 25%; + } + .col-sm-push-4 { - left: 33.33333%; } + left: 33.3333333333%; + } + .col-sm-push-5 { - left: 41.66667%; } + left: 41.6666666667%; + } + .col-sm-push-6 { - left: 50%; } + left: 50%; + } + .col-sm-push-7 { - left: 58.33333%; } + left: 58.3333333333%; + } + .col-sm-push-8 { - left: 66.66667%; } + left: 66.6666666667%; + } + .col-sm-push-9 { - left: 75%; } + left: 75%; + } + .col-sm-push-10 { - left: 83.33333%; } + left: 83.3333333333%; + } + .col-sm-push-11 { - left: 91.66667%; } + left: 91.6666666667%; + } + .col-sm-push-12 { - left: 100%; } + left: 100%; + } + .col-sm-offset-0 { - margin-left: 0%; } + margin-left: 0%; + } + .col-sm-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; + } + .col-sm-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; + } + .col-sm-offset-3 { - margin-left: 25%; } + margin-left: 25%; + } + .col-sm-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; + } + .col-sm-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; + } + .col-sm-offset-6 { - margin-left: 50%; } + margin-left: 50%; + } + .col-sm-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; + } + .col-sm-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; + } + .col-sm-offset-9 { - margin-left: 75%; } + margin-left: 75%; + } + .col-sm-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; + } + .col-sm-offset-11 { - margin-left: 91.66667%; } - .col-sm-offset-12 { - margin-left: 100%; } } + margin-left: 91.6666666667%; + } + .col-sm-offset-12 { + margin-left: 100%; + } +} @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; } + float: left; + } + .col-md-1 { - width: 8.33333%; } + width: 8.3333333333%; + } + .col-md-2 { - width: 16.66667%; } + width: 16.6666666667%; + } + .col-md-3 { - width: 25%; } + width: 25%; + } + .col-md-4 { - width: 33.33333%; } + width: 33.3333333333%; + } + .col-md-5 { - width: 41.66667%; } + width: 41.6666666667%; + } + .col-md-6 { - width: 50%; } + width: 50%; + } + .col-md-7 { - width: 58.33333%; } + width: 58.3333333333%; + } + .col-md-8 { - width: 66.66667%; } + width: 66.6666666667%; + } + .col-md-9 { - width: 75%; } + width: 75%; + } + .col-md-10 { - width: 83.33333%; } + width: 83.3333333333%; + } + .col-md-11 { - width: 91.66667%; } + width: 91.6666666667%; + } + .col-md-12 { - width: 100%; } + width: 100%; + } + .col-md-pull-0 { - right: auto; } + right: auto; + } + .col-md-pull-1 { - right: 8.33333%; } + right: 8.3333333333%; + } + .col-md-pull-2 { - right: 16.66667%; } + right: 16.6666666667%; + } + .col-md-pull-3 { - right: 25%; } + right: 25%; + } + .col-md-pull-4 { - right: 33.33333%; } + right: 33.3333333333%; + } + .col-md-pull-5 { - right: 41.66667%; } + right: 41.6666666667%; + } + .col-md-pull-6 { - right: 50%; } + right: 50%; + } + .col-md-pull-7 { - right: 58.33333%; } + right: 58.3333333333%; + } + .col-md-pull-8 { - right: 66.66667%; } + right: 66.6666666667%; + } + .col-md-pull-9 { - right: 75%; } + right: 75%; + } + .col-md-pull-10 { - right: 83.33333%; } + right: 83.3333333333%; + } + .col-md-pull-11 { - right: 91.66667%; } + right: 91.6666666667%; + } + .col-md-pull-12 { - right: 100%; } + right: 100%; + } + .col-md-push-0 { - left: auto; } + left: auto; + } + .col-md-push-1 { - left: 8.33333%; } + left: 8.3333333333%; + } + .col-md-push-2 { - left: 16.66667%; } + left: 16.6666666667%; + } + .col-md-push-3 { - left: 25%; } + left: 25%; + } + .col-md-push-4 { - left: 33.33333%; } + left: 33.3333333333%; + } + .col-md-push-5 { - left: 41.66667%; } + left: 41.6666666667%; + } + .col-md-push-6 { - left: 50%; } + left: 50%; + } + .col-md-push-7 { - left: 58.33333%; } + left: 58.3333333333%; + } + .col-md-push-8 { - left: 66.66667%; } + left: 66.6666666667%; + } + .col-md-push-9 { - left: 75%; } + left: 75%; + } + .col-md-push-10 { - left: 83.33333%; } + left: 83.3333333333%; + } + .col-md-push-11 { - left: 91.66667%; } + left: 91.6666666667%; + } + .col-md-push-12 { - left: 100%; } + left: 100%; + } + .col-md-offset-0 { - margin-left: 0%; } + margin-left: 0%; + } + .col-md-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; + } + .col-md-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; + } + .col-md-offset-3 { - margin-left: 25%; } + margin-left: 25%; + } + .col-md-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; + } + .col-md-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; + } + .col-md-offset-6 { - margin-left: 50%; } + margin-left: 50%; + } + .col-md-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; + } + .col-md-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; + } + .col-md-offset-9 { - margin-left: 75%; } + margin-left: 75%; + } + .col-md-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; + } + .col-md-offset-11 { - margin-left: 91.66667%; } - .col-md-offset-12 { - margin-left: 100%; } } + margin-left: 91.6666666667%; + } + .col-md-offset-12 { + margin-left: 100%; + } +} @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; } + float: left; + } + .col-lg-1 { - width: 8.33333%; } + width: 8.3333333333%; + } + .col-lg-2 { - width: 16.66667%; } + width: 16.6666666667%; + } + .col-lg-3 { - width: 25%; } + width: 25%; + } + .col-lg-4 { - width: 33.33333%; } + width: 33.3333333333%; + } + .col-lg-5 { - width: 41.66667%; } + width: 41.6666666667%; + } + .col-lg-6 { - width: 50%; } + width: 50%; + } + .col-lg-7 { - width: 58.33333%; } + width: 58.3333333333%; + } + .col-lg-8 { - width: 66.66667%; } + width: 66.6666666667%; + } + .col-lg-9 { - width: 75%; } + width: 75%; + } + .col-lg-10 { - width: 83.33333%; } + width: 83.3333333333%; + } + .col-lg-11 { - width: 91.66667%; } + width: 91.6666666667%; + } + .col-lg-12 { - width: 100%; } + width: 100%; + } + .col-lg-pull-0 { - right: auto; } + right: auto; + } + .col-lg-pull-1 { - right: 8.33333%; } + right: 8.3333333333%; + } + .col-lg-pull-2 { - right: 16.66667%; } + right: 16.6666666667%; + } + .col-lg-pull-3 { - right: 25%; } + right: 25%; + } + .col-lg-pull-4 { - right: 33.33333%; } + right: 33.3333333333%; + } + .col-lg-pull-5 { - right: 41.66667%; } + right: 41.6666666667%; + } + .col-lg-pull-6 { - right: 50%; } + right: 50%; + } + .col-lg-pull-7 { - right: 58.33333%; } + right: 58.3333333333%; + } + .col-lg-pull-8 { - right: 66.66667%; } + right: 66.6666666667%; + } + .col-lg-pull-9 { - right: 75%; } + right: 75%; + } + .col-lg-pull-10 { - right: 83.33333%; } + right: 83.3333333333%; + } + .col-lg-pull-11 { - right: 91.66667%; } + right: 91.6666666667%; + } + .col-lg-pull-12 { - right: 100%; } + right: 100%; + } + .col-lg-push-0 { - left: auto; } + left: auto; + } + .col-lg-push-1 { - left: 8.33333%; } + left: 8.3333333333%; + } + .col-lg-push-2 { - left: 16.66667%; } + left: 16.6666666667%; + } + .col-lg-push-3 { - left: 25%; } + left: 25%; + } + .col-lg-push-4 { - left: 33.33333%; } + left: 33.3333333333%; + } + .col-lg-push-5 { - left: 41.66667%; } + left: 41.6666666667%; + } + .col-lg-push-6 { - left: 50%; } + left: 50%; + } + .col-lg-push-7 { - left: 58.33333%; } + left: 58.3333333333%; + } + .col-lg-push-8 { - left: 66.66667%; } + left: 66.6666666667%; + } + .col-lg-push-9 { - left: 75%; } + left: 75%; + } + .col-lg-push-10 { - left: 83.33333%; } + left: 83.3333333333%; + } + .col-lg-push-11 { - left: 91.66667%; } + left: 91.6666666667%; + } + .col-lg-push-12 { - left: 100%; } + left: 100%; + } + .col-lg-offset-0 { - margin-left: 0%; } + margin-left: 0%; + } + .col-lg-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; + } + .col-lg-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; + } + .col-lg-offset-3 { - margin-left: 25%; } + margin-left: 25%; + } + .col-lg-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; + } + .col-lg-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; + } + .col-lg-offset-6 { - margin-left: 50%; } + margin-left: 50%; + } + .col-lg-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; + } + .col-lg-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; + } + .col-lg-offset-9 { - margin-left: 75%; } + margin-left: 75%; + } + .col-lg-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; + } + .col-lg-offset-11 { - margin-left: 91.66667%; } - .col-lg-offset-12 { - margin-left: 100%; } } + margin-left: 91.6666666667%; + } + .col-lg-offset-12 { + margin-left: 100%; + } +} table { - background-color: transparent; } - table col[class*=\\"col-\\"] { - position: static; - display: table-column; - float: none; } - table td[class*=\\"col-\\"], - table th[class*=\\"col-\\"] { - position: static; - display: table-cell; - float: none; } + background-color: transparent; +} +table col[class*=col-] { + position: static; + display: table-column; + float: none; +} +table td[class*=col-], +table th[class*=col-] { + position: static; + display: table-cell; + float: none; +} caption { padding-top: 8px; padding-bottom: 8px; color: #777777; - text-align: left; } + text-align: left; +} th { - text-align: left; } + text-align: left; +} .table { width: 100%; max-width: 100%; - margin-bottom: 20px; } - .table > thead > tr > th, - .table > thead > tr > td, - .table > tbody > tr > th, - .table > tbody > tr > td, - .table > tfoot > tr > th, - .table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857; - vertical-align: top; - border-top: 1px solid #ddd; } - .table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; } - .table > caption + thead > tr:first-child > th, - .table > caption + thead > tr:first-child > td, - .table > colgroup + thead > tr:first-child > th, - .table > colgroup + thead > tr:first-child > td, - .table > thead:first-child > tr:first-child > th, - .table > thead:first-child > tr:first-child > td { - border-top: 0; } - .table > tbody + tbody { - border-top: 2px solid #ddd; } - .table .table { - background-color: #fff; } + margin-bottom: 20px; +} +.table > thead > tr > th, +.table > thead > tr > td, +.table > tbody > tr > th, +.table > tbody > tr > td, +.table > tfoot > tr > th, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #ddd; +} +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; +} +.table > caption + thead > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > th, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} +.table > tbody + tbody { + border-top: 2px solid #ddd; +} +.table .table { + background-color: #fff; +} .table-condensed > thead > tr > th, .table-condensed > thead > tr > td, @@ -235935,31 +172559,35 @@ th { .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > tfoot > tr > td { - padding: 5px; } + padding: 5px; +} .table-bordered { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td, - .table-bordered > tbody > tr > th, - .table-bordered > tbody > tr > td, - .table-bordered > tfoot > tr > th, - .table-bordered > tfoot > tr > td { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td { - border-bottom-width: 2px; } + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > th, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > th, +.table-bordered > tfoot > tr > td { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} .table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; } + background-color: #f9f9f9; +} .table-hover > tbody > tr:hover { - background-color: #f5f5f5; } + background-color: #f5f5f5; +} .table > thead > tr > td.active, -.table > thead > tr > th.active, -.table > thead > tr.active > td, -.table > thead > tr.active > th, +.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tbody > tr.active > td, @@ -235968,19 +172596,16 @@ th { .table > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th { - background-color: #f5f5f5; } + background-color: #f5f5f5; +} .table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; } +.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; +} .table > thead > tr > td.success, -.table > thead > tr > th.success, -.table > thead > tr.success > td, -.table > thead > tr.success > th, +.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tbody > tr.success > td, @@ -235989,19 +172614,16 @@ th { .table > tfoot > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th { - background-color: #dff0d8; } + background-color: #dff0d8; +} .table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; } +.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} .table > thead > tr > td.info, -.table > thead > tr > th.info, -.table > thead > tr.info > td, -.table > thead > tr.info > th, +.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tbody > tr.info > td, @@ -236010,19 +172632,16 @@ th { .table > tfoot > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th { - background-color: #d9edf7; } + background-color: #d9edf7; +} .table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; } +.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} .table > thead > tr > td.warning, -.table > thead > tr > th.warning, -.table > thead > tr.warning > td, -.table > thead > tr.warning > th, +.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.warning > td, @@ -236031,19 +172650,16 @@ th { .table > tfoot > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th { - background-color: #fcf8e3; } + background-color: #fcf8e3; +} .table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; } +.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} .table > thead > tr > td.danger, -.table > thead > tr > th.danger, -.table > thead > tr.danger > td, -.table > thead > tr.danger > th, +.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tbody > tr.danger > td, @@ -236052,61 +172668,70 @@ th { .table > tfoot > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th { - background-color: #f2dede; } + background-color: #f2dede; +} .table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; } +.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} .table-responsive { - min-height: .01%; - overflow-x: auto; } - @media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; } - .table-responsive > .table { - margin-bottom: 0; } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; } - .table-responsive > .table-bordered { - border: 0; } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; } } + min-height: 0.01%; + overflow-x: auto; +} +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, +.table-responsive > .table > thead > tr > td, +.table-responsive > .table > tbody > tr > th, +.table-responsive > .table > tbody > tr > td, +.table-responsive > .table > tfoot > tr > th, +.table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, +.table-responsive > .table-bordered > thead > tr > td:first-child, +.table-responsive > .table-bordered > tbody > tr > th:first-child, +.table-responsive > .table-bordered > tbody > tr > td:first-child, +.table-responsive > .table-bordered > tfoot > tr > th:first-child, +.table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, +.table-responsive > .table-bordered > thead > tr > td:last-child, +.table-responsive > .table-bordered > tbody > tr > th:last-child, +.table-responsive > .table-bordered > tbody > tr > td:last-child, +.table-responsive > .table-bordered > tfoot > tr > th:last-child, +.table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, +.table-responsive > .table-bordered > tbody > tr:last-child > td, +.table-responsive > .table-bordered > tfoot > tr:last-child > th, +.table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} fieldset { min-width: 0; padding: 0; margin: 0; - border: 0; } + border: 0; +} legend { display: block; @@ -236117,57 +172742,65 @@ legend { line-height: inherit; color: #333333; border: 0; - border-bottom: 1px solid #e5e5e5; } + border-bottom: 1px solid #e5e5e5; +} label { display: inline-block; max-width: 100%; margin-bottom: 5px; - font-weight: 700; } + font-weight: 700; +} -input[type=\\"search\\"] { +input[type=search] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-appearance: none; - appearance: none; } + appearance: none; +} -input[type=\\"radio\\"], -input[type=\\"checkbox\\"] { +input[type=radio], +input[type=checkbox] { margin: 4px 0 0; - margin-top: 1px \\\\9; - line-height: normal; } - input[type=\\"radio\\"][disabled], input[type=\\"radio\\"].disabled, - fieldset[disabled] input[type=\\"radio\\"], - input[type=\\"checkbox\\"][disabled], - input[type=\\"checkbox\\"].disabled, - fieldset[disabled] - input[type=\\"checkbox\\"] { - cursor: not-allowed; } - -input[type=\\"file\\"] { - display: block; } - -input[type=\\"range\\"] { + margin-top: 1px \\\\9 ; + line-height: normal; +} +input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], +input[type=checkbox][disabled], +input[type=checkbox].disabled, +fieldset[disabled] input[type=checkbox] { + cursor: not-allowed; +} + +input[type=file] { + display: block; +} + +input[type=range] { display: block; - width: 100%; } + width: 100%; +} select[multiple], select[size] { - height: auto; } + height: auto; +} -input[type=\\"file\\"]:focus, -input[type=\\"radio\\"]:focus, -input[type=\\"checkbox\\"]:focus { +input[type=file]:focus, +input[type=radio]:focus, +input[type=checkbox]:focus { outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } + outline-offset: -2px; +} output { display: block; padding-top: 7px; font-size: 14px; - line-height: 1.42857; - color: #555555; } + line-height: 1.428571429; + color: #555555; +} .form-control { display: block; @@ -236175,7 +172808,7 @@ output { height: 34px; padding: 6px 12px; font-size: 14px; - line-height: 1.42857; + line-height: 1.428571429; color: #555555; background-color: #fff; background-image: none; @@ -236185,120 +172818,112 @@ output { box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } - .form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); } - .form-control::-moz-placeholder { - color: #999; - opacity: 1; } - .form-control:-ms-input-placeholder { - color: #999; } - .form-control::-webkit-input-placeholder { - color: #999; } - .form-control::-ms-expand { - background-color: transparent; - border: 0; } - .form-control[disabled], .form-control[readonly], - fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; } - .form-control[disabled], - fieldset[disabled] .form-control { - cursor: not-allowed; } + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); +} +.form-control::-moz-placeholder { + color: #999; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #999; +} +.form-control::-webkit-input-placeholder { + color: #999; +} +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} +.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { + background-color: #eeeeee; + opacity: 1; +} +.form-control[disabled], fieldset[disabled] .form-control { + cursor: not-allowed; +} textarea.form-control { - height: auto; } + height: auto; +} @media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type=\\"date\\"].form-control, - input[type=\\"time\\"].form-control, - input[type=\\"datetime-local\\"].form-control, - input[type=\\"month\\"].form-control { - line-height: 34px; } - input[type=\\"date\\"].input-sm, .input-group-sm > input.form-control[type=\\"date\\"], - .input-group-sm > input.input-group-addon[type=\\"date\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-sm input[type=\\"date\\"], - input[type=\\"time\\"].input-sm, - .input-group-sm > input.form-control[type=\\"time\\"], - .input-group-sm > input.input-group-addon[type=\\"time\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-sm - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-sm, - .input-group-sm > input.form-control[type=\\"datetime-local\\"], - .input-group-sm > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-sm - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-sm, - .input-group-sm > input.form-control[type=\\"month\\"], - .input-group-sm > input.input-group-addon[type=\\"month\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-sm - input[type=\\"month\\"] { - line-height: 30px; } - input[type=\\"date\\"].input-lg, .input-group-lg > input.form-control[type=\\"date\\"], - .input-group-lg > input.input-group-addon[type=\\"date\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-lg input[type=\\"date\\"], - input[type=\\"time\\"].input-lg, - .input-group-lg > input.form-control[type=\\"time\\"], - .input-group-lg > input.input-group-addon[type=\\"time\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-lg - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-lg, - .input-group-lg > input.form-control[type=\\"datetime-local\\"], - .input-group-lg > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-lg - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-lg, - .input-group-lg > input.form-control[type=\\"month\\"], - .input-group-lg > input.input-group-addon[type=\\"month\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-lg - input[type=\\"month\\"] { - line-height: 46px; } } - + input[type=date].form-control, +input[type=time].form-control, +input[type=datetime-local].form-control, +input[type=month].form-control { + line-height: 34px; + } + input[type=date].input-sm, +.input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date], +input[type=time].input-sm, +.input-group-sm > .input-group-btn > input[type=time].btn, +.input-group-sm input[type=time], +input[type=datetime-local].input-sm, +.input-group-sm > .input-group-btn > input[type=datetime-local].btn, +.input-group-sm input[type=datetime-local], +input[type=month].input-sm, +.input-group-sm > .input-group-btn > input[type=month].btn, +.input-group-sm input[type=month] { + line-height: 30px; + } + input[type=date].input-lg, +.input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date], +input[type=time].input-lg, +.input-group-lg > .input-group-btn > input[type=time].btn, +.input-group-lg input[type=time], +input[type=datetime-local].input-lg, +.input-group-lg > .input-group-btn > input[type=datetime-local].btn, +.input-group-lg input[type=datetime-local], +input[type=month].input-lg, +.input-group-lg > .input-group-btn > input[type=month].btn, +.input-group-lg input[type=month] { + line-height: 46px; + } +} .form-group { - margin-bottom: 15px; } + margin-bottom: 15px; +} .radio, .checkbox { position: relative; display: block; margin-top: 10px; - margin-bottom: 10px; } - .radio.disabled label, - fieldset[disabled] .radio label, - .checkbox.disabled label, - fieldset[disabled] - .checkbox label { - cursor: not-allowed; } - .radio label, - .checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; } + margin-bottom: 10px; +} +.radio.disabled label, fieldset[disabled] .radio label, +.checkbox.disabled label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + cursor: pointer; +} -.radio input[type=\\"radio\\"], -.radio-inline input[type=\\"radio\\"], -.checkbox input[type=\\"checkbox\\"], -.checkbox-inline input[type=\\"checkbox\\"] { +.radio input[type=radio], +.radio-inline input[type=radio], +.checkbox input[type=checkbox], +.checkbox-inline input[type=checkbox] { position: absolute; - margin-top: 4px \\\\9; - margin-left: -20px; } + margin-top: 4px \\\\9 ; + margin-left: -20px; +} .radio + .radio, .checkbox + .checkbox { - margin-top: -5px; } + margin-top: -5px; +} .radio-inline, .checkbox-inline { @@ -236308,31 +172933,34 @@ textarea.form-control { margin-bottom: 0; font-weight: 400; vertical-align: middle; - cursor: pointer; } - .radio-inline.disabled, - fieldset[disabled] .radio-inline, - .checkbox-inline.disabled, - fieldset[disabled] - .checkbox-inline { - cursor: not-allowed; } + cursor: pointer; +} +.radio-inline.disabled, fieldset[disabled] .radio-inline, +.checkbox-inline.disabled, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; - margin-left: 10px; } + margin-left: 10px; +} .form-control-static { min-height: 34px; padding-top: 7px; padding-bottom: 7px; - margin-bottom: 0; } - .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, - .input-group-lg > .form-control-static.input-group-addon, - .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, - .input-group-sm > .form-control-static.input-group-addon, - .input-group-sm > .input-group-btn > .form-control-static.btn { - padding-right: 0; - padding-left: 0; } + margin-bottom: 0; +} +.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, +.input-group-lg > .form-control-static.input-group-addon, +.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, +.input-group-sm > .form-control-static.input-group-addon, +.input-group-sm > .input-group-btn > .form-control-static.btn { + padding-right: 0; + padding-left: 0; +} .input-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, @@ -236341,44 +172969,48 @@ textarea.form-control { padding: 5px 10px; font-size: 12px; line-height: 1.5; - border-radius: 3px; } + border-radius: 3px; +} select.input-sm, .input-group-sm > select.form-control, .input-group-sm > select.input-group-addon, .input-group-sm > .input-group-btn > select.btn { height: 30px; - line-height: 30px; } + line-height: 30px; +} textarea.input-sm, .input-group-sm > textarea.form-control, .input-group-sm > textarea.input-group-addon, .input-group-sm > .input-group-btn > textarea.btn, select[multiple].input-sm, -.input-group-sm > select.form-control[multiple], -.input-group-sm > select.input-group-addon[multiple], -.input-group-sm > .input-group-btn > select.btn[multiple] { - height: auto; } +.input-group-sm > select[multiple].form-control, +.input-group-sm > select[multiple].input-group-addon, +.input-group-sm > .input-group-btn > select[multiple].btn { + height: auto; +} .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; - border-radius: 3px; } - + border-radius: 3px; +} .form-group-sm select.form-control { height: 30px; - line-height: 30px; } - + line-height: 30px; +} .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { - height: auto; } - + height: auto; +} .form-group-sm .form-control-static { height: 30px; min-height: 32px; padding: 6px 10px; font-size: 12px; - line-height: 1.5; } + line-height: 1.5; +} .input-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, @@ -236386,50 +173018,56 @@ select[multiple].input-sm, height: 46px; padding: 10px 16px; font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } + line-height: 1.3333333; + border-radius: 6px; +} select.input-lg, .input-group-lg > select.form-control, .input-group-lg > select.input-group-addon, .input-group-lg > .input-group-btn > select.btn { height: 46px; - line-height: 46px; } + line-height: 46px; +} textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg > textarea.input-group-addon, .input-group-lg > .input-group-btn > textarea.btn, select[multiple].input-lg, -.input-group-lg > select.form-control[multiple], -.input-group-lg > select.input-group-addon[multiple], -.input-group-lg > .input-group-btn > select.btn[multiple] { - height: auto; } +.input-group-lg > select[multiple].form-control, +.input-group-lg > select[multiple].input-group-addon, +.input-group-lg > .input-group-btn > select[multiple].btn { + height: auto; +} .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } - + line-height: 1.3333333; + border-radius: 6px; +} .form-group-lg select.form-control { height: 46px; - line-height: 46px; } - + line-height: 46px; +} .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { - height: auto; } - + height: auto; +} .form-group-lg .form-control-static { height: 46px; min-height: 38px; padding: 11px 16px; font-size: 18px; - line-height: 1.33333; } + line-height: 1.3333333; +} .has-feedback { - position: relative; } - .has-feedback .form-control { - padding-right: 42.5px; } + position: relative; +} +.has-feedback .form-control { + padding-right: 42.5px; +} .form-control-feedback { position: absolute; @@ -236441,159 +173079,174 @@ select[multiple].input-lg, height: 34px; line-height: 34px; text-align: center; - pointer-events: none; } + pointer-events: none; +} -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, +.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, +.input-group-lg > .input-group-addon + .form-control-feedback, +.input-group-lg > .input-group-btn > .btn + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 46px; height: 46px; - line-height: 46px; } + line-height: 46px; +} -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, +.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, +.input-group-sm > .input-group-addon + .form-control-feedback, +.input-group-sm > .input-group-btn > .btn + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; - line-height: 30px; } + line-height: 30px; +} .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; } - +.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { + color: #3c763d; +} .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; } - + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; +} .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; - border-color: #3c763d; } - + border-color: #3c763d; +} .has-success .form-control-feedback { - color: #3c763d; } + color: #3c763d; +} .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; } - +.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { + color: #8a6d3b; +} .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; } - + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; +} .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; - border-color: #8a6d3b; } - + border-color: #8a6d3b; +} .has-warning .form-control-feedback { - color: #8a6d3b; } + color: #8a6d3b; +} .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; } - +.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { + color: #a94442; +} .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; } - + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; +} .has-error .input-group-addon { color: #a94442; background-color: #f2dede; - border-color: #a94442; } - + border-color: #a94442; +} .has-error .form-control-feedback { - color: #a94442; } + color: #a94442; +} .has-feedback label ~ .form-control-feedback { - top: 25px; } - + top: 25px; +} .has-feedback label.sr-only ~ .form-control-feedback { - top: 0; } + top: 0; +} .help-block { display: block; margin-top: 5px; margin-bottom: 10px; - color: #737373; } + color: #737373; +} @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; - vertical-align: middle; } + vertical-align: middle; + } .form-inline .form-control { display: inline-block; width: auto; - vertical-align: middle; } + vertical-align: middle; + } .form-inline .form-control-static { - display: inline-block; } + display: inline-block; + } .form-inline .input-group { display: inline-table; - vertical-align: middle; } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; } + vertical-align: middle; + } + .form-inline .input-group .input-group-addon, +.form-inline .input-group .input-group-btn, +.form-inline .input-group .form-control { + width: auto; + } .form-inline .input-group > .form-control { - width: 100%; } + width: 100%; + } .form-inline .control-label { margin-bottom: 0; - vertical-align: middle; } + vertical-align: middle; + } .form-inline .radio, - .form-inline .checkbox { +.form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; - vertical-align: middle; } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; } - .form-inline .radio input[type=\\"radio\\"], - .form-inline .checkbox input[type=\\"checkbox\\"] { + vertical-align: middle; + } + .form-inline .radio label, +.form-inline .checkbox label { + padding-left: 0; + } + .form-inline .radio input[type=radio], +.form-inline .checkbox input[type=checkbox] { position: relative; - margin-left: 0; } + margin-left: 0; + } .form-inline .has-feedback .form-control-feedback { - top: 0; } } + top: 0; + } +} .form-horizontal .radio, .form-horizontal .checkbox, @@ -236601,39 +173254,45 @@ select[multiple].input-lg, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top: 0; - margin-bottom: 0; } - + margin-bottom: 0; +} .form-horizontal .radio, .form-horizontal .checkbox { - min-height: 27px; } - + min-height: 27px; +} .form-horizontal .form-group { margin-right: -15px; - margin-left: -15px; } - .form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: \\" \\"; } - .form-horizontal .form-group:after { - clear: both; } - + margin-left: -15px; +} +.form-horizontal .form-group:before, .form-horizontal .form-group:after { + display: table; + content: \\" \\"; +} +.form-horizontal .form-group:after { + clear: both; +} @media (min-width: 768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; - text-align: right; } } - + text-align: right; + } +} .form-horizontal .has-feedback .form-control-feedback { - right: 15px; } - + right: 15px; +} @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 11px; - font-size: 18px; } } - + font-size: 18px; + } +} @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; - font-size: 12px; } } + font-size: 12px; + } +} .btn { display: inline-block; @@ -236648,314 +173307,332 @@ select[multiple].input-lg, border: 1px solid transparent; padding: 6px 12px; font-size: 14px; - line-height: 1.42857; + line-height: 1.428571429; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; - user-select: none; } - .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - .btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; } - .btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn.disabled, .btn[disabled], - fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - opacity: 0.65; - -webkit-box-shadow: none; - box-shadow: none; } + user-select: none; +} +.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, .btn:focus, .btn.focus { + color: #333; + text-decoration: none; +} +.btn:active, .btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn.disabled, .btn[disabled], fieldset[disabled] .btn { + cursor: not-allowed; + filter: alpha(opacity=65); + opacity: 0.65; + -webkit-box-shadow: none; + box-shadow: none; +} -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; } +a.btn.disabled, fieldset[disabled] a.btn { + pointer-events: none; +} .btn-default { color: #333; background-color: #fff; - border-color: #ccc; } - .btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; } - .btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; } - .btn-default:active, .btn-default.active, - .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - background-image: none; - border-color: #adadad; } - .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, - .open > .btn-default.dropdown-toggle:hover, - .open > .btn-default.dropdown-toggle:focus, - .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; } - .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, - fieldset[disabled] .btn-default:hover, - fieldset[disabled] .btn-default:focus, - fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; } - .btn-default .badge { - color: #fff; - background-color: #333; } + border-color: #ccc; +} +.btn-default:focus, .btn-default.focus { + color: #333; + background-color: #e6e6e6; + border-color: #8c8c8c; +} +.btn-default:hover { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { + color: #333; + background-color: #e6e6e6; + background-image: none; + border-color: #adadad; +} +.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { + color: #333; + background-color: #d4d4d4; + border-color: #8c8c8c; +} +.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { + background-color: #fff; + border-color: #ccc; +} +.btn-default .badge { + color: #fff; + background-color: #333; +} .btn-primary { color: #fff; background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; } - .btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; } - .btn-primary:active, .btn-primary.active, - .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - background-image: none; - border-color: #204d74; } - .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, - .open > .btn-primary.dropdown-toggle:hover, - .open > .btn-primary.dropdown-toggle:focus, - .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; } - .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, - fieldset[disabled] .btn-primary:hover, - fieldset[disabled] .btn-primary:focus, - fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary .badge { - color: #337ab7; - background-color: #fff; } + border-color: #2e6da4; +} +.btn-primary:focus, .btn-primary.focus { + color: #fff; + background-color: #286090; + border-color: #122b40; +} +.btn-primary:hover { + color: #fff; + background-color: #286090; + border-color: #204d74; +} +.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #286090; + background-image: none; + border-color: #204d74; +} +.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { + color: #fff; + background-color: #204d74; + border-color: #122b40; +} +.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary .badge { + color: #337ab7; + background-color: #fff; +} .btn-success { color: #fff; background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; } - .btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; } - .btn-success:active, .btn-success.active, - .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - background-image: none; - border-color: #398439; } - .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, - .open > .btn-success.dropdown-toggle:hover, - .open > .btn-success.dropdown-toggle:focus, - .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; } - .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, - fieldset[disabled] .btn-success:hover, - fieldset[disabled] .btn-success:focus, - fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success .badge { - color: #5cb85c; - background-color: #fff; } + border-color: #4cae4c; +} +.btn-success:focus, .btn-success.focus { + color: #fff; + background-color: #449d44; + border-color: #255625; +} +.btn-success:hover { + color: #fff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { + color: #fff; + background-color: #449d44; + background-image: none; + border-color: #398439; +} +.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { + color: #fff; + background-color: #398439; + border-color: #255625; +} +.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #fff; +} .btn-info { color: #fff; background-color: #5bc0de; - border-color: #46b8da; } - .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; } - .btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; } - .btn-info:active, .btn-info.active, - .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - background-image: none; - border-color: #269abc; } - .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, - .open > .btn-info.dropdown-toggle:hover, - .open > .btn-info.dropdown-toggle:focus, - .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; } - .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, - fieldset[disabled] .btn-info:hover, - fieldset[disabled] .btn-info:focus, - fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; } - .btn-info .badge { - color: #5bc0de; - background-color: #fff; } + border-color: #46b8da; +} +.btn-info:focus, .btn-info.focus { + color: #fff; + background-color: #31b0d5; + border-color: #1b6d85; +} +.btn-info:hover { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { + color: #fff; + background-color: #31b0d5; + background-image: none; + border-color: #269abc; +} +.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { + color: #fff; + background-color: #269abc; + border-color: #1b6d85; +} +.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #fff; +} .btn-warning { color: #fff; background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; } - .btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; } - .btn-warning:active, .btn-warning.active, - .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - background-image: none; - border-color: #d58512; } - .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, - .open > .btn-warning.dropdown-toggle:hover, - .open > .btn-warning.dropdown-toggle:focus, - .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; } - .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, - fieldset[disabled] .btn-warning:hover, - fieldset[disabled] .btn-warning:focus, - fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning .badge { - color: #f0ad4e; - background-color: #fff; } + border-color: #eea236; +} +.btn-warning:focus, .btn-warning.focus { + color: #fff; + background-color: #ec971f; + border-color: #985f0d; +} +.btn-warning:hover { + color: #fff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { + color: #fff; + background-color: #ec971f; + background-image: none; + border-color: #d58512; +} +.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { + color: #fff; + background-color: #d58512; + border-color: #985f0d; +} +.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; +} .btn-danger { color: #fff; background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; } - .btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; } - .btn-danger:active, .btn-danger.active, - .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - background-image: none; - border-color: #ac2925; } - .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, - .open > .btn-danger.dropdown-toggle:hover, - .open > .btn-danger.dropdown-toggle:focus, - .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; } - .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, - fieldset[disabled] .btn-danger:hover, - fieldset[disabled] .btn-danger:focus, - fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger .badge { - color: #d9534f; - background-color: #fff; } + border-color: #d43f3a; +} +.btn-danger:focus, .btn-danger.focus { + color: #fff; + background-color: #c9302c; + border-color: #761c19; +} +.btn-danger:hover { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #c9302c; + background-image: none; + border-color: #ac2925; +} +.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { + color: #fff; + background-color: #ac2925; + border-color: #761c19; +} +.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger .badge { + color: #d9534f; + background-color: #fff; +} .btn-link { font-weight: 400; color: #337ab7; - border-radius: 0; } - .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], - fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; } - .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; } - .btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; } - .btn-link[disabled]:hover, .btn-link[disabled]:focus, - fieldset[disabled] .btn-link:hover, - fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; } + border-radius: 0; +} +.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { + border-color: transparent; +} +.btn-link:hover, .btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { + color: #777777; + text-decoration: none; +} .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } + line-height: 1.3333333; + border-radius: 6px; +} .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; - border-radius: 3px; } + border-radius: 3px; +} .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; - border-radius: 3px; } + border-radius: 3px; +} .btn-block { display: block; - width: 100%; } + width: 100%; +} .btn-block + .btn-block { - margin-top: 5px; } + margin-top: 5px; +} -input[type=\\"submit\\"].btn-block, -input[type=\\"reset\\"].btn-block, -input[type=\\"button\\"].btn-block { - width: 100%; } +input[type=submit].btn-block, +input[type=reset].btn-block, +input[type=button].btn-block { + width: 100%; +} .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; } - .fade.in { - opacity: 1; } + transition: opacity 0.15s linear; +} +.fade.in { + opacity: 1; +} .collapse { - display: none; } - .collapse.in { - display: block; } + display: none; +} +.collapse.in { + display: block; +} tr.collapse.in { - display: table-row; } + display: table-row; +} tbody.collapse.in { - display: table-row-group; } + display: table-row-group; +} .collapsing { position: relative; @@ -236966,7 +173643,8 @@ tbody.collapse.in { -webkit-transition-duration: 0.35s; transition-duration: 0.35s; -webkit-transition-timing-function: ease; - transition-timing-function: ease; } + transition-timing-function: ease; +} .caret { display: inline-block; @@ -236975,16 +173653,19 @@ tbody.collapse.in { margin-left: 2px; vertical-align: middle; border-top: 4px dashed; - border-top: 4px solid \\\\9; + border-top: 4px solid \\\\9 ; border-right: 4px solid transparent; - border-left: 4px solid transparent; } + border-left: 4px solid transparent; +} .dropup, .dropdown { - position: relative; } + position: relative; +} .dropdown-toggle:focus { - outline: 0; } + outline: 0; +} .dropdown-menu { position: absolute; @@ -237005,65 +173686,76 @@ tbody.collapse.in { border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); } - .dropdown-menu.pull-right { - right: 0; - left: auto; } - .dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.42857; - color: #333333; - white-space: nowrap; } - .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; } + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: 400; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; +} .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #fff; text-decoration: none; background-color: #337ab7; - outline: 0; } + outline: 0; +} .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; } - + color: #777777; +} .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} .open > .dropdown-menu { - display: block; } - + display: block; +} .open > a { - outline: 0; } + outline: 0; +} .dropdown-menu-right { right: 0; - left: auto; } + left: auto; +} .dropdown-menu-left { right: auto; - left: 0; } + left: 0; +} .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; - line-height: 1.42857; + line-height: 1.428571429; color: #777777; - white-space: nowrap; } + white-space: nowrap; +} .dropdown-backdrop { position: fixed; @@ -237071,128 +173763,158 @@ tbody.collapse.in { right: 0; bottom: 0; left: 0; - z-index: 990; } + z-index: 990; +} .pull-right > .dropdown-menu { right: 0; - left: auto; } + left: auto; +} .dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: \\"\\"; border-top: 0; border-bottom: 4px dashed; - border-bottom: 4px solid \\\\9; } - + border-bottom: 4px solid \\\\9 ; +} .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; - margin-bottom: 2px; } + margin-bottom: 2px; +} @media (min-width: 768px) { .navbar-right .dropdown-menu { right: 0; - left: auto; } + left: auto; + } .navbar-right .dropdown-menu-left { left: 0; - right: auto; } } - + right: auto; + } +} .btn-group, .btn-group-vertical { position: relative; display: inline-block; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - float: left; } - .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, - .btn-group-vertical > .btn:hover, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 2; } + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:hover, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 2; +} .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { - margin-left: -1px; } + margin-left: -1px; +} .btn-toolbar { - margin-left: -5px; } - .btn-toolbar:before, .btn-toolbar:after { - display: table; - content: \\" \\"; } - .btn-toolbar:after { - clear: both; } - .btn-toolbar .btn, - .btn-toolbar .btn-group, - .btn-toolbar .input-group { - float: left; } - .btn-toolbar > .btn, - .btn-toolbar > .btn-group, - .btn-toolbar > .input-group { - margin-left: 5px; } + margin-left: -5px; +} +.btn-toolbar:before, .btn-toolbar:after { + display: table; + content: \\" \\"; +} +.btn-toolbar:after { + clear: both; +} +.btn-toolbar .btn, +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; +} .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; } + border-radius: 0; +} .btn-group > .btn:first-child { - margin-left: 0; } - .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-top-left-radius: 0; - border-bottom-left-radius: 0; } + border-bottom-left-radius: 0; +} .btn-group > .btn-group { - float: left; } + float: left; +} .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } + border-radius: 0; +} .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-top-right-radius: 0; - border-bottom-right-radius: 0; } + border-bottom-right-radius: 0; +} .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; - border-bottom-left-radius: 0; } + border-bottom-left-radius: 0; +} .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { - outline: 0; } + outline: 0; +} .btn-group > .btn + .dropdown-toggle { padding-right: 8px; - padding-left: 8px; } + padding-left: 8px; +} .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { padding-right: 12px; - padding-left: 12px; } + padding-left: 12px; +} .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; } + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} .btn .caret { - margin-left: 0; } + margin-left: 0; +} .btn-lg .caret, .btn-group-lg > .btn .caret { border-width: 5px 5px 0; - border-bottom-width: 0; } + border-bottom-width: 0; +} .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; } + border-width: 0 5px 5px; +} .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, @@ -237200,106 +173922,123 @@ tbody.collapse.in { display: block; float: none; width: 100%; - max-width: 100%; } - + max-width: 100%; +} .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { display: table; - content: \\" \\"; } - + content: \\" \\"; +} .btn-group-vertical > .btn-group:after { - clear: both; } - + clear: both; +} .btn-group-vertical > .btn-group > .btn { - float: none; } - + float: none; +} .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; - margin-left: 0; } + margin-left: 0; +} .btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; } - + border-radius: 0; +} .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - + border-bottom-left-radius: 0; +} .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } + border-bottom-left-radius: 4px; +} .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } + border-radius: 0; +} .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } + border-bottom-left-radius: 0; +} .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; - border-top-right-radius: 0; } + border-top-right-radius: 0; +} .btn-group-justified { display: table; width: 100%; table-layout: fixed; - border-collapse: separate; } - .btn-group-justified > .btn, - .btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; } - .btn-group-justified > .btn-group .btn { - width: 100%; } - .btn-group-justified > .btn-group .dropdown-menu { - left: auto; } - -[data-toggle=\\"buttons\\"] > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn input[type=\\"checkbox\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"checkbox\\"] { + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} + +[data-toggle=buttons] > .btn input[type=radio], +[data-toggle=buttons] > .btn input[type=checkbox], +[data-toggle=buttons] > .btn-group > .btn input[type=radio], +[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] { position: absolute; clip: rect(0, 0, 0, 0); - pointer-events: none; } + pointer-events: none; +} .input-group { position: relative; display: table; - border-collapse: separate; } - .input-group[class*=\\"col-\\"] { - float: none; - padding-right: 0; - padding-left: 0; } - .input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; } - .input-group .form-control:focus { - z-index: 3; } + border-collapse: separate; +} +.input-group[class*=col-] { + float: none; + padding-right: 0; + padding-left: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group .form-control:focus { + z-index: 3; +} .input-group-addon, .input-group-btn, .input-group .form-control { - display: table-cell; } - .input-group-addon:not(:first-child):not(:last-child), - .input-group-btn:not(:first-child):not(:last-child), - .input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; } + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; - vertical-align: middle; } + vertical-align: middle; +} .input-group-addon { padding: 6px 12px; @@ -237310,22 +174049,26 @@ tbody.collapse.in { text-align: center; background-color: #eeeeee; border: 1px solid #ccc; - border-radius: 4px; } - .input-group-addon.input-sm, - .input-group-sm > .input-group-addon, - .input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; } - .input-group-addon.input-lg, - .input-group-lg > .input-group-addon, - .input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; } - .input-group-addon input[type=\\"radio\\"], - .input-group-addon input[type=\\"checkbox\\"] { - margin-top: 0; } + border-radius: 4px; +} +.input-group-addon.input-sm, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .input-group-addon.btn { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .input-group-addon.btn { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type=radio], +.input-group-addon input[type=checkbox] { + margin-top: 0; +} .input-group .form-control:first-child, .input-group-addon:first-child, @@ -237335,10 +174078,12 @@ tbody.collapse.in { .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; - border-bottom-right-radius: 0; } + border-bottom-right-radius: 0; +} .input-group-addon:first-child { - border-right: 0; } + border-right: 0; +} .input-group .form-control:last-child, .input-group-addon:last-child, @@ -237348,175 +174093,222 @@ tbody.collapse.in { .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; - border-bottom-left-radius: 0; } + border-bottom-left-radius: 0; +} .input-group-addon:last-child { - border-left: 0; } + border-left: 0; +} .input-group-btn { position: relative; font-size: 0; - white-space: nowrap; } - .input-group-btn > .btn { - position: relative; } - .input-group-btn > .btn + .btn { - margin-left: -1px; } - .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; } - .input-group-btn:first-child > .btn, - .input-group-btn:first-child > .btn-group { - margin-right: -1px; } - .input-group-btn:last-child > .btn, - .input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; } + white-space: nowrap; +} +.input-group-btn > .btn { + position: relative; +} +.input-group-btn > .btn + .btn { + margin-left: -1px; +} +.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { + z-index: 2; +} +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + z-index: 2; + margin-left: -1px; +} .nav { padding-left: 0; margin-bottom: 0; - list-style: none; } - .nav:before, .nav:after { - display: table; - content: \\" \\"; } - .nav:after { - clear: both; } - .nav > li { - position: relative; - display: block; } - .nav > li > a { - position: relative; - display: block; - padding: 10px 15px; } - .nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .nav > li.disabled > a { - color: #777777; } - .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; } - .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; } - .nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .nav > li > a > img { - max-width: none; } + list-style: none; +} +.nav:before, .nav:after { + display: table; + content: \\" \\"; +} +.nav:after { + clear: both; +} +.nav > li { + position: relative; + display: block; +} +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.nav > li > a:hover, .nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.nav > li.disabled > a { + color: #777777; +} +.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { + color: #777777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { + background-color: #eeeeee; + border-color: #337ab7; +} +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.nav > li > a > img { + max-width: none; +} .nav-tabs { - border-bottom: 1px solid #ddd; } - .nav-tabs > li { - float: left; - margin-bottom: -1px; } - .nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; } - .nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; } - .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; } - + border-bottom: 1px solid #ddd; +} +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #ddd; +} +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { + color: #555555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} .nav-pills > li { - float: left; } - .nav-pills > li > a { - border-radius: 4px; } - .nav-pills > li + li { - margin-left: 2px; } - .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; } + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { + color: #fff; + background-color: #337ab7; +} .nav-stacked > li { - float: none; } - .nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; } + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} .nav-justified, .nav-tabs.nav-justified { - width: 100%; } + width: 100%; +} +.nav-justified > li, .nav-tabs.nav-justified > li { + float: none; +} +.nav-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { .nav-justified > li, .nav-tabs.nav-justified > li { - float: none; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; } - .nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; } - @media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; } } + display: table-cell; + width: 1%; + } + .nav-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} .nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; } + border-bottom: 0; +} +.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; } + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; } - @media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; } } +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border-bottom-color: #fff; + } +} .tab-content > .tab-pane { - display: none; } - + display: none; +} .tab-content > .active { - display: block; } + display: block; +} .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; - border-top-right-radius: 0; } + border-top-right-radius: 0; +} .navbar { position: relative; min-height: 50px; margin-bottom: 20px; - border: 1px solid transparent; } - .navbar:before, .navbar:after { - display: table; - content: \\" \\"; } - .navbar:after { - clear: both; } - @media (min-width: 768px) { - .navbar { - border-radius: 4px; } } + border: 1px solid transparent; +} +.navbar:before, .navbar:after { + display: table; + content: \\" \\"; +} +.navbar:after { + clear: both; +} +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} .navbar-header:before, .navbar-header:after { display: table; - content: \\" \\"; } - + content: \\" \\"; +} .navbar-header:after { - clear: both; } - + clear: both; +} @media (min-width: 768px) { .navbar-header { - float: left; } } + float: left; + } +} .navbar-collapse { padding-right: 15px; @@ -237524,94 +174316,119 @@ tbody.collapse.in { overflow-x: visible; border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; } - .navbar-collapse:before, .navbar-collapse:after { - display: table; - content: \\" \\"; } - .navbar-collapse:after { - clear: both; } + -webkit-overflow-scrolling: touch; +} +.navbar-collapse:before, .navbar-collapse:after { + display: table; + content: \\" \\"; +} +.navbar-collapse:after { + clear: both; +} +.navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } .navbar-collapse.in { - overflow-y: auto; } - @media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; } - .navbar-collapse.in { - overflow-y: visible; } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; } } + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } +} .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; - z-index: 1030; } + z-index: 1030; +} +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 340px; } - @media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; } } - @media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; } } +.navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } +} +@media (min-width: 768px) { + .navbar-fixed-top, +.navbar-fixed-bottom { + border-radius: 0; + } +} .navbar-fixed-top { top: 0; - border-width: 0 0 1px; } + border-width: 0 0 1px; +} .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; - border-width: 1px 0 0; } + border-width: 1px 0 0; +} .container > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-header, .container-fluid > .navbar-collapse { margin-right: -15px; - margin-left: -15px; } - @media (min-width: 768px) { - .container > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-header, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; } } + margin-left: -15px; +} +@media (min-width: 768px) { + .container > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-header, +.container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} .navbar-static-top { z-index: 1000; - border-width: 0 0 1px; } - @media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; } } + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} .navbar-brand { float: left; height: 50px; padding: 15px 15px; font-size: 18px; - line-height: 20px; } - .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; } - .navbar-brand > img { - display: block; } - @media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; } } + line-height: 20px; +} +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} +.navbar-brand > img { + display: block; +} +@media (min-width: 768px) { + .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } +} .navbar-toggle { position: relative; @@ -237623,51 +174440,68 @@ tbody.collapse.in { background-color: transparent; background-image: none; border: 1px solid transparent; - border-radius: 4px; } - .navbar-toggle:focus { - outline: 0; } - .navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; } - .navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; } - @media (min-width: 768px) { - .navbar-toggle { - display: none; } } + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} .navbar-nav { - margin: 7.5px -15px; } + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, +.navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } .navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; } - @media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; } } - @media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; } - .navbar-nav > li { - float: left; } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; } } + padding-top: 15px; + padding-bottom: 15px; + } +} .navbar-form { padding: 10px 15px; @@ -237678,362 +174512,459 @@ tbody.collapse.in { -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); margin-top: 8px; - margin-bottom: 8px; } - @media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .navbar-form .form-control-static { - display: inline-block; } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; } - .navbar-form .input-group > .form-control { - width: 100%; } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; } - .navbar-form .radio input[type=\\"radio\\"], - .navbar-form .checkbox input[type=\\"checkbox\\"] { - position: relative; - margin-left: 0; } - .navbar-form .has-feedback .form-control-feedback { - top: 0; } } - @media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; } - .navbar-form .form-group:last-child { - margin-bottom: 0; } } - @media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; } } + margin-bottom: 8px; +} +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .form-control-static { + display: inline-block; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, +.navbar-form .input-group .input-group-btn, +.navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, +.navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, +.navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type=radio], +.navbar-form .checkbox input[type=checkbox] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } +} +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } + .navbar-form .form-group:last-child { + margin-bottom: 0; + } +} +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-left-radius: 0; - border-top-right-radius: 0; } + border-top-right-radius: 0; +} .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } + border-bottom-left-radius: 0; +} .navbar-btn { margin-top: 8px; - margin-bottom: 8px; } - .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 10px; - margin-bottom: 10px; } - .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 14px; - margin-bottom: 14px; } + margin-bottom: 8px; +} +.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { + margin-top: 14px; + margin-bottom: 14px; +} .navbar-text { margin-top: 15px; - margin-bottom: 15px; } - @media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; } } + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; + } +} @media (min-width: 768px) { .navbar-left { - float: left !important; } + float: left !important; + } + .navbar-right { float: right !important; - margin-right: -15px; } - .navbar-right ~ .navbar-right { - margin-right: 0; } } - + margin-right: -15px; + } + .navbar-right ~ .navbar-right { + margin-right: 0; + } +} .navbar-default { background-color: #f8f8f8; - border-color: #e7e7e7; } - .navbar-default .navbar-brand { - color: #777; } - .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; } - .navbar-default .navbar-text { - color: #777; } - .navbar-default .navbar-nav > li > a { - color: #777; } - .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777; +} +.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777; +} +.navbar-default .navbar-nav > li > a { + color: #777; +} +.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { + color: #333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; +} +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; +} +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #ccc; - background-color: transparent; } - .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; } - @media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; } } - .navbar-default .navbar-toggle { - border-color: #ddd; } - .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; } - .navbar-default .navbar-toggle .icon-bar { - background-color: #888; } - .navbar-default .navbar-collapse, - .navbar-default .navbar-form { - border-color: #e7e7e7; } - .navbar-default .navbar-link { - color: #777; } - .navbar-default .navbar-link:hover { - color: #333; } - .navbar-default .btn-link { - color: #777; } - .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; } - .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, - fieldset[disabled] .navbar-default .btn-link:hover, - fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; } + background-color: transparent; + } +} +.navbar-default .navbar-toggle { + border-color: #ddd; +} +.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background-color: #ddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-link { + color: #777; +} +.navbar-default .navbar-link:hover { + color: #333; +} +.navbar-default .btn-link { + color: #777; +} +.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { + color: #333; +} +.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc; +} .navbar-inverse { background-color: #222; - border-color: #090909; } - .navbar-inverse .navbar-brand { - color: #9d9d9d; } - .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-text { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { + border-color: #090909; +} +.navbar-inverse .navbar-brand { + color: #9d9d9d; +} +.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { + color: #fff; + background-color: #090909; +} +.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { + color: #fff; + background-color: #090909; +} +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #090909; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #090909; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; } - .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #fff; - background-color: #090909; } - @media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; } } - .navbar-inverse .navbar-toggle { - border-color: #333; } - .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; } - .navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; } - .navbar-inverse .navbar-collapse, - .navbar-inverse .navbar-form { - border-color: #101010; } - .navbar-inverse .navbar-link { - color: #9d9d9d; } - .navbar-inverse .navbar-link:hover { - color: #fff; } - .navbar-inverse .btn-link { - color: #9d9d9d; } - .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; } - .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, - fieldset[disabled] .navbar-inverse .btn-link:hover, - fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; } + background-color: #090909; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444; + background-color: transparent; + } +} +.navbar-inverse .navbar-toggle { + border-color: #333; +} +.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { + background-color: #333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-link { + color: #9d9d9d; +} +.navbar-inverse .navbar-link:hover { + color: #fff; +} +.navbar-inverse .btn-link { + color: #9d9d9d; +} +.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { + color: #fff; +} +.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444; +} .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: #f5f5f5; - border-radius: 4px; } - .breadcrumb > li { - display: inline-block; } - .breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: \\"/ \\"; } - .breadcrumb > .active { - color: #777777; } + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: \\"/ \\"; +} +.breadcrumb > .active { + color: #777777; +} .pagination { display: inline-block; padding-left: 0; margin: 20px 0; - border-radius: 4px; } - .pagination > li { - display: inline; } - .pagination > li > a, - .pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; } - .pagination > li > a:hover, .pagination > li > a:focus, - .pagination > li > span:hover, - .pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; } - .pagination > li:first-child > a, - .pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .pagination > li:last-child > a, - .pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; } - .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, - .pagination > .active > span, - .pagination > .active > span:hover, - .pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; } - .pagination > .disabled > span, - .pagination > .disabled > span:hover, - .pagination > .disabled > span:focus, - .pagination > .disabled > a, - .pagination > .disabled > a:hover, - .pagination > .disabled > a:focus { - color: #777777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; } + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.428571429; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd; +} +.pagination > li > a:hover, .pagination > li > a:focus, +.pagination > li > span:hover, +.pagination > li > span:focus { + z-index: 2; + color: #23527c; + background-color: #eeeeee; + border-color: #ddd; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, +.pagination > .active > span, +.pagination > .active > span:hover, +.pagination > .active > span:focus { + z-index: 3; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777777; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd; +} .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 18px; - line-height: 1.33333; } - + line-height: 1.3333333; +} .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-top-left-radius: 6px; - border-bottom-left-radius: 6px; } - + border-bottom-left-radius: 6px; +} .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-top-right-radius: 6px; - border-bottom-right-radius: 6px; } + border-bottom-right-radius: 6px; +} .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; - line-height: 1.5; } - + line-height: 1.5; +} .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - + border-bottom-left-radius: 3px; +} .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } + border-bottom-right-radius: 3px; +} .pager { padding-left: 0; margin: 20px 0; text-align: center; - list-style: none; } - .pager:before, .pager:after { - display: table; - content: \\" \\"; } - .pager:after { - clear: both; } - .pager li { - display: inline; } - .pager li > a, - .pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; } - .pager li > a:hover, - .pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .pager .next > a, - .pager .next > span { - float: right; } - .pager .previous > a, - .pager .previous > span { - float: left; } - .pager .disabled > a, - .pager .disabled > a:hover, - .pager .disabled > a:focus, - .pager .disabled > span { - color: #777777; - cursor: not-allowed; - background-color: #fff; } + list-style: none; +} +.pager:before, .pager:after { + display: table; + content: \\" \\"; +} +.pager:after { + clear: both; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777777; + cursor: not-allowed; + background-color: #fff; +} .label { display: inline; - padding: .2em .6em .3em; + padding: 0.2em 0.6em 0.3em; font-size: 75%; font-weight: 700; line-height: 1; @@ -238041,47 +174972,63 @@ tbody.collapse.in { text-align: center; white-space: nowrap; vertical-align: baseline; - border-radius: .25em; } - .label:empty { - display: none; } - .btn .label { - position: relative; - top: -1px; } + border-radius: 0.25em; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} a.label:hover, a.label:focus { color: #fff; text-decoration: none; - cursor: pointer; } + cursor: pointer; +} .label-default { - background-color: #777777; } - .label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; } + background-color: #777777; +} +.label-default[href]:hover, .label-default[href]:focus { + background-color: #5e5e5e; +} .label-primary { - background-color: #337ab7; } - .label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; } + background-color: #337ab7; +} +.label-primary[href]:hover, .label-primary[href]:focus { + background-color: #286090; +} .label-success { - background-color: #5cb85c; } - .label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; } + background-color: #5cb85c; +} +.label-success[href]:hover, .label-success[href]:focus { + background-color: #449d44; +} .label-info { - background-color: #5bc0de; } - .label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; } + background-color: #5bc0de; +} +.label-info[href]:hover, .label-info[href]:focus { + background-color: #31b0d5; +} .label-warning { - background-color: #f0ad4e; } - .label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; } + background-color: #f0ad4e; +} +.label-warning[href]:hover, .label-warning[href]:focus { + background-color: #ec971f; +} .label-danger { - background-color: #d9534f; } - .label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; } + background-color: #d9534f; +} +.label-danger[href]:hover, .label-danger[href]:focus { + background-color: #c9302c; +} .badge { display: inline-block; @@ -238095,167 +175042,209 @@ a.label:hover, a.label:focus { white-space: nowrap; vertical-align: middle; background-color: #777777; - border-radius: 10px; } - .badge:empty { - display: none; } - .btn .badge { - position: relative; - top: -1px; } - .btn-xs .badge, .btn-group-xs > .btn .badge, - .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; } - .list-group-item.active > .badge, - .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; } - .list-group-item > .badge { - float: right; } - .list-group-item > .badge + .badge { - margin-right: 5px; } - .nav-pills > li > a > .badge { - margin-left: 3px; } + border-radius: 10px; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.btn-xs .badge, .btn-group-xs > .btn .badge { + top: 0; + padding: 1px 5px; +} +.list-group-item.active > .badge, .nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #fff; +} +.list-group-item > .badge { + float: right; +} +.list-group-item > .badge + .badge { + margin-right: 5px; +} +.nav-pills > li > a > .badge { + margin-left: 3px; +} a.badge:hover, a.badge:focus { color: #fff; text-decoration: none; - cursor: pointer; } + cursor: pointer; +} .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; color: inherit; - background-color: #eeeeee; } + background-color: #eeeeee; +} +.jumbotron h1, +.jumbotron .h1 { + color: inherit; +} +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; +} +.jumbotron > hr { + border-top-color: #d5d5d5; +} +.container .jumbotron, .container-fluid .jumbotron { + padding-right: 15px; + padding-left: 15px; + border-radius: 6px; +} +.jumbotron .container { + max-width: 100%; +} +@media screen and (min-width: 768px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; + } + .container .jumbotron, .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px; + } .jumbotron h1, - .jumbotron .h1 { - color: inherit; } - .jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; } - .jumbotron > hr { - border-top-color: #d5d5d5; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; } - .jumbotron .container { - max-width: 100%; } - @media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; } } +.jumbotron .h1 { + font-size: 63px; + } +} .thumbnail { display: block; padding: 4px; margin-bottom: 20px; - line-height: 1.42857; + line-height: 1.428571429; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border 0.2s ease-in-out; -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; } - .thumbnail > img, - .thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-right: auto; - margin-left: auto; } - .thumbnail .caption { - padding: 9px; - color: #333333; } + transition: border 0.2s ease-in-out; +} +.thumbnail > img, +.thumbnail a > img { + display: block; + max-width: 100%; + height: auto; + margin-right: auto; + margin-left: auto; +} +.thumbnail .caption { + padding: 9px; + color: #333333; +} a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { - border-color: #337ab7; } + border-color: #337ab7; +} .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; - border-radius: 4px; } - .alert h4 { - margin-top: 0; - color: inherit; } - .alert .alert-link { - font-weight: bold; } - .alert > p, - .alert > ul { - margin-bottom: 0; } - .alert > p + p { - margin-top: 5px; } + border-radius: 4px; +} +.alert h4 { + margin-top: 0; + color: inherit; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, +.alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} .alert-dismissable, .alert-dismissible { - padding-right: 35px; } - .alert-dismissable .close, - .alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; } + padding-right: 35px; +} +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} .alert-success { color: #3c763d; background-color: #dff0d8; - border-color: #d6e9c6; } - .alert-success hr { - border-top-color: #c9e2b3; } - .alert-success .alert-link { - color: #2b542c; } + border-color: #d6e9c6; +} +.alert-success hr { + border-top-color: #c9e2b3; +} +.alert-success .alert-link { + color: #2b542c; +} .alert-info { color: #31708f; background-color: #d9edf7; - border-color: #bce8f1; } - .alert-info hr { - border-top-color: #a6e1ec; } - .alert-info .alert-link { - color: #245269; } + border-color: #bce8f1; +} +.alert-info hr { + border-top-color: #a6e1ec; +} +.alert-info .alert-link { + color: #245269; +} .alert-warning { color: #8a6d3b; background-color: #fcf8e3; - border-color: #faebcc; } - .alert-warning hr { - border-top-color: #f7e1b5; } - .alert-warning .alert-link { - color: #66512c; } + border-color: #faebcc; +} +.alert-warning hr { + border-top-color: #f7e1b5; +} +.alert-warning .alert-link { + color: #66512c; +} .alert-danger { color: #a94442; background-color: #f2dede; - border-color: #ebccd1; } - .alert-danger hr { - border-top-color: #e4b9c0; } - .alert-danger .alert-link { - color: #843534; } + border-color: #ebccd1; +} +.alert-danger hr { + border-top-color: #e4b9c0; +} +.alert-danger .alert-link { + color: #843534; +} @-webkit-keyframes progress-bar-stripes { from { - background-position: 40px 0; } + background-position: 40px 0; + } to { - background-position: 0 0; } } - + background-position: 0 0; + } +} @keyframes progress-bar-stripes { from { - background-position: 40px 0; } + background-position: 40px 0; + } to { - background-position: 0 0; } } - + background-position: 0 0; + } +} .progress { height: 20px; margin-bottom: 20px; @@ -238263,7 +175252,8 @@ a.thumbnail.active { background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} .progress-bar { float: left; @@ -238278,98 +175268,123 @@ a.thumbnail.active { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -webkit-transition: width 0.6s ease; -o-transition: width 0.6s ease; - transition: width 0.6s ease; } + transition: width 0.6s ease; +} .progress-striped .progress-bar, .progress-bar-striped { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; } + background-size: 40px 40px; +} .progress.active .progress-bar, .progress-bar.active { -webkit-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; } + animation: progress-bar-stripes 2s linear infinite; +} .progress-bar-success { - background-color: #5cb85c; } - .progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + background-color: #5cb85c; +} +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} .progress-bar-info { - background-color: #5bc0de; } - .progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} .progress-bar-warning { - background-color: #f0ad4e; } - .progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} .progress-bar-danger { - background-color: #d9534f; } - .progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} .media { - margin-top: 15px; } - .media:first-child { - margin-top: 0; } + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} .media, .media-body { overflow: hidden; - zoom: 1; } + zoom: 1; +} .media-body { - width: 10000px; } + width: 10000px; +} .media-object { - display: block; } - .media-object.img-thumbnail { - max-width: none; } + display: block; +} +.media-object.img-thumbnail { + max-width: none; +} .media-right, .media > .pull-right { - padding-left: 10px; } + padding-left: 10px; +} .media-left, .media > .pull-left { - padding-right: 10px; } + padding-right: 10px; +} .media-left, .media-right, .media-body { display: table-cell; - vertical-align: top; } + vertical-align: top; +} .media-middle { - vertical-align: middle; } + vertical-align: middle; +} .media-bottom { - vertical-align: bottom; } + vertical-align: bottom; +} .media-heading { margin-top: 0; - margin-bottom: 5px; } + margin-bottom: 5px; +} .media-list { padding-left: 0; - list-style: none; } + list-style: none; +} .list-group { padding-left: 0; - margin-bottom: 20px; } + margin-bottom: 20px; +} .list-group-item { position: relative; @@ -238377,154 +175392,189 @@ a.thumbnail.active { padding: 10px 15px; margin-bottom: -1px; background-color: #fff; - border: 1px solid #ddd; } - .list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - .list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } - .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - color: #777777; - cursor: not-allowed; - background-color: #eeeeee; } - .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; } - .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; } - .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .list-group-item.active .list-group-item-heading, - .list-group-item.active .list-group-item-heading > small, - .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, - .list-group-item.active:hover .list-group-item-heading > small, - .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, - .list-group-item.active:focus .list-group-item-heading > small, - .list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; } - .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; } + border: 1px solid #ddd; +} +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { + color: #777777; + cursor: not-allowed; + background-color: #eeeeee; +} +.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { + color: inherit; +} +.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { + color: #777777; +} +.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.list-group-item.active .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; +} +.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { + color: #c7ddef; +} a.list-group-item, button.list-group-item { - color: #555; } - a.list-group-item .list-group-item-heading, - button.list-group-item .list-group-item-heading { - color: #333; } - a.list-group-item:hover, a.list-group-item:focus, - button.list-group-item:hover, - button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; } + color: #555; +} +a.list-group-item .list-group-item-heading, +button.list-group-item .list-group-item-heading { + color: #333; +} +a.list-group-item:hover, a.list-group-item:focus, +button.list-group-item:hover, +button.list-group-item:focus { + color: #555; + text-decoration: none; + background-color: #f5f5f5; +} button.list-group-item { width: 100%; - text-align: left; } + text-align: left; +} .list-group-item-success { color: #3c763d; - background-color: #dff0d8; } + background-color: #dff0d8; +} a.list-group-item-success, button.list-group-item-success { - color: #3c763d; } - a.list-group-item-success .list-group-item-heading, - button.list-group-item-success .list-group-item-heading { - color: inherit; } - a.list-group-item-success:hover, a.list-group-item-success:focus, - button.list-group-item-success:hover, - button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; } - a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, - button.list-group-item-success.active, - button.list-group-item-success.active:hover, - button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; } + color: #3c763d; +} +a.list-group-item-success .list-group-item-heading, +button.list-group-item-success .list-group-item-heading { + color: inherit; +} +a.list-group-item-success:hover, a.list-group-item-success:focus, +button.list-group-item-success:hover, +button.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; +} +a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, +button.list-group-item-success.active, +button.list-group-item-success.active:hover, +button.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; +} .list-group-item-info { color: #31708f; - background-color: #d9edf7; } + background-color: #d9edf7; +} a.list-group-item-info, button.list-group-item-info { - color: #31708f; } - a.list-group-item-info .list-group-item-heading, - button.list-group-item-info .list-group-item-heading { - color: inherit; } - a.list-group-item-info:hover, a.list-group-item-info:focus, - button.list-group-item-info:hover, - button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; } - a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, - button.list-group-item-info.active, - button.list-group-item-info.active:hover, - button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; } + color: #31708f; +} +a.list-group-item-info .list-group-item-heading, +button.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, a.list-group-item-info:focus, +button.list-group-item-info:hover, +button.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, +button.list-group-item-info.active, +button.list-group-item-info.active:hover, +button.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} .list-group-item-warning { color: #8a6d3b; - background-color: #fcf8e3; } + background-color: #fcf8e3; +} a.list-group-item-warning, button.list-group-item-warning { - color: #8a6d3b; } - a.list-group-item-warning .list-group-item-heading, - button.list-group-item-warning .list-group-item-heading { - color: inherit; } - a.list-group-item-warning:hover, a.list-group-item-warning:focus, - button.list-group-item-warning:hover, - button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; } - a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, - button.list-group-item-warning.active, - button.list-group-item-warning.active:hover, - button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; } + color: #8a6d3b; +} +a.list-group-item-warning .list-group-item-heading, +button.list-group-item-warning .list-group-item-heading { + color: inherit; +} +a.list-group-item-warning:hover, a.list-group-item-warning:focus, +button.list-group-item-warning:hover, +button.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; +} +a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, +button.list-group-item-warning.active, +button.list-group-item-warning.active:hover, +button.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; +} .list-group-item-danger { color: #a94442; - background-color: #f2dede; } + background-color: #f2dede; +} a.list-group-item-danger, button.list-group-item-danger { - color: #a94442; } - a.list-group-item-danger .list-group-item-heading, - button.list-group-item-danger .list-group-item-heading { - color: inherit; } - a.list-group-item-danger:hover, a.list-group-item-danger:focus, - button.list-group-item-danger:hover, - button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; } - a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, - button.list-group-item-danger.active, - button.list-group-item-danger.active:hover, - button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; } + color: #a94442; +} +a.list-group-item-danger .list-group-item-heading, +button.list-group-item-danger .list-group-item-heading { + color: inherit; +} +a.list-group-item-danger:hover, a.list-group-item-danger:focus, +button.list-group-item-danger:hover, +button.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; +} +a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, +button.list-group-item-danger.active, +button.list-group-item-danger.active:hover, +button.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; +} .list-group-item-heading { margin-top: 0; - margin-bottom: 5px; } + margin-bottom: 5px; +} .list-group-item-text { margin-bottom: 0; - line-height: 1.3; } + line-height: 1.3; +} .panel { margin-bottom: 20px; @@ -238532,326 +175582,394 @@ button.list-group-item-danger { border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} .panel-body { - padding: 15px; } - .panel-body:before, .panel-body:after { - display: table; - content: \\" \\"; } - .panel-body:after { - clear: both; } + padding: 15px; +} +.panel-body:before, .panel-body:after { + display: table; + content: \\" \\"; +} +.panel-body:after { + clear: both; +} .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel-heading > .dropdown .dropdown-toggle { - color: inherit; } + border-top-right-radius: 3px; +} +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; - color: inherit; } - .panel-title > a, - .panel-title > small, - .panel-title > .small, - .panel-title > small > a, - .panel-title > .small > a { - color: inherit; } + color: inherit; +} +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; +} .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #ddd; border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } + border-bottom-left-radius: 3px; +} .panel > .list-group, .panel > .panel-collapse > .list-group { - margin-bottom: 0; } - .panel > .list-group .list-group-item, - .panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; } - .panel > .list-group:first-child .list-group-item:first-child, - .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .list-group:last-child .list-group-item:last-child, - .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - + margin-bottom: 0; +} +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; +} +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-left-radius: 0; - border-top-right-radius: 0; } + border-top-right-radius: 0; +} .panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; } + border-top-width: 0; +} .list-group + .panel-footer { - border-top-width: 0; } + border-top-width: 0; +} .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { - margin-bottom: 0; } - .panel > .table caption, - .panel > .table-responsive > .table caption, - .panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; } - + margin-bottom: 0; +} +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; +} .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; } - + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; +} .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; } - + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; +} .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; } - + border-top: 1px solid #ddd; +} .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; } - + border-top: 0; +} .panel > .table-bordered, .panel > .table-responsive > .table-bordered { - border: 0; } - .panel > .table-bordered > thead > tr > th:first-child, - .panel > .table-bordered > thead > tr > td:first-child, - .panel > .table-bordered > tbody > tr > th:first-child, - .panel > .table-bordered > tbody > tr > td:first-child, - .panel > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-bordered > tfoot > tr > td:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .panel > .table-bordered > thead > tr > th:last-child, - .panel > .table-bordered > thead > tr > td:last-child, - .panel > .table-bordered > tbody > tr > th:last-child, - .panel > .table-bordered > tbody > tr > td:last-child, - .panel > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-bordered > tfoot > tr > td:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .panel > .table-bordered > thead > tr:first-child > td, - .panel > .table-bordered > thead > tr:first-child > th, - .panel > .table-bordered > tbody > tr:first-child > td, - .panel > .table-bordered > tbody > tr:first-child > th, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; } - .panel > .table-bordered > tbody > tr:last-child > td, - .panel > .table-bordered > tbody > tr:last-child > th, - .panel > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-bordered > tfoot > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; } - + border: 0; +} +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; +} +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; +} .panel > .table-responsive { margin-bottom: 0; - border: 0; } + border: 0; +} .panel-group { - margin-bottom: 20px; } - .panel-group .panel { - margin-bottom: 0; - border-radius: 4px; } - .panel-group .panel + .panel { - margin-top: 5px; } - .panel-group .panel-heading { - border-bottom: 0; } - .panel-group .panel-heading + .panel-collapse > .panel-body, - .panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; } - .panel-group .panel-footer { - border-top: 0; } - .panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; } + margin-bottom: 20px; +} +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; +} +.panel-group .panel + .panel { + margin-top: 5px; +} +.panel-group .panel-heading { + border-bottom: 0; +} +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #ddd; +} +.panel-group .panel-footer { + border-top: 0; +} +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; +} .panel-default { - border-color: #ddd; } - .panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; } - .panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; } - .panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; } - .panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; } + border-color: #ddd; +} +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #ddd; +} +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; +} +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333333; +} +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; +} .panel-primary { - border-color: #337ab7; } - .panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; } - .panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; } - .panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; } + border-color: #337ab7; +} +.panel-primary > .panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; +} +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #fff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; +} .panel-success { - border-color: #d6e9c6; } - .panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; } - .panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; } - .panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; } - .panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; } + border-color: #d6e9c6; +} +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; +} +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} .panel-info { - border-color: #bce8f1; } - .panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; } - .panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; } - .panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; } - .panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; } + border-color: #bce8f1; +} +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; +} +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} .panel-warning { - border-color: #faebcc; } - .panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; } - .panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; } - .panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; } - .panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; } + border-color: #faebcc; +} +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; +} +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} .panel-danger { - border-color: #ebccd1; } - .panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; } - .panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; } - .panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; } - .panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; } + border-color: #ebccd1; +} +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} .embed-responsive { position: relative; display: block; height: 0; padding: 0; - overflow: hidden; } - .embed-responsive .embed-responsive-item, - .embed-responsive iframe, - .embed-responsive embed, - .embed-responsive object, - .embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; } + overflow: hidden; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} .embed-responsive-16by9 { - padding-bottom: 56.25%; } + padding-bottom: 56.25%; +} .embed-responsive-4by3 { - padding-bottom: 75%; } + padding-bottom: 75%; +} .well { min-height: 20px; @@ -238861,18 +175979,22 @@ button.list-group-item-danger { border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } - .well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); } + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} .well-lg { padding: 24px; - border-radius: 6px; } + border-radius: 6px; +} .well-sm { padding: 9px; - border-radius: 3px; } + border-radius: 3px; +} .close { float: right; @@ -238882,13 +176004,15 @@ button.list-group-item-danger { color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); - opacity: 0.2; } - .close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: 0.5; } + opacity: 0.2; +} +.close:hover, .close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: 0.5; +} button.close { padding: 0; @@ -238896,10 +176020,12 @@ button.close { background: transparent; border: 0; -webkit-appearance: none; - appearance: none; } + appearance: none; +} .modal-open { - overflow: hidden; } + overflow: hidden; +} .modal { position: fixed; @@ -238911,30 +176037,35 @@ button.close { display: none; overflow: hidden; -webkit-overflow-scrolling: touch; - outline: 0; } - .modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; } - .modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); } + outline: 0; +} +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; +} +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); +} .modal-open .modal { overflow-x: hidden; - overflow-y: auto; } + overflow-y: auto; +} .modal-dialog { position: relative; width: auto; - margin: 10px; } + margin: 10px; +} .modal-content { position: relative; @@ -238945,7 +176076,8 @@ button.close { border-radius: 6px; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - outline: 0; } + outline: 0; +} .modal-backdrop { position: fixed; @@ -238954,72 +176086,94 @@ button.close { bottom: 0; left: 0; z-index: 1040; - background-color: #000; } - .modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; } - .modal-backdrop.in { - filter: alpha(opacity=50); - opacity: 0.5; } + background-color: #000; +} +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0; +} +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: 0.5; +} .modal-header { padding: 15px; - border-bottom: 1px solid #e5e5e5; } - .modal-header:before, .modal-header:after { - display: table; - content: \\" \\"; } - .modal-header:after { - clear: both; } + border-bottom: 1px solid #e5e5e5; +} +.modal-header:before, .modal-header:after { + display: table; + content: \\" \\"; +} +.modal-header:after { + clear: both; +} .modal-header .close { - margin-top: -2px; } + margin-top: -2px; +} .modal-title { margin: 0; - line-height: 1.42857; } + line-height: 1.428571429; +} .modal-body { position: relative; - padding: 15px; } + padding: 15px; +} .modal-footer { padding: 15px; text-align: right; - border-top: 1px solid #e5e5e5; } - .modal-footer:before, .modal-footer:after { - display: table; - content: \\" \\"; } - .modal-footer:after { - clear: both; } - .modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; } - .modal-footer .btn-group .btn + .btn { - margin-left: -1px; } - .modal-footer .btn-block + .btn-block { - margin-left: 0; } + border-top: 1px solid #e5e5e5; +} +.modal-footer:before, .modal-footer:after { + display: table; + content: \\" \\"; +} +.modal-footer:after { + clear: both; +} +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; - overflow: scroll; } + overflow: scroll; +} @media (min-width: 768px) { .modal-dialog { width: 600px; - margin: 30px auto; } + margin: 30px auto; + } + .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } - .modal-sm { - width: 300px; } } + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } + .modal-sm { + width: 300px; + } +} @media (min-width: 992px) { .modal-lg { - width: 900px; } } - + width: 900px; + } +} .tooltip { position: absolute; z-index: 1070; @@ -239027,7 +176181,7 @@ button.close { font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; - line-height: 1.42857; + line-height: 1.428571429; line-break: auto; text-align: left; text-align: start; @@ -239041,70 +176195,84 @@ button.close { white-space: normal; font-size: 12px; filter: alpha(opacity=0); - opacity: 0; } - .tooltip.in { - filter: alpha(opacity=90); - opacity: 0.9; } - .tooltip.top { - padding: 5px 0; - margin-top: -3px; } - .tooltip.right { - padding: 0 5px; - margin-left: 3px; } - .tooltip.bottom { - padding: 5px 0; - margin-top: 3px; } - .tooltip.left { - padding: 0 5px; - margin-left: -3px; } - .tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; } - .tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; } - .tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } + opacity: 0; +} +.tooltip.in { + filter: alpha(opacity=90); + opacity: 0.9; +} +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} .tooltip-inner { max-width: 200px; @@ -239112,14 +176280,16 @@ button.close { color: #fff; text-align: center; background-color: #000; - border-radius: 4px; } + border-radius: 4px; +} .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; - border-style: solid; } + border-style: solid; +} .popover { position: absolute; @@ -239132,7 +176302,7 @@ button.close { font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; - line-height: 1.42857; + line-height: 1.428571429; line-break: auto; text-align: left; text-align: start; @@ -239151,79 +176321,95 @@ button.close { border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } - .popover.top { - margin-top: -10px; } - .popover.right { - margin-left: 10px; } - .popover.bottom { - margin-top: 10px; } - .popover.left { - margin-left: -10px; } - .popover > .arrow { - border-width: 11px; } - .popover > .arrow, .popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; } - .popover > .arrow:after { - content: \\"\\"; - border-width: 10px; } - .popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; } - .popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-color: #fff; - border-bottom-width: 0; } - .popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; } - .popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: \\" \\"; - border-right-color: #fff; - border-left-width: 0; } - .popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-width: 0; - border-bottom-color: #fff; } - .popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); } - .popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: \\" \\"; - border-right-width: 0; - border-left-color: #fff; } + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow, .popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover > .arrow:after { + content: \\"\\"; + border-width: 10px; +} +.popover.top > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} +.popover.top > .arrow:after { + bottom: 1px; + margin-left: -10px; + content: \\" \\"; + border-top-color: #fff; + border-bottom-width: 0; +} +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} +.popover.right > .arrow:after { + bottom: -10px; + left: 1px; + content: \\" \\"; + border-right-color: #fff; + border-left-width: 0; +} +.popover.bottom > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); +} +.popover.bottom > .arrow:after { + top: 1px; + margin-left: -10px; + content: \\" \\"; + border-top-width: 0; + border-bottom-color: #fff; +} +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); +} +.popover.left > .arrow:after { + right: 1px; + bottom: -10px; + content: \\" \\"; + border-right-width: 0; + border-left-color: #fff; +} .popover-title { padding: 8px 14px; @@ -239231,76 +176417,95 @@ button.close { font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; } + border-radius: 5px 5px 0 0; +} .popover-content { - padding: 9px 14px; } + padding: 9px 14px; +} .carousel { - position: relative; } + position: relative; +} .carousel-inner { position: relative; width: 100%; - overflow: hidden; } + overflow: hidden; +} +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; } - .carousel-inner > .item > img, - .carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; } - @media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; } } - .carousel-inner > .active, - .carousel-inner > .next, - .carousel-inner > .prev { - display: block; } - .carousel-inner > .active { - left: 0; } - .carousel-inner > .next, - .carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; } - .carousel-inner > .next { - left: 100%; } - .carousel-inner > .prev { - left: -100%; } - .carousel-inner > .next.left, - .carousel-inner > .prev.right { - left: 0; } - .carousel-inner > .active.left { - left: -100%; } - .carousel-inner > .active.right { - left: 100%; } + -webkit-transition: -webkit-transform 0.6s ease-in-out; + -moz-transition: -moz-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + -moz-perspective: 1000px; + perspective: 1000px; + } + .carousel-inner > .item.next, .carousel-inner > .item.active.right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + left: 0; + } + .carousel-inner > .item.prev, .carousel-inner > .item.active.left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + left: 0; + } + .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + left: 0; + } +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} .carousel-control { position: absolute; @@ -239314,54 +176519,64 @@ button.close { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); background-color: rgba(0, 0, 0, 0); filter: alpha(opacity=50); - opacity: 0.5; } - .carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - filter: alpha(opacity=90); - opacity: 0.9; } - .carousel-control .icon-prev, - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; } - .carousel-control .icon-prev, - .carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; } - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; } - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; } - .carousel-control .icon-prev:before { - content: \\"\\\\2039\\"; } - .carousel-control .icon-next:before { - content: \\"\\\\203a\\"; } + opacity: 0.5; +} +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#80000000\\", endColorstr=\\"#00000000\\", GradientType=1); + background-repeat: repeat-x; +} +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#00000000\\", endColorstr=\\"#80000000\\", GradientType=1); + background-repeat: repeat-x; +} +.carousel-control:hover, .carousel-control:focus { + color: #fff; + text-decoration: none; + outline: 0; + filter: alpha(opacity=90); + opacity: 0.9; +} +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; + margin-top: -10px; +} +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + font-family: serif; + line-height: 1; +} +.carousel-control .icon-prev:before { + content: \\"‹\\"; +} +.carousel-control .icon-next:before { + content: \\"›\\"; +} .carousel-indicators { position: absolute; @@ -239372,23 +176587,26 @@ button.close { padding-left: 0; margin-left: -30%; text-align: center; - list-style: none; } - .carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \\\\9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; } - .carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; } + list-style: none; +} +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \\\\9 ; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; +} +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #fff; +} .carousel-caption { position: absolute; @@ -239400,86 +176618,109 @@ button.close { padding-bottom: 20px; color: #fff; text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .carousel-caption .btn { - text-shadow: none; } + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.carousel-caption .btn { + text-shadow: none; +} @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { +.carousel-control .glyphicon-chevron-right, +.carousel-control .icon-prev, +.carousel-control .icon-next { width: 30px; height: 30px; margin-top: -10px; - font-size: 30px; } + font-size: 30px; + } .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; } +.carousel-control .icon-prev { + margin-left: -10px; + } .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; } +.carousel-control .icon-next { + margin-right: -10px; + } + .carousel-caption { right: 20%; left: 20%; - padding-bottom: 30px; } - .carousel-indicators { - bottom: 20px; } } + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} .clearfix:before, .clearfix:after { display: table; - content: \\" \\"; } - + content: \\" \\"; +} .clearfix:after { - clear: both; } + clear: both; +} .center-block { display: block; margin-right: auto; - margin-left: auto; } + margin-left: auto; +} .pull-right { - float: right !important; } + float: right !important; +} .pull-left { - float: left !important; } + float: left !important; +} .hide { - display: none !important; } + display: none !important; +} .show { - display: block !important; } + display: block !important; +} .invisible { - visibility: hidden; } + visibility: hidden; +} .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; - border: 0; } + border: 0; +} .hidden { - display: none !important; } + display: none !important; +} .affix { - position: fixed; } + position: fixed; +} @-ms-viewport { - width: device-width; } - + width: device-width; +} .visible-xs { - display: none !important; } + display: none !important; +} .visible-sm { - display: none !important; } + display: none !important; +} .visible-md { - display: none !important; } + display: none !important; +} .visible-lg { - display: none !important; } + display: none !important; +} .visible-xs-block, .visible-xs-inline, @@ -239493,159 +176734,234 @@ button.close { .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { - display: none !important; } + display: none !important; +} @media (max-width: 767px) { .visible-xs { - display: block !important; } + display: block !important; + } + table.visible-xs { - display: table !important; } + display: table !important; + } + tr.visible-xs { - display: table-row !important; } - th.visible-xs, - td.visible-xs { - display: table-cell !important; } } + display: table-row !important; + } + th.visible-xs, +td.visible-xs { + display: table-cell !important; + } +} @media (max-width: 767px) { .visible-xs-block { - display: block !important; } } + display: block !important; + } +} @media (max-width: 767px) { .visible-xs-inline { - display: inline !important; } } + display: inline !important; + } +} @media (max-width: 767px) { .visible-xs-inline-block { - display: inline-block !important; } } + display: inline-block !important; + } +} @media (min-width: 768px) and (max-width: 991px) { .visible-sm { - display: block !important; } + display: block !important; + } + table.visible-sm { - display: table !important; } + display: table !important; + } + tr.visible-sm { - display: table-row !important; } - th.visible-sm, - td.visible-sm { - display: table-cell !important; } } + display: table-row !important; + } + th.visible-sm, +td.visible-sm { + display: table-cell !important; + } +} @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { - display: block !important; } } + display: block !important; + } +} @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { - display: inline !important; } } + display: inline !important; + } +} @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { - display: inline-block !important; } } + display: inline-block !important; + } +} @media (min-width: 992px) and (max-width: 1199px) { .visible-md { - display: block !important; } + display: block !important; + } + table.visible-md { - display: table !important; } + display: table !important; + } + tr.visible-md { - display: table-row !important; } - th.visible-md, - td.visible-md { - display: table-cell !important; } } + display: table-row !important; + } + th.visible-md, +td.visible-md { + display: table-cell !important; + } +} @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { - display: block !important; } } + display: block !important; + } +} @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { - display: inline !important; } } + display: inline !important; + } +} @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { - display: inline-block !important; } } + display: inline-block !important; + } +} @media (min-width: 1200px) { .visible-lg { - display: block !important; } + display: block !important; + } + table.visible-lg { - display: table !important; } + display: table !important; + } + tr.visible-lg { - display: table-row !important; } - th.visible-lg, - td.visible-lg { - display: table-cell !important; } } + display: table-row !important; + } + th.visible-lg, +td.visible-lg { + display: table-cell !important; + } +} @media (min-width: 1200px) { .visible-lg-block { - display: block !important; } } + display: block !important; + } +} @media (min-width: 1200px) { .visible-lg-inline { - display: inline !important; } } + display: inline !important; + } +} @media (min-width: 1200px) { .visible-lg-inline-block { - display: inline-block !important; } } + display: inline-block !important; + } +} @media (max-width: 767px) { .hidden-xs { - display: none !important; } } - + display: none !important; + } +} @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { - display: none !important; } } - + display: none !important; + } +} @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { - display: none !important; } } - + display: none !important; + } +} @media (min-width: 1200px) { .hidden-lg { - display: none !important; } } - + display: none !important; + } +} .visible-print { - display: none !important; } + display: none !important; +} @media print { .visible-print { - display: block !important; } + display: block !important; + } + table.visible-print { - display: table !important; } + display: table !important; + } + tr.visible-print { - display: table-row !important; } - th.visible-print, - td.visible-print { - display: table-cell !important; } } + display: table-row !important; + } + th.visible-print, +td.visible-print { + display: table-cell !important; + } +} .visible-print-block { - display: none !important; } - @media print { - .visible-print-block { - display: block !important; } } + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } +} .visible-print-inline { - display: none !important; } - @media print { - .visible-print-inline { - display: inline !important; } } + display: none !important; +} +@media print { + .visible-print-inline { + display: inline !important; + } +} .visible-print-inline-block { - display: none !important; } - @media print { - .visible-print-inline-block { - display: inline-block !important; } } + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } +} @media print { .hidden-print { - display: none !important; } } -" + display: none !important; + } +}" `; -exports[`loader should work with the "bootstrap-sass" package, import as a package (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (scss): errors 1`] = `Array []`; -exports[`loader should work with the "bootstrap-sass" package, import as a package (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work with the "bootstrap-sass" package, directly import (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work with the "bootstrap-sass" package, import as a package (node-sass) (scss): css 1`] = ` +exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; /*! * Bootstrap v3.4.1 (https://getbootstrap.com/) @@ -239656,10 +176972,12 @@ exports[`loader should work with the "bootstrap-sass" package, import as a packa html { font-family: sans-serif; -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; } + -webkit-text-size-adjust: 100%; +} body { - margin: 0; } + margin: 0; +} article, aside, @@ -239674,88 +176992,109 @@ menu, nav, section, summary { - display: block; } + display: block; +} audio, canvas, progress, video { display: inline-block; - vertical-align: baseline; } + vertical-align: baseline; +} audio:not([controls]) { display: none; - height: 0; } + height: 0; +} [hidden], template { - display: none; } + display: none; +} a { - background-color: transparent; } + background-color: transparent; +} a:active, a:hover { - outline: 0; } + outline: 0; +} abbr[title] { border-bottom: none; text-decoration: underline; - text-decoration: underline dotted; } + text-decoration: underline dotted; +} b, strong { - font-weight: bold; } + font-weight: bold; +} dfn { - font-style: italic; } + font-style: italic; +} h1 { font-size: 2em; - margin: 0.67em 0; } + margin: 0.67em 0; +} mark { background: #ff0; - color: #000; } + color: #000; +} small { - font-size: 80%; } + font-size: 80%; +} sub, sup { font-size: 75%; line-height: 0; position: relative; - vertical-align: baseline; } + vertical-align: baseline; +} sup { - top: -0.5em; } + top: -0.5em; +} sub { - bottom: -0.25em; } + bottom: -0.25em; +} img { - border: 0; } + border: 0; +} svg:not(:root) { - overflow: hidden; } + overflow: hidden; +} figure { - margin: 1em 40px; } + margin: 1em 40px; +} hr { box-sizing: content-box; - height: 0; } + height: 0; +} pre { - overflow: auto; } + overflow: auto; +} code, kbd, pre, samp { font-family: monospace, monospace; - font-size: 1em; } + font-size: 1em; +} button, input, @@ -239764,133 +177103,182 @@ select, textarea { color: inherit; font: inherit; - margin: 0; } + margin: 0; +} button { - overflow: visible; } + overflow: visible; +} button, select { - text-transform: none; } + text-transform: none; +} button, -html input[type=\\"button\\"], -input[type=\\"reset\\"], -input[type=\\"submit\\"] { +html input[type=button], +input[type=reset], +input[type=submit] { -webkit-appearance: button; - cursor: pointer; } + cursor: pointer; +} button[disabled], html input[disabled] { - cursor: default; } + cursor: default; +} button::-moz-focus-inner, input::-moz-focus-inner { border: 0; - padding: 0; } + padding: 0; +} input { - line-height: normal; } + line-height: normal; +} -input[type=\\"checkbox\\"], -input[type=\\"radio\\"] { +input[type=checkbox], +input[type=radio] { box-sizing: border-box; - padding: 0; } + padding: 0; +} -input[type=\\"number\\"]::-webkit-inner-spin-button, -input[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + height: auto; +} -input[type=\\"search\\"] { +input[type=search] { -webkit-appearance: textfield; - box-sizing: content-box; } + box-sizing: content-box; +} -input[type=\\"search\\"]::-webkit-search-cancel-button, -input[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } +input[type=search]::-webkit-search-cancel-button, +input[type=search]::-webkit-search-decoration { + -webkit-appearance: none; +} fieldset { border: 1px solid #c0c0c0; margin: 0 2px; - padding: 0.35em 0.625em 0.75em; } + padding: 0.35em 0.625em 0.75em; +} legend { border: 0; - padding: 0; } + padding: 0; +} textarea { - overflow: auto; } + overflow: auto; +} optgroup { - font-weight: bold; } + font-weight: bold; +} table { border-collapse: collapse; - border-spacing: 0; } + border-spacing: 0; +} td, th { - padding: 0; } + padding: 0; +} /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, - *:before, - *:after { +*:before, +*:after { color: #000 !important; text-shadow: none !important; background: transparent !important; - box-shadow: none !important; } + box-shadow: none !important; + } + a, - a:visited { - text-decoration: underline; } +a:visited { + text-decoration: underline; + } + a[href]:after { - content: \\" (\\" attr(href) \\")\\"; } + content: \\" (\\" attr(href) \\")\\"; + } + abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; } + content: \\" (\\" attr(title) \\")\\"; + } + a[href^=\\"#\\"]:after, - a[href^=\\"javascript:\\"]:after { - content: \\"\\"; } +a[href^=\\"javascript:\\"]:after { + content: \\"\\"; + } + pre, - blockquote { +blockquote { border: 1px solid #999; - page-break-inside: avoid; } + page-break-inside: avoid; + } + thead { - display: table-header-group; } + display: table-header-group; + } + tr, +img { + page-break-inside: avoid; + } + img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } + max-width: 100% !important; + } + p, - h2, - h3 { +h2, +h3 { orphans: 3; - widows: 3; } + widows: 3; + } + h2, - h3 { - page-break-after: avoid; } +h3 { + page-break-after: avoid; + } + .navbar { - display: none; } + display: none; + } + .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; } +.dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { - border: 1px solid #000; } + border: 1px solid #000; + } + .table { - border-collapse: collapse !important; } - .table td, - .table th { - background-color: #fff !important; } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; } } + border-collapse: collapse !important; + } + .table td, +.table th { + background-color: #fff !important; + } + .table-bordered th, +.table-bordered td { + border: 1px solid #ddd !important; + } +} @font-face { font-family: \\"Glyphicons Halflings\\"; src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); - src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); } - + src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); +} .glyphicon { position: relative; top: 1px; @@ -239900,18075 +177288,14296 @@ th { font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } + -moz-osx-font-smoothing: grayscale; +} .glyphicon-asterisk:before { - content: \\"\\\\002a\\"; } + content: \\"*\\"; +} .glyphicon-plus:before { - content: \\"\\\\002b\\"; } + content: \\"+\\"; +} .glyphicon-euro:before, .glyphicon-eur:before { - content: \\"\\\\20ac\\"; } + content: \\"€\\"; +} .glyphicon-minus:before { - content: \\"\\\\2212\\"; } + content: \\"−\\"; +} .glyphicon-cloud:before { - content: \\"\\\\2601\\"; } + content: \\"☁\\"; +} .glyphicon-envelope:before { - content: \\"\\\\2709\\"; } + content: \\"✉\\"; +} .glyphicon-pencil:before { - content: \\"\\\\270f\\"; } + content: \\"✏\\"; +} .glyphicon-glass:before { - content: \\"\\\\e001\\"; } + content: \\"\\\\e001\\"; +} .glyphicon-music:before { - content: \\"\\\\e002\\"; } + content: \\"\\\\e002\\"; +} .glyphicon-search:before { - content: \\"\\\\e003\\"; } + content: \\"\\\\e003\\"; +} .glyphicon-heart:before { - content: \\"\\\\e005\\"; } + content: \\"\\\\e005\\"; +} .glyphicon-star:before { - content: \\"\\\\e006\\"; } + content: \\"\\\\e006\\"; +} .glyphicon-star-empty:before { - content: \\"\\\\e007\\"; } + content: \\"\\\\e007\\"; +} .glyphicon-user:before { - content: \\"\\\\e008\\"; } + content: \\"\\\\e008\\"; +} .glyphicon-film:before { - content: \\"\\\\e009\\"; } + content: \\"\\\\e009\\"; +} .glyphicon-th-large:before { - content: \\"\\\\e010\\"; } + content: \\"\\\\e010\\"; +} .glyphicon-th:before { - content: \\"\\\\e011\\"; } + content: \\"\\\\e011\\"; +} .glyphicon-th-list:before { - content: \\"\\\\e012\\"; } + content: \\"\\\\e012\\"; +} .glyphicon-ok:before { - content: \\"\\\\e013\\"; } + content: \\"\\\\e013\\"; +} .glyphicon-remove:before { - content: \\"\\\\e014\\"; } + content: \\"\\\\e014\\"; +} .glyphicon-zoom-in:before { - content: \\"\\\\e015\\"; } + content: \\"\\\\e015\\"; +} .glyphicon-zoom-out:before { - content: \\"\\\\e016\\"; } + content: \\"\\\\e016\\"; +} .glyphicon-off:before { - content: \\"\\\\e017\\"; } + content: \\"\\\\e017\\"; +} .glyphicon-signal:before { - content: \\"\\\\e018\\"; } + content: \\"\\\\e018\\"; +} .glyphicon-cog:before { - content: \\"\\\\e019\\"; } + content: \\"\\\\e019\\"; +} .glyphicon-trash:before { - content: \\"\\\\e020\\"; } + content: \\"\\\\e020\\"; +} .glyphicon-home:before { - content: \\"\\\\e021\\"; } + content: \\"\\\\e021\\"; +} .glyphicon-file:before { - content: \\"\\\\e022\\"; } + content: \\"\\\\e022\\"; +} .glyphicon-time:before { - content: \\"\\\\e023\\"; } + content: \\"\\\\e023\\"; +} .glyphicon-road:before { - content: \\"\\\\e024\\"; } + content: \\"\\\\e024\\"; +} .glyphicon-download-alt:before { - content: \\"\\\\e025\\"; } + content: \\"\\\\e025\\"; +} .glyphicon-download:before { - content: \\"\\\\e026\\"; } + content: \\"\\\\e026\\"; +} .glyphicon-upload:before { - content: \\"\\\\e027\\"; } + content: \\"\\\\e027\\"; +} .glyphicon-inbox:before { - content: \\"\\\\e028\\"; } + content: \\"\\\\e028\\"; +} .glyphicon-play-circle:before { - content: \\"\\\\e029\\"; } + content: \\"\\\\e029\\"; +} .glyphicon-repeat:before { - content: \\"\\\\e030\\"; } + content: \\"\\\\e030\\"; +} .glyphicon-refresh:before { - content: \\"\\\\e031\\"; } + content: \\"\\\\e031\\"; +} .glyphicon-list-alt:before { - content: \\"\\\\e032\\"; } + content: \\"\\\\e032\\"; +} .glyphicon-lock:before { - content: \\"\\\\e033\\"; } + content: \\"\\\\e033\\"; +} .glyphicon-flag:before { - content: \\"\\\\e034\\"; } + content: \\"\\\\e034\\"; +} .glyphicon-headphones:before { - content: \\"\\\\e035\\"; } + content: \\"\\\\e035\\"; +} .glyphicon-volume-off:before { - content: \\"\\\\e036\\"; } + content: \\"\\\\e036\\"; +} .glyphicon-volume-down:before { - content: \\"\\\\e037\\"; } + content: \\"\\\\e037\\"; +} .glyphicon-volume-up:before { - content: \\"\\\\e038\\"; } + content: \\"\\\\e038\\"; +} .glyphicon-qrcode:before { - content: \\"\\\\e039\\"; } + content: \\"\\\\e039\\"; +} .glyphicon-barcode:before { - content: \\"\\\\e040\\"; } + content: \\"\\\\e040\\"; +} .glyphicon-tag:before { - content: \\"\\\\e041\\"; } + content: \\"\\\\e041\\"; +} .glyphicon-tags:before { - content: \\"\\\\e042\\"; } + content: \\"\\\\e042\\"; +} .glyphicon-book:before { - content: \\"\\\\e043\\"; } + content: \\"\\\\e043\\"; +} .glyphicon-bookmark:before { - content: \\"\\\\e044\\"; } + content: \\"\\\\e044\\"; +} .glyphicon-print:before { - content: \\"\\\\e045\\"; } + content: \\"\\\\e045\\"; +} .glyphicon-camera:before { - content: \\"\\\\e046\\"; } + content: \\"\\\\e046\\"; +} .glyphicon-font:before { - content: \\"\\\\e047\\"; } + content: \\"\\\\e047\\"; +} .glyphicon-bold:before { - content: \\"\\\\e048\\"; } + content: \\"\\\\e048\\"; +} .glyphicon-italic:before { - content: \\"\\\\e049\\"; } + content: \\"\\\\e049\\"; +} .glyphicon-text-height:before { - content: \\"\\\\e050\\"; } + content: \\"\\\\e050\\"; +} .glyphicon-text-width:before { - content: \\"\\\\e051\\"; } + content: \\"\\\\e051\\"; +} .glyphicon-align-left:before { - content: \\"\\\\e052\\"; } + content: \\"\\\\e052\\"; +} .glyphicon-align-center:before { - content: \\"\\\\e053\\"; } + content: \\"\\\\e053\\"; +} .glyphicon-align-right:before { - content: \\"\\\\e054\\"; } + content: \\"\\\\e054\\"; +} .glyphicon-align-justify:before { - content: \\"\\\\e055\\"; } + content: \\"\\\\e055\\"; +} .glyphicon-list:before { - content: \\"\\\\e056\\"; } + content: \\"\\\\e056\\"; +} .glyphicon-indent-left:before { - content: \\"\\\\e057\\"; } + content: \\"\\\\e057\\"; +} .glyphicon-indent-right:before { - content: \\"\\\\e058\\"; } + content: \\"\\\\e058\\"; +} .glyphicon-facetime-video:before { - content: \\"\\\\e059\\"; } + content: \\"\\\\e059\\"; +} .glyphicon-picture:before { - content: \\"\\\\e060\\"; } + content: \\"\\\\e060\\"; +} .glyphicon-map-marker:before { - content: \\"\\\\e062\\"; } + content: \\"\\\\e062\\"; +} .glyphicon-adjust:before { - content: \\"\\\\e063\\"; } + content: \\"\\\\e063\\"; +} .glyphicon-tint:before { - content: \\"\\\\e064\\"; } + content: \\"\\\\e064\\"; +} .glyphicon-edit:before { - content: \\"\\\\e065\\"; } + content: \\"\\\\e065\\"; +} .glyphicon-share:before { - content: \\"\\\\e066\\"; } + content: \\"\\\\e066\\"; +} .glyphicon-check:before { - content: \\"\\\\e067\\"; } + content: \\"\\\\e067\\"; +} .glyphicon-move:before { - content: \\"\\\\e068\\"; } + content: \\"\\\\e068\\"; +} .glyphicon-step-backward:before { - content: \\"\\\\e069\\"; } + content: \\"\\\\e069\\"; +} .glyphicon-fast-backward:before { - content: \\"\\\\e070\\"; } + content: \\"\\\\e070\\"; +} .glyphicon-backward:before { - content: \\"\\\\e071\\"; } + content: \\"\\\\e071\\"; +} .glyphicon-play:before { - content: \\"\\\\e072\\"; } + content: \\"\\\\e072\\"; +} .glyphicon-pause:before { - content: \\"\\\\e073\\"; } + content: \\"\\\\e073\\"; +} .glyphicon-stop:before { - content: \\"\\\\e074\\"; } + content: \\"\\\\e074\\"; +} .glyphicon-forward:before { - content: \\"\\\\e075\\"; } + content: \\"\\\\e075\\"; +} .glyphicon-fast-forward:before { - content: \\"\\\\e076\\"; } + content: \\"\\\\e076\\"; +} .glyphicon-step-forward:before { - content: \\"\\\\e077\\"; } + content: \\"\\\\e077\\"; +} .glyphicon-eject:before { - content: \\"\\\\e078\\"; } + content: \\"\\\\e078\\"; +} .glyphicon-chevron-left:before { - content: \\"\\\\e079\\"; } + content: \\"\\\\e079\\"; +} .glyphicon-chevron-right:before { - content: \\"\\\\e080\\"; } + content: \\"\\\\e080\\"; +} .glyphicon-plus-sign:before { - content: \\"\\\\e081\\"; } + content: \\"\\\\e081\\"; +} .glyphicon-minus-sign:before { - content: \\"\\\\e082\\"; } + content: \\"\\\\e082\\"; +} .glyphicon-remove-sign:before { - content: \\"\\\\e083\\"; } + content: \\"\\\\e083\\"; +} .glyphicon-ok-sign:before { - content: \\"\\\\e084\\"; } + content: \\"\\\\e084\\"; +} .glyphicon-question-sign:before { - content: \\"\\\\e085\\"; } + content: \\"\\\\e085\\"; +} .glyphicon-info-sign:before { - content: \\"\\\\e086\\"; } + content: \\"\\\\e086\\"; +} .glyphicon-screenshot:before { - content: \\"\\\\e087\\"; } + content: \\"\\\\e087\\"; +} .glyphicon-remove-circle:before { - content: \\"\\\\e088\\"; } + content: \\"\\\\e088\\"; +} .glyphicon-ok-circle:before { - content: \\"\\\\e089\\"; } + content: \\"\\\\e089\\"; +} .glyphicon-ban-circle:before { - content: \\"\\\\e090\\"; } + content: \\"\\\\e090\\"; +} .glyphicon-arrow-left:before { - content: \\"\\\\e091\\"; } + content: \\"\\\\e091\\"; +} .glyphicon-arrow-right:before { - content: \\"\\\\e092\\"; } + content: \\"\\\\e092\\"; +} .glyphicon-arrow-up:before { - content: \\"\\\\e093\\"; } + content: \\"\\\\e093\\"; +} .glyphicon-arrow-down:before { - content: \\"\\\\e094\\"; } + content: \\"\\\\e094\\"; +} .glyphicon-share-alt:before { - content: \\"\\\\e095\\"; } + content: \\"\\\\e095\\"; +} .glyphicon-resize-full:before { - content: \\"\\\\e096\\"; } + content: \\"\\\\e096\\"; +} .glyphicon-resize-small:before { - content: \\"\\\\e097\\"; } + content: \\"\\\\e097\\"; +} .glyphicon-exclamation-sign:before { - content: \\"\\\\e101\\"; } + content: \\"\\\\e101\\"; +} .glyphicon-gift:before { - content: \\"\\\\e102\\"; } + content: \\"\\\\e102\\"; +} .glyphicon-leaf:before { - content: \\"\\\\e103\\"; } + content: \\"\\\\e103\\"; +} .glyphicon-fire:before { - content: \\"\\\\e104\\"; } + content: \\"\\\\e104\\"; +} .glyphicon-eye-open:before { - content: \\"\\\\e105\\"; } + content: \\"\\\\e105\\"; +} .glyphicon-eye-close:before { - content: \\"\\\\e106\\"; } + content: \\"\\\\e106\\"; +} .glyphicon-warning-sign:before { - content: \\"\\\\e107\\"; } + content: \\"\\\\e107\\"; +} .glyphicon-plane:before { - content: \\"\\\\e108\\"; } + content: \\"\\\\e108\\"; +} .glyphicon-calendar:before { - content: \\"\\\\e109\\"; } + content: \\"\\\\e109\\"; +} .glyphicon-random:before { - content: \\"\\\\e110\\"; } + content: \\"\\\\e110\\"; +} .glyphicon-comment:before { - content: \\"\\\\e111\\"; } + content: \\"\\\\e111\\"; +} .glyphicon-magnet:before { - content: \\"\\\\e112\\"; } + content: \\"\\\\e112\\"; +} .glyphicon-chevron-up:before { - content: \\"\\\\e113\\"; } + content: \\"\\\\e113\\"; +} .glyphicon-chevron-down:before { - content: \\"\\\\e114\\"; } + content: \\"\\\\e114\\"; +} .glyphicon-retweet:before { - content: \\"\\\\e115\\"; } + content: \\"\\\\e115\\"; +} .glyphicon-shopping-cart:before { - content: \\"\\\\e116\\"; } + content: \\"\\\\e116\\"; +} .glyphicon-folder-close:before { - content: \\"\\\\e117\\"; } + content: \\"\\\\e117\\"; +} .glyphicon-folder-open:before { - content: \\"\\\\e118\\"; } + content: \\"\\\\e118\\"; +} .glyphicon-resize-vertical:before { - content: \\"\\\\e119\\"; } + content: \\"\\\\e119\\"; +} .glyphicon-resize-horizontal:before { - content: \\"\\\\e120\\"; } - -.glyphicon-hdd:before { - content: \\"\\\\e121\\"; } - -.glyphicon-bullhorn:before { - content: \\"\\\\e122\\"; } - -.glyphicon-bell:before { - content: \\"\\\\e123\\"; } - -.glyphicon-certificate:before { - content: \\"\\\\e124\\"; } - -.glyphicon-thumbs-up:before { - content: \\"\\\\e125\\"; } - -.glyphicon-thumbs-down:before { - content: \\"\\\\e126\\"; } - -.glyphicon-hand-right:before { - content: \\"\\\\e127\\"; } - -.glyphicon-hand-left:before { - content: \\"\\\\e128\\"; } - -.glyphicon-hand-up:before { - content: \\"\\\\e129\\"; } - -.glyphicon-hand-down:before { - content: \\"\\\\e130\\"; } - -.glyphicon-circle-arrow-right:before { - content: \\"\\\\e131\\"; } - -.glyphicon-circle-arrow-left:before { - content: \\"\\\\e132\\"; } - -.glyphicon-circle-arrow-up:before { - content: \\"\\\\e133\\"; } - -.glyphicon-circle-arrow-down:before { - content: \\"\\\\e134\\"; } - -.glyphicon-globe:before { - content: \\"\\\\e135\\"; } - -.glyphicon-wrench:before { - content: \\"\\\\e136\\"; } - -.glyphicon-tasks:before { - content: \\"\\\\e137\\"; } - -.glyphicon-filter:before { - content: \\"\\\\e138\\"; } - -.glyphicon-briefcase:before { - content: \\"\\\\e139\\"; } - -.glyphicon-fullscreen:before { - content: \\"\\\\e140\\"; } - -.glyphicon-dashboard:before { - content: \\"\\\\e141\\"; } - -.glyphicon-paperclip:before { - content: \\"\\\\e142\\"; } - -.glyphicon-heart-empty:before { - content: \\"\\\\e143\\"; } - -.glyphicon-link:before { - content: \\"\\\\e144\\"; } - -.glyphicon-phone:before { - content: \\"\\\\e145\\"; } - -.glyphicon-pushpin:before { - content: \\"\\\\e146\\"; } - -.glyphicon-usd:before { - content: \\"\\\\e148\\"; } - -.glyphicon-gbp:before { - content: \\"\\\\e149\\"; } - -.glyphicon-sort:before { - content: \\"\\\\e150\\"; } - -.glyphicon-sort-by-alphabet:before { - content: \\"\\\\e151\\"; } - -.glyphicon-sort-by-alphabet-alt:before { - content: \\"\\\\e152\\"; } - -.glyphicon-sort-by-order:before { - content: \\"\\\\e153\\"; } - -.glyphicon-sort-by-order-alt:before { - content: \\"\\\\e154\\"; } - -.glyphicon-sort-by-attributes:before { - content: \\"\\\\e155\\"; } - -.glyphicon-sort-by-attributes-alt:before { - content: \\"\\\\e156\\"; } - -.glyphicon-unchecked:before { - content: \\"\\\\e157\\"; } - -.glyphicon-expand:before { - content: \\"\\\\e158\\"; } - -.glyphicon-collapse-down:before { - content: \\"\\\\e159\\"; } - -.glyphicon-collapse-up:before { - content: \\"\\\\e160\\"; } - -.glyphicon-log-in:before { - content: \\"\\\\e161\\"; } - -.glyphicon-flash:before { - content: \\"\\\\e162\\"; } - -.glyphicon-log-out:before { - content: \\"\\\\e163\\"; } - -.glyphicon-new-window:before { - content: \\"\\\\e164\\"; } - -.glyphicon-record:before { - content: \\"\\\\e165\\"; } - -.glyphicon-save:before { - content: \\"\\\\e166\\"; } - -.glyphicon-open:before { - content: \\"\\\\e167\\"; } - -.glyphicon-saved:before { - content: \\"\\\\e168\\"; } - -.glyphicon-import:before { - content: \\"\\\\e169\\"; } - -.glyphicon-export:before { - content: \\"\\\\e170\\"; } - -.glyphicon-send:before { - content: \\"\\\\e171\\"; } - -.glyphicon-floppy-disk:before { - content: \\"\\\\e172\\"; } - -.glyphicon-floppy-saved:before { - content: \\"\\\\e173\\"; } - -.glyphicon-floppy-remove:before { - content: \\"\\\\e174\\"; } - -.glyphicon-floppy-save:before { - content: \\"\\\\e175\\"; } - -.glyphicon-floppy-open:before { - content: \\"\\\\e176\\"; } - -.glyphicon-credit-card:before { - content: \\"\\\\e177\\"; } - -.glyphicon-transfer:before { - content: \\"\\\\e178\\"; } - -.glyphicon-cutlery:before { - content: \\"\\\\e179\\"; } - -.glyphicon-header:before { - content: \\"\\\\e180\\"; } - -.glyphicon-compressed:before { - content: \\"\\\\e181\\"; } - -.glyphicon-earphone:before { - content: \\"\\\\e182\\"; } - -.glyphicon-phone-alt:before { - content: \\"\\\\e183\\"; } - -.glyphicon-tower:before { - content: \\"\\\\e184\\"; } - -.glyphicon-stats:before { - content: \\"\\\\e185\\"; } - -.glyphicon-sd-video:before { - content: \\"\\\\e186\\"; } - -.glyphicon-hd-video:before { - content: \\"\\\\e187\\"; } - -.glyphicon-subtitles:before { - content: \\"\\\\e188\\"; } - -.glyphicon-sound-stereo:before { - content: \\"\\\\e189\\"; } - -.glyphicon-sound-dolby:before { - content: \\"\\\\e190\\"; } - -.glyphicon-sound-5-1:before { - content: \\"\\\\e191\\"; } - -.glyphicon-sound-6-1:before { - content: \\"\\\\e192\\"; } - -.glyphicon-sound-7-1:before { - content: \\"\\\\e193\\"; } - -.glyphicon-copyright-mark:before { - content: \\"\\\\e194\\"; } - -.glyphicon-registration-mark:before { - content: \\"\\\\e195\\"; } - -.glyphicon-cloud-download:before { - content: \\"\\\\e197\\"; } - -.glyphicon-cloud-upload:before { - content: \\"\\\\e198\\"; } - -.glyphicon-tree-conifer:before { - content: \\"\\\\e199\\"; } - -.glyphicon-tree-deciduous:before { - content: \\"\\\\e200\\"; } - -.glyphicon-cd:before { - content: \\"\\\\e201\\"; } - -.glyphicon-save-file:before { - content: \\"\\\\e202\\"; } - -.glyphicon-open-file:before { - content: \\"\\\\e203\\"; } - -.glyphicon-level-up:before { - content: \\"\\\\e204\\"; } - -.glyphicon-copy:before { - content: \\"\\\\e205\\"; } - -.glyphicon-paste:before { - content: \\"\\\\e206\\"; } - -.glyphicon-alert:before { - content: \\"\\\\e209\\"; } - -.glyphicon-equalizer:before { - content: \\"\\\\e210\\"; } - -.glyphicon-king:before { - content: \\"\\\\e211\\"; } - -.glyphicon-queen:before { - content: \\"\\\\e212\\"; } - -.glyphicon-pawn:before { - content: \\"\\\\e213\\"; } - -.glyphicon-bishop:before { - content: \\"\\\\e214\\"; } - -.glyphicon-knight:before { - content: \\"\\\\e215\\"; } - -.glyphicon-baby-formula:before { - content: \\"\\\\e216\\"; } - -.glyphicon-tent:before { - content: \\"\\\\26fa\\"; } - -.glyphicon-blackboard:before { - content: \\"\\\\e218\\"; } - -.glyphicon-bed:before { - content: \\"\\\\e219\\"; } - -.glyphicon-apple:before { - content: \\"\\\\f8ff\\"; } - -.glyphicon-erase:before { - content: \\"\\\\e221\\"; } - -.glyphicon-hourglass:before { - content: \\"\\\\231b\\"; } - -.glyphicon-lamp:before { - content: \\"\\\\e223\\"; } - -.glyphicon-duplicate:before { - content: \\"\\\\e224\\"; } - -.glyphicon-piggy-bank:before { - content: \\"\\\\e225\\"; } - -.glyphicon-scissors:before { - content: \\"\\\\e226\\"; } - -.glyphicon-bitcoin:before { - content: \\"\\\\e227\\"; } - -.glyphicon-btc:before { - content: \\"\\\\e227\\"; } - -.glyphicon-xbt:before { - content: \\"\\\\e227\\"; } - -.glyphicon-yen:before { - content: \\"\\\\00a5\\"; } - -.glyphicon-jpy:before { - content: \\"\\\\00a5\\"; } - -.glyphicon-ruble:before { - content: \\"\\\\20bd\\"; } - -.glyphicon-rub:before { - content: \\"\\\\20bd\\"; } - -.glyphicon-scale:before { - content: \\"\\\\e230\\"; } - -.glyphicon-ice-lolly:before { - content: \\"\\\\e231\\"; } - -.glyphicon-ice-lolly-tasted:before { - content: \\"\\\\e232\\"; } - -.glyphicon-education:before { - content: \\"\\\\e233\\"; } - -.glyphicon-option-horizontal:before { - content: \\"\\\\e234\\"; } - -.glyphicon-option-vertical:before { - content: \\"\\\\e235\\"; } - -.glyphicon-menu-hamburger:before { - content: \\"\\\\e236\\"; } - -.glyphicon-modal-window:before { - content: \\"\\\\e237\\"; } - -.glyphicon-oil:before { - content: \\"\\\\e238\\"; } - -.glyphicon-grain:before { - content: \\"\\\\e239\\"; } - -.glyphicon-sunglasses:before { - content: \\"\\\\e240\\"; } - -.glyphicon-text-size:before { - content: \\"\\\\e241\\"; } - -.glyphicon-text-color:before { - content: \\"\\\\e242\\"; } - -.glyphicon-text-background:before { - content: \\"\\\\e243\\"; } - -.glyphicon-object-align-top:before { - content: \\"\\\\e244\\"; } - -.glyphicon-object-align-bottom:before { - content: \\"\\\\e245\\"; } - -.glyphicon-object-align-horizontal:before { - content: \\"\\\\e246\\"; } - -.glyphicon-object-align-left:before { - content: \\"\\\\e247\\"; } - -.glyphicon-object-align-vertical:before { - content: \\"\\\\e248\\"; } - -.glyphicon-object-align-right:before { - content: \\"\\\\e249\\"; } - -.glyphicon-triangle-right:before { - content: \\"\\\\e250\\"; } - -.glyphicon-triangle-left:before { - content: \\"\\\\e251\\"; } - -.glyphicon-triangle-bottom:before { - content: \\"\\\\e252\\"; } - -.glyphicon-triangle-top:before { - content: \\"\\\\e253\\"; } - -.glyphicon-console:before { - content: \\"\\\\e254\\"; } - -.glyphicon-superscript:before { - content: \\"\\\\e255\\"; } - -.glyphicon-subscript:before { - content: \\"\\\\e256\\"; } - -.glyphicon-menu-left:before { - content: \\"\\\\e257\\"; } - -.glyphicon-menu-right:before { - content: \\"\\\\e258\\"; } - -.glyphicon-menu-down:before { - content: \\"\\\\e259\\"; } - -.glyphicon-menu-up:before { - content: \\"\\\\e260\\"; } - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -body { - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857; - color: #333333; - background-color: #fff; } - -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; } - -a { - color: #337ab7; - text-decoration: none; } - a:hover, a:focus { - color: #23527c; - text-decoration: underline; } - a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - -figure { - margin: 0; } - -img { - vertical-align: middle; } - -.img-responsive { - display: block; - max-width: 100%; - height: auto; } - -.img-rounded { - border-radius: 6px; } - -.img-thumbnail { - padding: 4px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; } - -.img-circle { - border-radius: 50%; } - -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; } - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; } - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; } - -[role=\\"button\\"] { - cursor: pointer; } - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; } - h1 small, - h1 .small, h2 small, - h2 .small, h3 small, - h3 .small, h4 small, - h4 .small, h5 small, - h5 .small, h6 small, - h6 .small, - .h1 small, - .h1 .small, .h2 small, - .h2 .small, .h3 small, - .h3 .small, .h4 small, - .h4 .small, .h5 small, - .h5 .small, .h6 small, - .h6 .small { - font-weight: 400; - line-height: 1; - color: #777777; } - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; } - h1 small, - h1 .small, .h1 small, - .h1 .small, - h2 small, - h2 .small, .h2 small, - .h2 .small, - h3 small, - h3 .small, .h3 small, - .h3 .small { - font-size: 65%; } - -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; } - h4 small, - h4 .small, .h4 small, - .h4 .small, - h5 small, - h5 .small, .h5 small, - .h5 .small, - h6 small, - h6 .small, .h6 small, - .h6 .small { - font-size: 75%; } - -h1, .h1 { - font-size: 36px; } - -h2, .h2 { - font-size: 30px; } - -h3, .h3 { - font-size: 24px; } - -h4, .h4 { - font-size: 18px; } - -h5, .h5 { - font-size: 14px; } - -h6, .h6 { - font-size: 12px; } - -p { - margin: 0 0 10px; } - -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; } - @media (min-width: 768px) { - .lead { - font-size: 21px; } } - -small, -.small { - font-size: 85%; } - -mark, -.mark { - padding: .2em; - background-color: #fcf8e3; } - -.text-left { - text-align: left; } - -.text-right { - text-align: right; } - -.text-center { - text-align: center; } - -.text-justify { - text-align: justify; } - -.text-nowrap { - white-space: nowrap; } - -.text-lowercase { - text-transform: lowercase; } - -.text-uppercase, .initialism { - text-transform: uppercase; } - -.text-capitalize { - text-transform: capitalize; } - -.text-muted { - color: #777777; } - -.text-primary { - color: #337ab7; } - -a.text-primary:hover, -a.text-primary:focus { - color: #286090; } - -.text-success { - color: #3c763d; } - -a.text-success:hover, -a.text-success:focus { - color: #2b542c; } - -.text-info { - color: #31708f; } - -a.text-info:hover, -a.text-info:focus { - color: #245269; } - -.text-warning { - color: #8a6d3b; } - -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; } - -.text-danger { - color: #a94442; } - -a.text-danger:hover, -a.text-danger:focus { - color: #843534; } - -.bg-primary { - color: #fff; } - -.bg-primary { - background-color: #337ab7; } - -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; } - -.bg-success { - background-color: #dff0d8; } - -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; } - -.bg-info { - background-color: #d9edf7; } - -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; } - -.bg-warning { - background-color: #fcf8e3; } - -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; } - -.bg-danger { - background-color: #f2dede; } - -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; } - -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; } - -ul, -ol { - margin-top: 0; - margin-bottom: 10px; } - ul ul, - ul ol, - ol ul, - ol ol { - margin-bottom: 0; } - -.list-unstyled { - padding-left: 0; - list-style: none; } - -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; } - .list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; } - -dl { - margin-top: 0; - margin-bottom: 20px; } - -dt, -dd { - line-height: 1.42857; } - -dt { - font-weight: 700; } - -dd { - margin-left: 0; } - -.dl-horizontal dd:before, .dl-horizontal dd:after { - display: table; - content: \\" \\"; } - -.dl-horizontal dd:after { - clear: both; } - -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } - .dl-horizontal dd { - margin-left: 180px; } } - -abbr[title], -abbr[data-original-title] { - cursor: help; } - -.initialism { - font-size: 90%; } - -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; } - blockquote p:last-child, - blockquote ul:last-child, - blockquote ol:last-child { - margin-bottom: 0; } - blockquote footer, - blockquote small, - blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857; - color: #777777; } - blockquote footer:before, - blockquote small:before, - blockquote .small:before { - content: \\"\\\\2014 \\\\00A0\\"; } - -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eeeeee; - border-left: 0; } - .blockquote-reverse footer:before, - .blockquote-reverse small:before, - .blockquote-reverse .small:before, - blockquote.pull-right footer:before, - blockquote.pull-right small:before, - blockquote.pull-right .small:before { - content: \\"\\"; } - .blockquote-reverse footer:after, - .blockquote-reverse small:after, - .blockquote-reverse .small:after, - blockquote.pull-right footer:after, - blockquote.pull-right small:after, - blockquote.pull-right .small:after { - content: \\"\\\\00A0 \\\\2014\\"; } - -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857; } - -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; } - -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; } - -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } - kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - box-shadow: none; } + content: \\"\\\\e120\\"; +} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857; - color: #333333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; } - pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; } +.glyphicon-hdd:before { + content: \\"\\\\e121\\"; +} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; } +.glyphicon-bullhorn:before { + content: \\"\\\\e122\\"; +} -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - .container:before, .container:after { - display: table; - content: \\" \\"; } - .container:after { - clear: both; } - @media (min-width: 768px) { - .container { - width: 750px; } } - @media (min-width: 992px) { - .container { - width: 970px; } } - @media (min-width: 1200px) { - .container { - width: 1170px; } } +.glyphicon-bell:before { + content: \\"\\\\e123\\"; +} -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; } - .container-fluid:before, .container-fluid:after { - display: table; - content: \\" \\"; } - .container-fluid:after { - clear: both; } +.glyphicon-certificate:before { + content: \\"\\\\e124\\"; +} -.row { - margin-right: -15px; - margin-left: -15px; } - .row:before, .row:after { - display: table; - content: \\" \\"; } - .row:after { - clear: both; } +.glyphicon-thumbs-up:before { + content: \\"\\\\e125\\"; +} -.row-no-gutters { - margin-right: 0; - margin-left: 0; } - .row-no-gutters [class*=\\"col-\\"] { - padding-right: 0; - padding-left: 0; } +.glyphicon-thumbs-down:before { + content: \\"\\\\e126\\"; +} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; } +.glyphicon-hand-right:before { + content: \\"\\\\e127\\"; +} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; } +.glyphicon-hand-left:before { + content: \\"\\\\e128\\"; +} -.col-xs-1 { - width: 8.33333%; } +.glyphicon-hand-up:before { + content: \\"\\\\e129\\"; +} -.col-xs-2 { - width: 16.66667%; } +.glyphicon-hand-down:before { + content: \\"\\\\e130\\"; +} -.col-xs-3 { - width: 25%; } +.glyphicon-circle-arrow-right:before { + content: \\"\\\\e131\\"; +} -.col-xs-4 { - width: 33.33333%; } +.glyphicon-circle-arrow-left:before { + content: \\"\\\\e132\\"; +} -.col-xs-5 { - width: 41.66667%; } +.glyphicon-circle-arrow-up:before { + content: \\"\\\\e133\\"; +} -.col-xs-6 { - width: 50%; } +.glyphicon-circle-arrow-down:before { + content: \\"\\\\e134\\"; +} -.col-xs-7 { - width: 58.33333%; } +.glyphicon-globe:before { + content: \\"\\\\e135\\"; +} -.col-xs-8 { - width: 66.66667%; } +.glyphicon-wrench:before { + content: \\"\\\\e136\\"; +} -.col-xs-9 { - width: 75%; } +.glyphicon-tasks:before { + content: \\"\\\\e137\\"; +} -.col-xs-10 { - width: 83.33333%; } +.glyphicon-filter:before { + content: \\"\\\\e138\\"; +} -.col-xs-11 { - width: 91.66667%; } +.glyphicon-briefcase:before { + content: \\"\\\\e139\\"; +} -.col-xs-12 { - width: 100%; } +.glyphicon-fullscreen:before { + content: \\"\\\\e140\\"; +} -.col-xs-pull-0 { - right: auto; } +.glyphicon-dashboard:before { + content: \\"\\\\e141\\"; +} -.col-xs-pull-1 { - right: 8.33333%; } +.glyphicon-paperclip:before { + content: \\"\\\\e142\\"; +} -.col-xs-pull-2 { - right: 16.66667%; } +.glyphicon-heart-empty:before { + content: \\"\\\\e143\\"; +} -.col-xs-pull-3 { - right: 25%; } +.glyphicon-link:before { + content: \\"\\\\e144\\"; +} -.col-xs-pull-4 { - right: 33.33333%; } +.glyphicon-phone:before { + content: \\"\\\\e145\\"; +} -.col-xs-pull-5 { - right: 41.66667%; } +.glyphicon-pushpin:before { + content: \\"\\\\e146\\"; +} -.col-xs-pull-6 { - right: 50%; } +.glyphicon-usd:before { + content: \\"\\\\e148\\"; +} -.col-xs-pull-7 { - right: 58.33333%; } +.glyphicon-gbp:before { + content: \\"\\\\e149\\"; +} -.col-xs-pull-8 { - right: 66.66667%; } +.glyphicon-sort:before { + content: \\"\\\\e150\\"; +} -.col-xs-pull-9 { - right: 75%; } +.glyphicon-sort-by-alphabet:before { + content: \\"\\\\e151\\"; +} -.col-xs-pull-10 { - right: 83.33333%; } +.glyphicon-sort-by-alphabet-alt:before { + content: \\"\\\\e152\\"; +} -.col-xs-pull-11 { - right: 91.66667%; } +.glyphicon-sort-by-order:before { + content: \\"\\\\e153\\"; +} -.col-xs-pull-12 { - right: 100%; } +.glyphicon-sort-by-order-alt:before { + content: \\"\\\\e154\\"; +} -.col-xs-push-0 { - left: auto; } +.glyphicon-sort-by-attributes:before { + content: \\"\\\\e155\\"; +} -.col-xs-push-1 { - left: 8.33333%; } +.glyphicon-sort-by-attributes-alt:before { + content: \\"\\\\e156\\"; +} -.col-xs-push-2 { - left: 16.66667%; } +.glyphicon-unchecked:before { + content: \\"\\\\e157\\"; +} -.col-xs-push-3 { - left: 25%; } +.glyphicon-expand:before { + content: \\"\\\\e158\\"; +} -.col-xs-push-4 { - left: 33.33333%; } +.glyphicon-collapse-down:before { + content: \\"\\\\e159\\"; +} -.col-xs-push-5 { - left: 41.66667%; } +.glyphicon-collapse-up:before { + content: \\"\\\\e160\\"; +} -.col-xs-push-6 { - left: 50%; } +.glyphicon-log-in:before { + content: \\"\\\\e161\\"; +} -.col-xs-push-7 { - left: 58.33333%; } +.glyphicon-flash:before { + content: \\"\\\\e162\\"; +} -.col-xs-push-8 { - left: 66.66667%; } +.glyphicon-log-out:before { + content: \\"\\\\e163\\"; +} -.col-xs-push-9 { - left: 75%; } +.glyphicon-new-window:before { + content: \\"\\\\e164\\"; +} -.col-xs-push-10 { - left: 83.33333%; } +.glyphicon-record:before { + content: \\"\\\\e165\\"; +} -.col-xs-push-11 { - left: 91.66667%; } +.glyphicon-save:before { + content: \\"\\\\e166\\"; +} -.col-xs-push-12 { - left: 100%; } +.glyphicon-open:before { + content: \\"\\\\e167\\"; +} -.col-xs-offset-0 { - margin-left: 0%; } +.glyphicon-saved:before { + content: \\"\\\\e168\\"; +} -.col-xs-offset-1 { - margin-left: 8.33333%; } +.glyphicon-import:before { + content: \\"\\\\e169\\"; +} -.col-xs-offset-2 { - margin-left: 16.66667%; } +.glyphicon-export:before { + content: \\"\\\\e170\\"; +} -.col-xs-offset-3 { - margin-left: 25%; } +.glyphicon-send:before { + content: \\"\\\\e171\\"; +} -.col-xs-offset-4 { - margin-left: 33.33333%; } +.glyphicon-floppy-disk:before { + content: \\"\\\\e172\\"; +} -.col-xs-offset-5 { - margin-left: 41.66667%; } +.glyphicon-floppy-saved:before { + content: \\"\\\\e173\\"; +} -.col-xs-offset-6 { - margin-left: 50%; } +.glyphicon-floppy-remove:before { + content: \\"\\\\e174\\"; +} -.col-xs-offset-7 { - margin-left: 58.33333%; } +.glyphicon-floppy-save:before { + content: \\"\\\\e175\\"; +} -.col-xs-offset-8 { - margin-left: 66.66667%; } +.glyphicon-floppy-open:before { + content: \\"\\\\e176\\"; +} -.col-xs-offset-9 { - margin-left: 75%; } +.glyphicon-credit-card:before { + content: \\"\\\\e177\\"; +} -.col-xs-offset-10 { - margin-left: 83.33333%; } +.glyphicon-transfer:before { + content: \\"\\\\e178\\"; +} -.col-xs-offset-11 { - margin-left: 91.66667%; } +.glyphicon-cutlery:before { + content: \\"\\\\e179\\"; +} -.col-xs-offset-12 { - margin-left: 100%; } +.glyphicon-header:before { + content: \\"\\\\e180\\"; +} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; } - .col-sm-1 { - width: 8.33333%; } - .col-sm-2 { - width: 16.66667%; } - .col-sm-3 { - width: 25%; } - .col-sm-4 { - width: 33.33333%; } - .col-sm-5 { - width: 41.66667%; } - .col-sm-6 { - width: 50%; } - .col-sm-7 { - width: 58.33333%; } - .col-sm-8 { - width: 66.66667%; } - .col-sm-9 { - width: 75%; } - .col-sm-10 { - width: 83.33333%; } - .col-sm-11 { - width: 91.66667%; } - .col-sm-12 { - width: 100%; } - .col-sm-pull-0 { - right: auto; } - .col-sm-pull-1 { - right: 8.33333%; } - .col-sm-pull-2 { - right: 16.66667%; } - .col-sm-pull-3 { - right: 25%; } - .col-sm-pull-4 { - right: 33.33333%; } - .col-sm-pull-5 { - right: 41.66667%; } - .col-sm-pull-6 { - right: 50%; } - .col-sm-pull-7 { - right: 58.33333%; } - .col-sm-pull-8 { - right: 66.66667%; } - .col-sm-pull-9 { - right: 75%; } - .col-sm-pull-10 { - right: 83.33333%; } - .col-sm-pull-11 { - right: 91.66667%; } - .col-sm-pull-12 { - right: 100%; } - .col-sm-push-0 { - left: auto; } - .col-sm-push-1 { - left: 8.33333%; } - .col-sm-push-2 { - left: 16.66667%; } - .col-sm-push-3 { - left: 25%; } - .col-sm-push-4 { - left: 33.33333%; } - .col-sm-push-5 { - left: 41.66667%; } - .col-sm-push-6 { - left: 50%; } - .col-sm-push-7 { - left: 58.33333%; } - .col-sm-push-8 { - left: 66.66667%; } - .col-sm-push-9 { - left: 75%; } - .col-sm-push-10 { - left: 83.33333%; } - .col-sm-push-11 { - left: 91.66667%; } - .col-sm-push-12 { - left: 100%; } - .col-sm-offset-0 { - margin-left: 0%; } - .col-sm-offset-1 { - margin-left: 8.33333%; } - .col-sm-offset-2 { - margin-left: 16.66667%; } - .col-sm-offset-3 { - margin-left: 25%; } - .col-sm-offset-4 { - margin-left: 33.33333%; } - .col-sm-offset-5 { - margin-left: 41.66667%; } - .col-sm-offset-6 { - margin-left: 50%; } - .col-sm-offset-7 { - margin-left: 58.33333%; } - .col-sm-offset-8 { - margin-left: 66.66667%; } - .col-sm-offset-9 { - margin-left: 75%; } - .col-sm-offset-10 { - margin-left: 83.33333%; } - .col-sm-offset-11 { - margin-left: 91.66667%; } - .col-sm-offset-12 { - margin-left: 100%; } } +.glyphicon-compressed:before { + content: \\"\\\\e181\\"; +} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; } - .col-md-1 { - width: 8.33333%; } - .col-md-2 { - width: 16.66667%; } - .col-md-3 { - width: 25%; } - .col-md-4 { - width: 33.33333%; } - .col-md-5 { - width: 41.66667%; } - .col-md-6 { - width: 50%; } - .col-md-7 { - width: 58.33333%; } - .col-md-8 { - width: 66.66667%; } - .col-md-9 { - width: 75%; } - .col-md-10 { - width: 83.33333%; } - .col-md-11 { - width: 91.66667%; } - .col-md-12 { - width: 100%; } - .col-md-pull-0 { - right: auto; } - .col-md-pull-1 { - right: 8.33333%; } - .col-md-pull-2 { - right: 16.66667%; } - .col-md-pull-3 { - right: 25%; } - .col-md-pull-4 { - right: 33.33333%; } - .col-md-pull-5 { - right: 41.66667%; } - .col-md-pull-6 { - right: 50%; } - .col-md-pull-7 { - right: 58.33333%; } - .col-md-pull-8 { - right: 66.66667%; } - .col-md-pull-9 { - right: 75%; } - .col-md-pull-10 { - right: 83.33333%; } - .col-md-pull-11 { - right: 91.66667%; } - .col-md-pull-12 { - right: 100%; } - .col-md-push-0 { - left: auto; } - .col-md-push-1 { - left: 8.33333%; } - .col-md-push-2 { - left: 16.66667%; } - .col-md-push-3 { - left: 25%; } - .col-md-push-4 { - left: 33.33333%; } - .col-md-push-5 { - left: 41.66667%; } - .col-md-push-6 { - left: 50%; } - .col-md-push-7 { - left: 58.33333%; } - .col-md-push-8 { - left: 66.66667%; } - .col-md-push-9 { - left: 75%; } - .col-md-push-10 { - left: 83.33333%; } - .col-md-push-11 { - left: 91.66667%; } - .col-md-push-12 { - left: 100%; } - .col-md-offset-0 { - margin-left: 0%; } - .col-md-offset-1 { - margin-left: 8.33333%; } - .col-md-offset-2 { - margin-left: 16.66667%; } - .col-md-offset-3 { - margin-left: 25%; } - .col-md-offset-4 { - margin-left: 33.33333%; } - .col-md-offset-5 { - margin-left: 41.66667%; } - .col-md-offset-6 { - margin-left: 50%; } - .col-md-offset-7 { - margin-left: 58.33333%; } - .col-md-offset-8 { - margin-left: 66.66667%; } - .col-md-offset-9 { - margin-left: 75%; } - .col-md-offset-10 { - margin-left: 83.33333%; } - .col-md-offset-11 { - margin-left: 91.66667%; } - .col-md-offset-12 { - margin-left: 100%; } } +.glyphicon-earphone:before { + content: \\"\\\\e182\\"; +} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; } - .col-lg-1 { - width: 8.33333%; } - .col-lg-2 { - width: 16.66667%; } - .col-lg-3 { - width: 25%; } - .col-lg-4 { - width: 33.33333%; } - .col-lg-5 { - width: 41.66667%; } - .col-lg-6 { - width: 50%; } - .col-lg-7 { - width: 58.33333%; } - .col-lg-8 { - width: 66.66667%; } - .col-lg-9 { - width: 75%; } - .col-lg-10 { - width: 83.33333%; } - .col-lg-11 { - width: 91.66667%; } - .col-lg-12 { - width: 100%; } - .col-lg-pull-0 { - right: auto; } - .col-lg-pull-1 { - right: 8.33333%; } - .col-lg-pull-2 { - right: 16.66667%; } - .col-lg-pull-3 { - right: 25%; } - .col-lg-pull-4 { - right: 33.33333%; } - .col-lg-pull-5 { - right: 41.66667%; } - .col-lg-pull-6 { - right: 50%; } - .col-lg-pull-7 { - right: 58.33333%; } - .col-lg-pull-8 { - right: 66.66667%; } - .col-lg-pull-9 { - right: 75%; } - .col-lg-pull-10 { - right: 83.33333%; } - .col-lg-pull-11 { - right: 91.66667%; } - .col-lg-pull-12 { - right: 100%; } - .col-lg-push-0 { - left: auto; } - .col-lg-push-1 { - left: 8.33333%; } - .col-lg-push-2 { - left: 16.66667%; } - .col-lg-push-3 { - left: 25%; } - .col-lg-push-4 { - left: 33.33333%; } - .col-lg-push-5 { - left: 41.66667%; } - .col-lg-push-6 { - left: 50%; } - .col-lg-push-7 { - left: 58.33333%; } - .col-lg-push-8 { - left: 66.66667%; } - .col-lg-push-9 { - left: 75%; } - .col-lg-push-10 { - left: 83.33333%; } - .col-lg-push-11 { - left: 91.66667%; } - .col-lg-push-12 { - left: 100%; } - .col-lg-offset-0 { - margin-left: 0%; } - .col-lg-offset-1 { - margin-left: 8.33333%; } - .col-lg-offset-2 { - margin-left: 16.66667%; } - .col-lg-offset-3 { - margin-left: 25%; } - .col-lg-offset-4 { - margin-left: 33.33333%; } - .col-lg-offset-5 { - margin-left: 41.66667%; } - .col-lg-offset-6 { - margin-left: 50%; } - .col-lg-offset-7 { - margin-left: 58.33333%; } - .col-lg-offset-8 { - margin-left: 66.66667%; } - .col-lg-offset-9 { - margin-left: 75%; } - .col-lg-offset-10 { - margin-left: 83.33333%; } - .col-lg-offset-11 { - margin-left: 91.66667%; } - .col-lg-offset-12 { - margin-left: 100%; } } +.glyphicon-phone-alt:before { + content: \\"\\\\e183\\"; +} -table { - background-color: transparent; } - table col[class*=\\"col-\\"] { - position: static; - display: table-column; - float: none; } - table td[class*=\\"col-\\"], - table th[class*=\\"col-\\"] { - position: static; - display: table-cell; - float: none; } +.glyphicon-tower:before { + content: \\"\\\\e184\\"; +} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; } +.glyphicon-stats:before { + content: \\"\\\\e185\\"; +} -th { - text-align: left; } +.glyphicon-sd-video:before { + content: \\"\\\\e186\\"; +} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; } - .table > thead > tr > th, - .table > thead > tr > td, - .table > tbody > tr > th, - .table > tbody > tr > td, - .table > tfoot > tr > th, - .table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857; - vertical-align: top; - border-top: 1px solid #ddd; } - .table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; } - .table > caption + thead > tr:first-child > th, - .table > caption + thead > tr:first-child > td, - .table > colgroup + thead > tr:first-child > th, - .table > colgroup + thead > tr:first-child > td, - .table > thead:first-child > tr:first-child > th, - .table > thead:first-child > tr:first-child > td { - border-top: 0; } - .table > tbody + tbody { - border-top: 2px solid #ddd; } - .table .table { - background-color: #fff; } +.glyphicon-hd-video:before { + content: \\"\\\\e187\\"; +} -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; } +.glyphicon-subtitles:before { + content: \\"\\\\e188\\"; +} -.table-bordered { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td, - .table-bordered > tbody > tr > th, - .table-bordered > tbody > tr > td, - .table-bordered > tfoot > tr > th, - .table-bordered > tfoot > tr > td { - border: 1px solid #ddd; } - .table-bordered > thead > tr > th, - .table-bordered > thead > tr > td { - border-bottom-width: 2px; } +.glyphicon-sound-stereo:before { + content: \\"\\\\e189\\"; +} -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; } +.glyphicon-sound-dolby:before { + content: \\"\\\\e190\\"; +} -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; } +.glyphicon-sound-5-1:before { + content: \\"\\\\e191\\"; +} -.table > thead > tr > td.active, -.table > thead > tr > th.active, -.table > thead > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; } +.glyphicon-sound-6-1:before { + content: \\"\\\\e192\\"; +} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; } +.glyphicon-sound-7-1:before { + content: \\"\\\\e193\\"; +} -.table > thead > tr > td.success, -.table > thead > tr > th.success, -.table > thead > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th { - background-color: #dff0d8; } +.glyphicon-copyright-mark:before { + content: \\"\\\\e194\\"; +} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; } +.glyphicon-registration-mark:before { + content: \\"\\\\e195\\"; +} -.table > thead > tr > td.info, -.table > thead > tr > th.info, -.table > thead > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #d9edf7; } +.glyphicon-cloud-download:before { + content: \\"\\\\e197\\"; +} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; } +.glyphicon-cloud-upload:before { + content: \\"\\\\e198\\"; +} -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, -.table > thead > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; } +.glyphicon-tree-conifer:before { + content: \\"\\\\e199\\"; +} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; } +.glyphicon-tree-deciduous:before { + content: \\"\\\\e200\\"; +} -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, -.table > thead > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f2dede; } +.glyphicon-cd:before { + content: \\"\\\\e201\\"; +} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; } +.glyphicon-save-file:before { + content: \\"\\\\e202\\"; +} -.table-responsive { - min-height: .01%; - overflow-x: auto; } - @media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; } - .table-responsive > .table { - margin-bottom: 0; } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; } - .table-responsive > .table-bordered { - border: 0; } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; } } +.glyphicon-open-file:before { + content: \\"\\\\e203\\"; +} -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } +.glyphicon-level-up:before { + content: \\"\\\\e204\\"; +} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; } +.glyphicon-copy:before { + content: \\"\\\\e205\\"; +} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: 700; } +.glyphicon-paste:before { + content: \\"\\\\e206\\"; +} -input[type=\\"search\\"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-appearance: none; - appearance: none; } +.glyphicon-alert:before { + content: \\"\\\\e209\\"; +} -input[type=\\"radio\\"], -input[type=\\"checkbox\\"] { - margin: 4px 0 0; - margin-top: 1px \\\\9; - line-height: normal; } - input[type=\\"radio\\"][disabled], input[type=\\"radio\\"].disabled, - fieldset[disabled] input[type=\\"radio\\"], - input[type=\\"checkbox\\"][disabled], - input[type=\\"checkbox\\"].disabled, - fieldset[disabled] - input[type=\\"checkbox\\"] { - cursor: not-allowed; } - -input[type=\\"file\\"] { - display: block; } - -input[type=\\"range\\"] { - display: block; - width: 100%; } +.glyphicon-equalizer:before { + content: \\"\\\\e210\\"; +} -select[multiple], -select[size] { - height: auto; } +.glyphicon-king:before { + content: \\"\\\\e211\\"; +} -input[type=\\"file\\"]:focus, -input[type=\\"radio\\"]:focus, -input[type=\\"checkbox\\"]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } +.glyphicon-queen:before { + content: \\"\\\\e212\\"; +} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857; - color: #555555; } +.glyphicon-pawn:before { + content: \\"\\\\e213\\"; +} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857; - color: #555555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } - .form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); } - .form-control::-moz-placeholder { - color: #999; - opacity: 1; } - .form-control:-ms-input-placeholder { - color: #999; } - .form-control::-webkit-input-placeholder { - color: #999; } - .form-control::-ms-expand { - background-color: transparent; - border: 0; } - .form-control[disabled], .form-control[readonly], - fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; } - .form-control[disabled], - fieldset[disabled] .form-control { - cursor: not-allowed; } +.glyphicon-bishop:before { + content: \\"\\\\e214\\"; +} -textarea.form-control { - height: auto; } +.glyphicon-knight:before { + content: \\"\\\\e215\\"; +} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type=\\"date\\"].form-control, - input[type=\\"time\\"].form-control, - input[type=\\"datetime-local\\"].form-control, - input[type=\\"month\\"].form-control { - line-height: 34px; } - input[type=\\"date\\"].input-sm, .input-group-sm > input.form-control[type=\\"date\\"], - .input-group-sm > input.input-group-addon[type=\\"date\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-sm input[type=\\"date\\"], - input[type=\\"time\\"].input-sm, - .input-group-sm > input.form-control[type=\\"time\\"], - .input-group-sm > input.input-group-addon[type=\\"time\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-sm - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-sm, - .input-group-sm > input.form-control[type=\\"datetime-local\\"], - .input-group-sm > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-sm - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-sm, - .input-group-sm > input.form-control[type=\\"month\\"], - .input-group-sm > input.input-group-addon[type=\\"month\\"], - .input-group-sm > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-sm - input[type=\\"month\\"] { - line-height: 30px; } - input[type=\\"date\\"].input-lg, .input-group-lg > input.form-control[type=\\"date\\"], - .input-group-lg > input.input-group-addon[type=\\"date\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"date\\"], - .input-group-lg input[type=\\"date\\"], - input[type=\\"time\\"].input-lg, - .input-group-lg > input.form-control[type=\\"time\\"], - .input-group-lg > input.input-group-addon[type=\\"time\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"time\\"], - .input-group-lg - input[type=\\"time\\"], - input[type=\\"datetime-local\\"].input-lg, - .input-group-lg > input.form-control[type=\\"datetime-local\\"], - .input-group-lg > input.input-group-addon[type=\\"datetime-local\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"datetime-local\\"], - .input-group-lg - input[type=\\"datetime-local\\"], - input[type=\\"month\\"].input-lg, - .input-group-lg > input.form-control[type=\\"month\\"], - .input-group-lg > input.input-group-addon[type=\\"month\\"], - .input-group-lg > .input-group-btn > input.btn[type=\\"month\\"], - .input-group-lg - input[type=\\"month\\"] { - line-height: 46px; } } +.glyphicon-baby-formula:before { + content: \\"\\\\e216\\"; +} -.form-group { - margin-bottom: 15px; } +.glyphicon-tent:before { + content: \\"⛺\\"; +} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; } - .radio.disabled label, - fieldset[disabled] .radio label, - .checkbox.disabled label, - fieldset[disabled] - .checkbox label { - cursor: not-allowed; } - .radio label, - .checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; } +.glyphicon-blackboard:before { + content: \\"\\\\e218\\"; +} -.radio input[type=\\"radio\\"], -.radio-inline input[type=\\"radio\\"], -.checkbox input[type=\\"checkbox\\"], -.checkbox-inline input[type=\\"checkbox\\"] { - position: absolute; - margin-top: 4px \\\\9; - margin-left: -20px; } +.glyphicon-bed:before { + content: \\"\\\\e219\\"; +} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; } +.glyphicon-apple:before { + content: \\"\\\\f8ff\\"; +} -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - vertical-align: middle; - cursor: pointer; } - .radio-inline.disabled, - fieldset[disabled] .radio-inline, - .checkbox-inline.disabled, - fieldset[disabled] - .checkbox-inline { - cursor: not-allowed; } +.glyphicon-erase:before { + content: \\"\\\\e221\\"; +} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; } +.glyphicon-hourglass:before { + content: \\"⌛\\"; +} -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; } - .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, - .input-group-lg > .form-control-static.input-group-addon, - .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, - .input-group-sm > .form-control-static.input-group-addon, - .input-group-sm > .input-group-btn > .form-control-static.btn { - padding-right: 0; - padding-left: 0; } +.glyphicon-lamp:before { + content: \\"\\\\e223\\"; +} -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } +.glyphicon-duplicate:before { + content: \\"\\\\e224\\"; +} -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 30px; - line-height: 30px; } +.glyphicon-piggy-bank:before { + content: \\"\\\\e225\\"; +} -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select.form-control[multiple], -.input-group-sm > select.input-group-addon[multiple], -.input-group-sm > .input-group-btn > select.btn[multiple] { - height: auto; } +.glyphicon-scissors:before { + content: \\"\\\\e226\\"; +} -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } +.glyphicon-bitcoin:before { + content: \\"\\\\e227\\"; +} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; } +.glyphicon-btc:before { + content: \\"\\\\e227\\"; +} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; } +.glyphicon-xbt:before { + content: \\"\\\\e227\\"; +} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; } +.glyphicon-yen:before { + content: \\"¥\\"; +} -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } +.glyphicon-jpy:before { + content: \\"¥\\"; +} -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 46px; - line-height: 46px; } +.glyphicon-ruble:before { + content: \\"₽\\"; +} -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select.form-control[multiple], -.input-group-lg > select.input-group-addon[multiple], -.input-group-lg > .input-group-btn > select.btn[multiple] { - height: auto; } +.glyphicon-rub:before { + content: \\"₽\\"; +} -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } +.glyphicon-scale:before { + content: \\"\\\\e230\\"; +} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; } +.glyphicon-ice-lolly:before { + content: \\"\\\\e231\\"; +} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; } +.glyphicon-ice-lolly-tasted:before { + content: \\"\\\\e232\\"; +} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.33333; } +.glyphicon-education:before { + content: \\"\\\\e233\\"; +} -.has-feedback { - position: relative; } - .has-feedback .form-control { - padding-right: 42.5px; } +.glyphicon-option-horizontal:before { + content: \\"\\\\e234\\"; +} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; } +.glyphicon-option-vertical:before { + content: \\"\\\\e235\\"; +} -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; } +.glyphicon-menu-hamburger:before { + content: \\"\\\\e236\\"; +} -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; } +.glyphicon-modal-window:before { + content: \\"\\\\e237\\"; +} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; } +.glyphicon-oil:before { + content: \\"\\\\e238\\"; +} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; } +.glyphicon-grain:before { + content: \\"\\\\e239\\"; +} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; } +.glyphicon-sunglasses:before { + content: \\"\\\\e240\\"; +} -.has-success .form-control-feedback { - color: #3c763d; } +.glyphicon-text-size:before { + content: \\"\\\\e241\\"; +} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; } +.glyphicon-text-color:before { + content: \\"\\\\e242\\"; +} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; } +.glyphicon-text-background:before { + content: \\"\\\\e243\\"; +} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; } +.glyphicon-object-align-top:before { + content: \\"\\\\e244\\"; +} -.has-warning .form-control-feedback { - color: #8a6d3b; } +.glyphicon-object-align-bottom:before { + content: \\"\\\\e245\\"; +} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; } +.glyphicon-object-align-horizontal:before { + content: \\"\\\\e246\\"; +} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - .has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; } +.glyphicon-object-align-left:before { + content: \\"\\\\e247\\"; +} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; } +.glyphicon-object-align-vertical:before { + content: \\"\\\\e248\\"; +} -.has-error .form-control-feedback { - color: #a94442; } +.glyphicon-object-align-right:before { + content: \\"\\\\e249\\"; +} -.has-feedback label ~ .form-control-feedback { - top: 25px; } +.glyphicon-triangle-right:before { + content: \\"\\\\e250\\"; +} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; } +.glyphicon-triangle-left:before { + content: \\"\\\\e251\\"; +} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; } +.glyphicon-triangle-bottom:before { + content: \\"\\\\e252\\"; +} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .form-inline .form-control-static { - display: inline-block; } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; } - .form-inline .input-group > .form-control { - width: 100%; } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; } - .form-inline .radio input[type=\\"radio\\"], - .form-inline .checkbox input[type=\\"checkbox\\"] { - position: relative; - margin-left: 0; } - .form-inline .has-feedback .form-control-feedback { - top: 0; } } +.glyphicon-triangle-top:before { + content: \\"\\\\e253\\"; +} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; } +.glyphicon-console:before { + content: \\"\\\\e254\\"; +} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; } +.glyphicon-superscript:before { + content: \\"\\\\e255\\"; +} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; } - .form-horizontal .form-group:before, .form-horizontal .form-group:after { - display: table; - content: \\" \\"; } - .form-horizontal .form-group:after { - clear: both; } +.glyphicon-subscript:before { + content: \\"\\\\e256\\"; +} -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; } } +.glyphicon-menu-left:before { + content: \\"\\\\e257\\"; +} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; } +.glyphicon-menu-right:before { + content: \\"\\\\e258\\"; +} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; } } +.glyphicon-menu-down:before { + content: \\"\\\\e259\\"; +} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; } } +.glyphicon-menu-up:before { + content: \\"\\\\e260\\"; +} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; } - .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; } - .btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; } - .btn:active, .btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn.disabled, .btn[disabled], - fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - opacity: 0.65; - -webkit-box-shadow: none; - box-shadow: none; } +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; } +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; } - .btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; } - .btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; } - .btn-default:active, .btn-default.active, - .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - background-image: none; - border-color: #adadad; } - .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, - .open > .btn-default.dropdown-toggle:hover, - .open > .btn-default.dropdown-toggle:focus, - .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; } - .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, - fieldset[disabled] .btn-default:hover, - fieldset[disabled] .btn-default:focus, - fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; } - .btn-default .badge { - color: #fff; - background-color: #333; } +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; } - .btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; } - .btn-primary:active, .btn-primary.active, - .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - background-image: none; - border-color: #204d74; } - .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, - .open > .btn-primary.dropdown-toggle:hover, - .open > .btn-primary.dropdown-toggle:focus, - .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; } - .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, - fieldset[disabled] .btn-primary:hover, - fieldset[disabled] .btn-primary:focus, - fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; } - .btn-primary .badge { - color: #337ab7; - background-color: #fff; } +body { + font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: #fff; +} -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; } - .btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; } - .btn-success:active, .btn-success.active, - .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - background-image: none; - border-color: #398439; } - .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, - .open > .btn-success.dropdown-toggle:hover, - .open > .btn-success.dropdown-toggle:focus, - .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; } - .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, - fieldset[disabled] .btn-success:hover, - fieldset[disabled] .btn-success:focus, - fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; } - .btn-success .badge { - color: #5cb85c; - background-color: #fff; } +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; } - .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; } - .btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; } - .btn-info:active, .btn-info.active, - .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - background-image: none; - border-color: #269abc; } - .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, - .open > .btn-info.dropdown-toggle:hover, - .open > .btn-info.dropdown-toggle:focus, - .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; } - .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, - fieldset[disabled] .btn-info:hover, - fieldset[disabled] .btn-info:focus, - fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; } - .btn-info .badge { - color: #5bc0de; - background-color: #fff; } +a { + color: #337ab7; + text-decoration: none; +} +a:hover, a:focus { + color: #23527c; + text-decoration: underline; +} +a:focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; } - .btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; } - .btn-warning:active, .btn-warning.active, - .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - background-image: none; - border-color: #d58512; } - .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, - .open > .btn-warning.dropdown-toggle:hover, - .open > .btn-warning.dropdown-toggle:focus, - .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; } - .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, - fieldset[disabled] .btn-warning:hover, - fieldset[disabled] .btn-warning:focus, - fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; } - .btn-warning .badge { - color: #f0ad4e; - background-color: #fff; } +figure { + margin: 0; +} -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; } - .btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; } - .btn-danger:active, .btn-danger.active, - .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - background-image: none; - border-color: #ac2925; } - .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, - .open > .btn-danger.dropdown-toggle:hover, - .open > .btn-danger.dropdown-toggle:focus, - .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; } - .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, - fieldset[disabled] .btn-danger:hover, - fieldset[disabled] .btn-danger:focus, - fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; } - .btn-danger .badge { - color: #d9534f; - background-color: #fff; } +img { + vertical-align: middle; +} -.btn-link { - font-weight: 400; - color: #337ab7; - border-radius: 0; } - .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], - fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; } - .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; } - .btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; } - .btn-link[disabled]:hover, .btn-link[disabled]:focus, - fieldset[disabled] .btn-link:hover, - fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; } +.img-responsive { + display: block; + max-width: 100%; + height: auto; +} -.btn-lg, .btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; } +.img-rounded { + border-radius: 6px; +} -.btn-sm, .btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } +.img-thumbnail { + padding: 4px; + line-height: 1.428571429; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; +} -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; } +.img-circle { + border-radius: 50%; +} -.btn-block { - display: block; - width: 100%; } +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} -.btn-block + .btn-block { - margin-top: 5px; } +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} -input[type=\\"submit\\"].btn-block, -input[type=\\"reset\\"].btn-block, -input[type=\\"button\\"].btn-block { - width: 100%; } +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; } - .fade.in { - opacity: 1; } +[role=button] { + cursor: pointer; +} -.collapse { - display: none; } - .collapse.in { - display: block; } +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h1 .small, h2 small, +h2 .small, h3 small, +h3 .small, h4 small, +h4 .small, h5 small, +h5 .small, h6 small, +h6 .small, +.h1 small, +.h1 .small, .h2 small, +.h2 .small, .h3 small, +.h3 .small, .h4 small, +.h4 .small, .h5 small, +.h5 .small, .h6 small, +.h6 .small { + font-weight: 400; + line-height: 1; + color: #777777; +} -tr.collapse.in { - display: table-row; } +h1, .h1, +h2, .h2, +h3, .h3 { + margin-top: 20px; + margin-bottom: 10px; +} +h1 small, +h1 .small, .h1 small, +.h1 .small, +h2 small, +h2 .small, .h2 small, +.h2 .small, +h3 small, +h3 .small, .h3 small, +.h3 .small { + font-size: 65%; +} -tbody.collapse.in { - display: table-row-group; } +h4, .h4, +h5, .h5, +h6, .h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +h4 .small, .h4 small, +.h4 .small, +h5 small, +h5 .small, .h5 small, +.h5 .small, +h6 small, +h6 .small, .h6 small, +.h6 .small { + font-size: 75%; +} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; } +h1, .h1 { + font-size: 36px; +} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \\\\9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; } +h2, .h2 { + font-size: 30px; +} -.dropup, -.dropdown { - position: relative; } +h3, .h3 { + font-size: 24px; +} -.dropdown-toggle:focus { - outline: 0; } +h4, .h4 { + font-size: 18px; +} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; +h5, .h5 { font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); } - .dropdown-menu.pull-right { - right: 0; - left: auto; } - .dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: 400; - line-height: 1.42857; - color: #333333; - white-space: nowrap; } - .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; } +} -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; } +h6, .h6 { + font-size: 12px; +} -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; } +p { + margin: 0 0 10px; +} -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; +} +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} -.open > .dropdown-menu { - display: block; } +small, +.small { + font-size: 85%; +} -.open > a { - outline: 0; } +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} -.dropdown-menu-right { - right: 0; - left: auto; } +.text-left { + text-align: left; +} -.dropdown-menu-left { - right: auto; - left: 0; } +.text-right { + text-align: right; +} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857; - color: #777777; - white-space: nowrap; } +.text-center { + text-align: center; +} -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; } +.text-justify { + text-align: justify; +} -.pull-right > .dropdown-menu { - right: 0; - left: auto; } +.text-nowrap { + white-space: nowrap; +} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: \\"\\"; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \\\\9; } +.text-lowercase { + text-transform: lowercase; +} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; } +.text-uppercase, .initialism { + text-transform: uppercase; +} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; } } +.text-capitalize { + text-transform: capitalize; +} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; } - .btn-group > .btn, - .btn-group-vertical > .btn { - position: relative; - float: left; } - .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, - .btn-group-vertical > .btn:hover, - .btn-group-vertical > .btn:focus, - .btn-group-vertical > .btn:active, - .btn-group-vertical > .btn.active { - z-index: 2; } +.text-muted { + color: #777777; +} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; } +.text-primary { + color: #337ab7; +} -.btn-toolbar { - margin-left: -5px; } - .btn-toolbar:before, .btn-toolbar:after { - display: table; - content: \\" \\"; } - .btn-toolbar:after { - clear: both; } - .btn-toolbar .btn, - .btn-toolbar .btn-group, - .btn-toolbar .input-group { - float: left; } - .btn-toolbar > .btn, - .btn-toolbar > .btn-group, - .btn-toolbar > .input-group { - margin-left: 5px; } +a.text-primary:hover, +a.text-primary:focus { + color: #286090; +} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; } +.text-success { + color: #3c763d; +} -.btn-group > .btn:first-child { - margin-left: 0; } - .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } +a.text-success:hover, +a.text-success:focus { + color: #2b542c; +} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } +.text-info { + color: #31708f; +} -.btn-group > .btn-group { - float: left; } +a.text-info:hover, +a.text-info:focus { + color: #245269; +} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } +.text-warning { + color: #8a6d3b; +} -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } +a.text-warning:hover, +a.text-warning:focus { + color: #66512c; +} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } +.text-danger { + color: #a94442; +} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; } +a.text-danger:hover, +a.text-danger:focus { + color: #843534; +} -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; } +.bg-primary { + color: #fff; +} -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; } +.bg-primary { + background-color: #337ab7; +} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } - .btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; } +a.bg-primary:hover, +a.bg-primary:focus { + background-color: #286090; +} -.btn .caret { - margin-left: 0; } +.bg-success { + background-color: #dff0d8; +} -.btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; } +a.bg-success:hover, +a.bg-success:focus { + background-color: #c1e2b3; +} -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; } +.bg-info { + background-color: #d9edf7; +} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; } +a.bg-info:hover, +a.bg-info:focus { + background-color: #afd9ee; +} -.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { - display: table; - content: \\" \\"; } +.bg-warning { + background-color: #fcf8e3; +} -.btn-group-vertical > .btn-group:after { - clear: both; } +a.bg-warning:hover, +a.bg-warning:focus { + background-color: #f7ecb5; +} -.btn-group-vertical > .btn-group > .btn { - float: none; } +.bg-danger { + background-color: #f2dede; +} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; } +a.bg-danger:hover, +a.bg-danger:focus { + background-color: #e4b9b9; +} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; } +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} +ul ul, +ul ol, +ol ul, +ol ol { + margin-bottom: 0; +} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } +.list-unstyled { + padding-left: 0; + list-style: none; +} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; } +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px; +} +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } +dl { + margin-top: 0; + margin-bottom: 20px; +} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; } +dt, +dd { + line-height: 1.428571429; +} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; } - .btn-group-justified > .btn, - .btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; } - .btn-group-justified > .btn-group .btn { - width: 100%; } - .btn-group-justified > .btn-group .dropdown-menu { - left: auto; } - -[data-toggle=\\"buttons\\"] > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn input[type=\\"checkbox\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"radio\\"], -[data-toggle=\\"buttons\\"] > .btn-group > .btn input[type=\\"checkbox\\"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } +dt { + font-weight: 700; +} -.input-group { - position: relative; +dd { + margin-left: 0; +} + +.dl-horizontal dd:before, .dl-horizontal dd:after { display: table; - border-collapse: separate; } - .input-group[class*=\\"col-\\"] { - float: none; - padding-right: 0; - padding-left: 0; } - .input-group .form-control { - position: relative; - z-index: 2; + content: \\" \\"; +} +.dl-horizontal dd:after { + clear: both; +} +@media (min-width: 768px) { + .dl-horizontal dt { float: left; - width: 100%; - margin-bottom: 0; } - .input-group .form-control:focus { - z-index: 3; } + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } +} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; } - .input-group-addon:not(:first-child):not(:last-child), - .input-group-btn:not(:first-child):not(:last-child), - .input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; } +abbr[title], +abbr[data-original-title] { + cursor: help; +} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; } +.initialism { + font-size: 90%; +} -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: 400; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #ccc; - border-radius: 4px; } - .input-group-addon.input-sm, - .input-group-sm > .input-group-addon, - .input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; } - .input-group-addon.input-lg, - .input-group-lg > .input-group-addon, - .input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; } - .input-group-addon input[type=\\"radio\\"], - .input-group-addon input[type=\\"checkbox\\"] { - margin-top: 0; } +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eeeeee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.428571429; + color: #777777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: \\"— \\"; +} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + text-align: right; + border-right: 5px solid #eeeeee; + border-left: 0; +} +.blockquote-reverse footer:before, +.blockquote-reverse small:before, +.blockquote-reverse .small:before, +blockquote.pull-right footer:before, +blockquote.pull-right small:before, +blockquote.pull-right .small:before { + content: \\"\\"; +} +.blockquote-reverse footer:after, +.blockquote-reverse small:after, +.blockquote-reverse .small:after, +blockquote.pull-right footer:after, +blockquote.pull-right small:after, +blockquote.pull-right .small:after { + content: \\" —\\"; +} -.input-group-addon:first-child { - border-right: 0; } +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429; +} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; +} -.input-group-addon:last-child { - border-left: 0; } +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; } - .input-group-btn > .btn { - position: relative; } - .input-group-btn > .btn + .btn { - margin-left: -1px; } - .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; } - .input-group-btn:first-child > .btn, - .input-group-btn:first-child > .btn-group { - margin-right: -1px; } - .input-group-btn:last-child > .btn, - .input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; } +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 3px; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; + box-shadow: none; +} -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .nav:before, .nav:after { - display: table; - content: \\" \\"; } - .nav:after { - clear: both; } - .nav > li { - position: relative; - display: block; } - .nav > li > a { - position: relative; - display: block; - padding: 10px 15px; } - .nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .nav > li.disabled > a { - color: #777777; } - .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; } - .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; } - .nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; } - .nav > li > a > img { - max-width: none; } +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + color: #333333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} -.nav-tabs { - border-bottom: 1px solid #ddd; } - .nav-tabs > li { - float: left; - margin-bottom: -1px; } - .nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; } - .nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; } - .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; } +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} -.nav-pills > li { - float: left; } - .nav-pills > li > a { - border-radius: 4px; } - .nav-pills > li + li { - margin-left: 2px; } - .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; } +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.container:before, .container:after { + display: table; + content: \\" \\"; +} +.container:after { + clear: both; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} -.nav-stacked > li { - float: none; } - .nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; } +.container-fluid { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.container-fluid:before, .container-fluid:after { + display: table; + content: \\" \\"; +} +.container-fluid:after { + clear: both; +} -.nav-justified, .nav-tabs.nav-justified { - width: 100%; } - .nav-justified > li, .nav-tabs.nav-justified > li { - float: none; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; } - .nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; } - @media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; } } +.row { + margin-right: -15px; + margin-left: -15px; +} +.row:before, .row:after { + display: table; + content: \\" \\"; +} +.row:after { + clear: both; +} -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; } - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; } - @media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; } } +.row-no-gutters { + margin-right: 0; + margin-left: 0; +} +.row-no-gutters [class*=col-] { + padding-right: 0; + padding-left: 0; +} -.tab-content > .tab-pane { - display: none; } +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} -.tab-content > .active { - display: block; } +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; +} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } +.col-xs-1 { + width: 8.3333333333%; +} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; } - .navbar:before, .navbar:after { - display: table; - content: \\" \\"; } - .navbar:after { - clear: both; } - @media (min-width: 768px) { - .navbar { - border-radius: 4px; } } +.col-xs-2 { + width: 16.6666666667%; +} -.navbar-header:before, .navbar-header:after { - display: table; - content: \\" \\"; } +.col-xs-3 { + width: 25%; +} -.navbar-header:after { - clear: both; } +.col-xs-4 { + width: 33.3333333333%; +} -@media (min-width: 768px) { - .navbar-header { - float: left; } } +.col-xs-5 { + width: 41.6666666667%; +} -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; } - .navbar-collapse:before, .navbar-collapse:after { - display: table; - content: \\" \\"; } - .navbar-collapse:after { - clear: both; } - .navbar-collapse.in { - overflow-y: auto; } - @media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; } - .navbar-collapse.in { - overflow-y: visible; } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; } } +.col-xs-6 { + width: 50%; +} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; } - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 340px; } - @media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; } } - @media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; } } +.col-xs-7 { + width: 58.3333333333%; +} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; } +.col-xs-8 { + width: 66.6666666667%; +} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; } +.col-xs-9 { + width: 75%; +} -.container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; } - @media (min-width: 768px) { - .container > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-header, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; } } +.col-xs-10 { + width: 83.3333333333%; +} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; } - @media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; } } +.col-xs-11 { + width: 91.6666666667%; +} -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; } - .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; } - .navbar-brand > img { - display: block; } - @media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; } } +.col-xs-12 { + width: 100%; +} -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-right: 15px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; } - .navbar-toggle:focus { - outline: 0; } - .navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; } - .navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; } - @media (min-width: 768px) { - .navbar-toggle { - display: none; } } +.col-xs-pull-0 { + right: auto; +} -.navbar-nav { - margin: 7.5px -15px; } - .navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; } - @media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; } } - @media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; } - .navbar-nav > li { - float: left; } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; } } +.col-xs-pull-1 { + right: 8.3333333333%; +} -.navbar-form { - padding: 10px 15px; - margin-right: -15px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px; } - @media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; } - .navbar-form .form-control-static { - display: inline-block; } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; } - .navbar-form .input-group > .form-control { - width: 100%; } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; } - .navbar-form .radio input[type=\\"radio\\"], - .navbar-form .checkbox input[type=\\"checkbox\\"] { - position: relative; - margin-left: 0; } - .navbar-form .has-feedback .form-control-feedback { - top: 0; } } - @media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; } - .navbar-form .form-group:last-child { - margin-bottom: 0; } } - @media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; } } +.col-xs-pull-2 { + right: 16.6666666667%; +} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } +.col-xs-pull-3 { + right: 25%; +} -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } +.col-xs-pull-4 { + right: 33.3333333333%; +} -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; } - .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 10px; - margin-bottom: 10px; } - .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 14px; - margin-bottom: 14px; } +.col-xs-pull-5 { + right: 41.6666666667%; +} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; } - @media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; } } +.col-xs-pull-6 { + right: 50%; +} -@media (min-width: 768px) { - .navbar-left { - float: left !important; } - .navbar-right { - float: right !important; - margin-right: -15px; } - .navbar-right ~ .navbar-right { - margin-right: 0; } } +.col-xs-pull-7 { + right: 58.3333333333%; +} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; } - .navbar-default .navbar-brand { - color: #777; } - .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; } - .navbar-default .navbar-text { - color: #777; } - .navbar-default .navbar-nav > li > a { - color: #777; } - .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; } - .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; } - @media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; } } - .navbar-default .navbar-toggle { - border-color: #ddd; } - .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; } - .navbar-default .navbar-toggle .icon-bar { - background-color: #888; } - .navbar-default .navbar-collapse, - .navbar-default .navbar-form { - border-color: #e7e7e7; } - .navbar-default .navbar-link { - color: #777; } - .navbar-default .navbar-link:hover { - color: #333; } - .navbar-default .btn-link { - color: #777; } - .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; } - .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, - fieldset[disabled] .navbar-default .btn-link:hover, - fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; } +.col-xs-pull-8 { + right: 66.6666666667%; +} -.navbar-inverse { - background-color: #222; - border-color: #090909; } - .navbar-inverse .navbar-brand { - color: #9d9d9d; } - .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-text { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; } - .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #090909; } - @media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; } } - .navbar-inverse .navbar-toggle { - border-color: #333; } - .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; } - .navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; } - .navbar-inverse .navbar-collapse, - .navbar-inverse .navbar-form { - border-color: #101010; } - .navbar-inverse .navbar-link { - color: #9d9d9d; } - .navbar-inverse .navbar-link:hover { - color: #fff; } - .navbar-inverse .btn-link { - color: #9d9d9d; } - .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; } - .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, - fieldset[disabled] .navbar-inverse .btn-link:hover, - fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; } +.col-xs-pull-9 { + right: 75%; +} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; } - .breadcrumb > li { - display: inline-block; } - .breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: \\"/ \\"; } - .breadcrumb > .active { - color: #777777; } +.col-xs-pull-10 { + right: 83.3333333333%; +} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; } - .pagination > li { - display: inline; } - .pagination > li > a, - .pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; } - .pagination > li > a:hover, .pagination > li > a:focus, - .pagination > li > span:hover, - .pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; } - .pagination > li:first-child > a, - .pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; } - .pagination > li:last-child > a, - .pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; } - .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, - .pagination > .active > span, - .pagination > .active > span:hover, - .pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; } - .pagination > .disabled > span, - .pagination > .disabled > span:hover, - .pagination > .disabled > span:focus, - .pagination > .disabled > a, - .pagination > .disabled > a:hover, - .pagination > .disabled > a:focus { - color: #777777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; } +.col-xs-pull-11 { + right: 91.6666666667%; +} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33333; } +.col-xs-pull-12 { + right: 100%; +} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; } +.col-xs-push-0 { + left: auto; +} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; } +.col-xs-push-1 { + left: 8.3333333333%; +} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; } +.col-xs-push-2 { + left: 16.6666666667%; +} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } +.col-xs-push-3 { + left: 25%; +} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } +.col-xs-push-4 { + left: 33.3333333333%; +} -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; } - .pager:before, .pager:after { - display: table; - content: \\" \\"; } - .pager:after { - clear: both; } - .pager li { - display: inline; } - .pager li > a, - .pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; } - .pager li > a:hover, - .pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; } - .pager .next > a, - .pager .next > span { - float: right; } - .pager .previous > a, - .pager .previous > span { - float: left; } - .pager .disabled > a, - .pager .disabled > a:hover, - .pager .disabled > a:focus, - .pager .disabled > span { - color: #777777; - cursor: not-allowed; - background-color: #fff; } +.col-xs-push-5 { + left: 41.6666666667%; +} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; } - .label:empty { - display: none; } - .btn .label { - position: relative; - top: -1px; } +.col-xs-push-6 { + left: 50%; +} -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; } +.col-xs-push-7 { + left: 58.3333333333%; +} -.label-default { - background-color: #777777; } - .label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; } +.col-xs-push-8 { + left: 66.6666666667%; +} -.label-primary { - background-color: #337ab7; } - .label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; } +.col-xs-push-9 { + left: 75%; +} -.label-success { - background-color: #5cb85c; } - .label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; } +.col-xs-push-10 { + left: 83.3333333333%; +} -.label-info { - background-color: #5bc0de; } - .label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; } +.col-xs-push-11 { + left: 91.6666666667%; +} -.label-warning { - background-color: #f0ad4e; } - .label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; } +.col-xs-push-12 { + left: 100%; +} -.label-danger { - background-color: #d9534f; } - .label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; } +.col-xs-offset-0 { + margin-left: 0%; +} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777777; - border-radius: 10px; } - .badge:empty { - display: none; } - .btn .badge { - position: relative; - top: -1px; } - .btn-xs .badge, .btn-group-xs > .btn .badge, - .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; } - .list-group-item.active > .badge, - .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; } - .list-group-item > .badge { - float: right; } - .list-group-item > .badge + .badge { - margin-right: 5px; } - .nav-pills > li > a > .badge { - margin-left: 3px; } +.col-xs-offset-1 { + margin-left: 8.3333333333%; +} -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; } +.col-xs-offset-2 { + margin-left: 16.6666666667%; +} -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; } - .jumbotron h1, - .jumbotron .h1 { - color: inherit; } - .jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; } - .jumbotron > hr { - border-top-color: #d5d5d5; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; } - .jumbotron .container { - max-width: 100%; } - @media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; } } +.col-xs-offset-3 { + margin-left: 25%; +} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; } - .thumbnail > img, - .thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-right: auto; - margin-left: auto; } - .thumbnail .caption { - padding: 9px; - color: #333333; } +.col-xs-offset-4 { + margin-left: 33.3333333333%; +} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; } +.col-xs-offset-5 { + margin-left: 41.6666666667%; +} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; } - .alert h4 { - margin-top: 0; - color: inherit; } - .alert .alert-link { - font-weight: bold; } - .alert > p, - .alert > ul { - margin-bottom: 0; } - .alert > p + p { - margin-top: 5px; } +.col-xs-offset-6 { + margin-left: 50%; +} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; } - .alert-dismissable .close, - .alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; } +.col-xs-offset-7 { + margin-left: 58.3333333333%; +} -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; } - .alert-success hr { - border-top-color: #c9e2b3; } - .alert-success .alert-link { - color: #2b542c; } +.col-xs-offset-8 { + margin-left: 66.6666666667%; +} -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; } - .alert-info hr { - border-top-color: #a6e1ec; } - .alert-info .alert-link { - color: #245269; } +.col-xs-offset-9 { + margin-left: 75%; +} -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; } - .alert-warning hr { - border-top-color: #f7e1b5; } - .alert-warning .alert-link { - color: #66512c; } +.col-xs-offset-10 { + margin-left: 83.3333333333%; +} -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; } - .alert-danger hr { - border-top-color: #e4b9c0; } - .alert-danger .alert-link { - color: #843534; } +.col-xs-offset-11 { + margin-left: 91.6666666667%; +} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; } - to { - background-position: 0 0; } } +.col-xs-offset-12 { + margin-left: 100%; +} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; } - to { - background-position: 0 0; } } +@media (min-width: 768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } + .col-sm-1 { + width: 8.3333333333%; + } -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; } + .col-sm-2 { + width: 16.6666666667%; + } -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; } + .col-sm-3 { + width: 25%; + } -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; } + .col-sm-4 { + width: 33.3333333333%; + } -.progress-bar-success { - background-color: #5cb85c; } - .progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + .col-sm-5 { + width: 41.6666666667%; + } -.progress-bar-info { - background-color: #5bc0de; } - .progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + .col-sm-6 { + width: 50%; + } -.progress-bar-warning { - background-color: #f0ad4e; } - .progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + .col-sm-7 { + width: 58.3333333333%; + } -.progress-bar-danger { - background-color: #d9534f; } - .progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } + .col-sm-8 { + width: 66.6666666667%; + } -.media { - margin-top: 15px; } - .media:first-child { - margin-top: 0; } + .col-sm-9 { + width: 75%; + } -.media, -.media-body { - overflow: hidden; - zoom: 1; } + .col-sm-10 { + width: 83.3333333333%; + } -.media-body { - width: 10000px; } + .col-sm-11 { + width: 91.6666666667%; + } -.media-object { - display: block; } - .media-object.img-thumbnail { - max-width: none; } + .col-sm-12 { + width: 100%; + } -.media-right, -.media > .pull-right { - padding-left: 10px; } + .col-sm-pull-0 { + right: auto; + } -.media-left, -.media > .pull-left { - padding-right: 10px; } + .col-sm-pull-1 { + right: 8.3333333333%; + } -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; } + .col-sm-pull-2 { + right: 16.6666666667%; + } -.media-middle { - vertical-align: middle; } + .col-sm-pull-3 { + right: 25%; + } -.media-bottom { - vertical-align: bottom; } + .col-sm-pull-4 { + right: 33.3333333333%; + } -.media-heading { - margin-top: 0; - margin-bottom: 5px; } + .col-sm-pull-5 { + right: 41.6666666667%; + } -.media-list { - padding-left: 0; - list-style: none; } + .col-sm-pull-6 { + right: 50%; + } -.list-group { - padding-left: 0; - margin-bottom: 20px; } + .col-sm-pull-7 { + right: 58.3333333333%; + } -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; } - .list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - .list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; } - .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - color: #777777; - cursor: not-allowed; - background-color: #eeeeee; } - .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; } - .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; } - .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .list-group-item.active .list-group-item-heading, - .list-group-item.active .list-group-item-heading > small, - .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, - .list-group-item.active:hover .list-group-item-heading > small, - .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, - .list-group-item.active:focus .list-group-item-heading > small, - .list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; } - .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; } + .col-sm-pull-8 { + right: 66.6666666667%; + } -a.list-group-item, -button.list-group-item { - color: #555; } - a.list-group-item .list-group-item-heading, - button.list-group-item .list-group-item-heading { - color: #333; } - a.list-group-item:hover, a.list-group-item:focus, - button.list-group-item:hover, - button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; } + .col-sm-pull-9 { + right: 75%; + } -button.list-group-item { - width: 100%; - text-align: left; } + .col-sm-pull-10 { + right: 83.3333333333%; + } -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; } + .col-sm-pull-11 { + right: 91.6666666667%; + } -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; } - a.list-group-item-success .list-group-item-heading, - button.list-group-item-success .list-group-item-heading { - color: inherit; } - a.list-group-item-success:hover, a.list-group-item-success:focus, - button.list-group-item-success:hover, - button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; } - a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, - button.list-group-item-success.active, - button.list-group-item-success.active:hover, - button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; } + .col-sm-pull-12 { + right: 100%; + } -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; } + .col-sm-push-0 { + left: auto; + } -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; } - a.list-group-item-info .list-group-item-heading, - button.list-group-item-info .list-group-item-heading { - color: inherit; } - a.list-group-item-info:hover, a.list-group-item-info:focus, - button.list-group-item-info:hover, - button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; } - a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, - button.list-group-item-info.active, - button.list-group-item-info.active:hover, - button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; } + .col-sm-push-1 { + left: 8.3333333333%; + } -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; } + .col-sm-push-2 { + left: 16.6666666667%; + } -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; } - a.list-group-item-warning .list-group-item-heading, - button.list-group-item-warning .list-group-item-heading { - color: inherit; } - a.list-group-item-warning:hover, a.list-group-item-warning:focus, - button.list-group-item-warning:hover, - button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; } - a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, - button.list-group-item-warning.active, - button.list-group-item-warning.active:hover, - button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; } + .col-sm-push-3 { + left: 25%; + } -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; } + .col-sm-push-4 { + left: 33.3333333333%; + } -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; } - a.list-group-item-danger .list-group-item-heading, - button.list-group-item-danger .list-group-item-heading { - color: inherit; } - a.list-group-item-danger:hover, a.list-group-item-danger:focus, - button.list-group-item-danger:hover, - button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; } - a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, - button.list-group-item-danger.active, - button.list-group-item-danger.active:hover, - button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; } + .col-sm-push-5 { + left: 41.6666666667%; + } -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; } + .col-sm-push-6 { + left: 50%; + } -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; } + .col-sm-push-7 { + left: 58.3333333333%; + } -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } + .col-sm-push-8 { + left: 66.6666666667%; + } -.panel-body { - padding: 15px; } - .panel-body:before, .panel-body:after { - display: table; - content: \\" \\"; } - .panel-body:after { - clear: both; } + .col-sm-push-9 { + left: 75%; + } -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel-heading > .dropdown .dropdown-toggle { - color: inherit; } + .col-sm-push-10 { + left: 83.3333333333%; + } -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; } - .panel-title > a, - .panel-title > small, - .panel-title > .small, - .panel-title > small > a, - .panel-title > .small > a { - color: inherit; } + .col-sm-push-11 { + left: 91.6666666667%; + } -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } + .col-sm-push-12 { + left: 100%; + } -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; } - .panel > .list-group .list-group-item, - .panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; } - .panel > .list-group:first-child .list-group-item:first-child, - .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .list-group:last-child .list-group-item:last-child, - .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } + .col-sm-offset-0 { + margin-left: 0%; + } -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; } + .col-sm-offset-1 { + margin-left: 8.3333333333%; + } -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; } + .col-sm-offset-2 { + margin-left: 16.6666666667%; + } -.list-group + .panel-footer { - border-top-width: 0; } + .col-sm-offset-3 { + margin-left: 25%; + } -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; } - .panel > .table caption, - .panel > .table-responsive > .table caption, - .panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; } + .col-sm-offset-4 { + margin-left: 33.3333333333%; + } -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; } - .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, - .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; } + .col-sm-offset-5 { + margin-left: 41.6666666667%; + } -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; } - .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, - .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; } + .col-sm-offset-6 { + margin-left: 50%; + } -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; } + .col-sm-offset-7 { + margin-left: 58.3333333333%; + } -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; } + .col-sm-offset-8 { + margin-left: 66.6666666667%; + } -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; } - .panel > .table-bordered > thead > tr > th:first-child, - .panel > .table-bordered > thead > tr > td:first-child, - .panel > .table-bordered > tbody > tr > th:first-child, - .panel > .table-bordered > tbody > tr > td:first-child, - .panel > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-bordered > tfoot > tr > td:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; } - .panel > .table-bordered > thead > tr > th:last-child, - .panel > .table-bordered > thead > tr > td:last-child, - .panel > .table-bordered > tbody > tr > th:last-child, - .panel > .table-bordered > tbody > tr > td:last-child, - .panel > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-bordered > tfoot > tr > td:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, - .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; } - .panel > .table-bordered > thead > tr:first-child > td, - .panel > .table-bordered > thead > tr:first-child > th, - .panel > .table-bordered > tbody > tr:first-child > td, - .panel > .table-bordered > tbody > tr:first-child > th, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, - .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; } - .panel > .table-bordered > tbody > tr:last-child > td, - .panel > .table-bordered > tbody > tr:last-child > th, - .panel > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-bordered > tfoot > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, - .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; } + .col-sm-offset-9 { + margin-left: 75%; + } -.panel > .table-responsive { - margin-bottom: 0; - border: 0; } + .col-sm-offset-10 { + margin-left: 83.3333333333%; + } -.panel-group { - margin-bottom: 20px; } - .panel-group .panel { - margin-bottom: 0; - border-radius: 4px; } - .panel-group .panel + .panel { - margin-top: 5px; } - .panel-group .panel-heading { - border-bottom: 0; } - .panel-group .panel-heading + .panel-collapse > .panel-body, - .panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; } - .panel-group .panel-footer { - border-top: 0; } - .panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; } + .col-sm-offset-11 { + margin-left: 91.6666666667%; + } -.panel-default { - border-color: #ddd; } - .panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; } - .panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; } - .panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; } - .panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; } + .col-sm-offset-12 { + margin-left: 100%; + } +} +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } -.panel-primary { - border-color: #337ab7; } - .panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; } - .panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; } - .panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; } - .panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; } + .col-md-1 { + width: 8.3333333333%; + } -.panel-success { - border-color: #d6e9c6; } - .panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; } - .panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; } - .panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; } - .panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; } + .col-md-2 { + width: 16.6666666667%; + } -.panel-info { - border-color: #bce8f1; } - .panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; } - .panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; } - .panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; } - .panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; } + .col-md-3 { + width: 25%; + } -.panel-warning { - border-color: #faebcc; } - .panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; } - .panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; } - .panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; } - .panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; } + .col-md-4 { + width: 33.3333333333%; + } -.panel-danger { - border-color: #ebccd1; } - .panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; } - .panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; } - .panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; } - .panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; } + .col-md-5 { + width: 41.6666666667%; + } -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; } - .embed-responsive .embed-responsive-item, - .embed-responsive iframe, - .embed-responsive embed, - .embed-responsive object, - .embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; } + .col-md-6 { + width: 50%; + } -.embed-responsive-16by9 { - padding-bottom: 56.25%; } + .col-md-7 { + width: 58.3333333333%; + } -.embed-responsive-4by3 { - padding-bottom: 75%; } + .col-md-8 { + width: 66.6666666667%; + } -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } - .well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); } + .col-md-9 { + width: 75%; + } -.well-lg { - padding: 24px; - border-radius: 6px; } + .col-md-10 { + width: 83.3333333333%; + } -.well-sm { - padding: 9px; - border-radius: 3px; } + .col-md-11 { + width: 91.6666666667%; + } -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: 0.2; } - .close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: 0.5; } + .col-md-12 { + width: 100%; + } -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - appearance: none; } + .col-md-pull-0 { + right: auto; + } -.modal-open { - overflow: hidden; } + .col-md-pull-1 { + right: 8.3333333333%; + } -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; } - .modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; } - .modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); } + .col-md-pull-2 { + right: 16.6666666667%; + } -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; } + .col-md-pull-3 { + right: 25%; + } -.modal-dialog { - position: relative; - width: auto; - margin: 10px; } + .col-md-pull-4 { + right: 33.3333333333%; + } -.modal-content { - position: relative; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - outline: 0; } + .col-md-pull-5 { + right: 41.6666666667%; + } -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; } - .modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; } - .modal-backdrop.in { - filter: alpha(opacity=50); - opacity: 0.5; } + .col-md-pull-6 { + right: 50%; + } -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; } - .modal-header:before, .modal-header:after { - display: table; - content: \\" \\"; } - .modal-header:after { - clear: both; } + .col-md-pull-7 { + right: 58.3333333333%; + } -.modal-header .close { - margin-top: -2px; } + .col-md-pull-8 { + right: 66.6666666667%; + } -.modal-title { - margin: 0; - line-height: 1.42857; } + .col-md-pull-9 { + right: 75%; + } -.modal-body { - position: relative; - padding: 15px; } + .col-md-pull-10 { + right: 83.3333333333%; + } -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; } - .modal-footer:before, .modal-footer:after { - display: table; - content: \\" \\"; } - .modal-footer:after { - clear: both; } - .modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; } - .modal-footer .btn-group .btn + .btn { - margin-left: -1px; } - .modal-footer .btn-block + .btn-block { - margin-left: 0; } + .col-md-pull-11 { + right: 91.6666666667%; + } -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; } + .col-md-pull-12 { + right: 100%; + } -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } - .modal-sm { - width: 300px; } } + .col-md-push-0 { + left: auto; + } -@media (min-width: 992px) { - .modal-lg { - width: 900px; } } + .col-md-push-1 { + left: 8.3333333333%; + } -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.42857; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 12px; - filter: alpha(opacity=0); - opacity: 0; } - .tooltip.in { - filter: alpha(opacity=90); - opacity: 0.9; } - .tooltip.top { - padding: 5px 0; - margin-top: -3px; } - .tooltip.right { - padding: 0 5px; - margin-left: 3px; } - .tooltip.bottom { - padding: 5px 0; - margin-top: 3px; } - .tooltip.left { - padding: 0 5px; - margin-left: -3px; } - .tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; } - .tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; } - .tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; } - .tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } - .tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; } + .col-md-push-2 { + left: 16.6666666667%; + } -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; } + .col-md-push-3 { + left: 25%; + } -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; } + .col-md-push-4 { + left: 33.3333333333%; + } -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: 400; - line-height: 1.42857; - line-break: auto; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - font-size: 14px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } - .popover.top { - margin-top: -10px; } - .popover.right { - margin-left: 10px; } - .popover.bottom { - margin-top: 10px; } - .popover.left { - margin-left: -10px; } - .popover > .arrow { - border-width: 11px; } - .popover > .arrow, .popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; } - .popover > .arrow:after { - content: \\"\\"; - border-width: 10px; } - .popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; } - .popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-color: #fff; - border-bottom-width: 0; } - .popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; } - .popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: \\" \\"; - border-right-color: #fff; - border-left-width: 0; } - .popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: \\" \\"; - border-top-width: 0; - border-bottom-color: #fff; } - .popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); } - .popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: \\" \\"; - border-right-width: 0; - border-left-color: #fff; } + .col-md-push-5 { + left: 41.6666666667%; + } -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; } + .col-md-push-6 { + left: 50%; + } -.popover-content { - padding: 9px 14px; } + .col-md-push-7 { + left: 58.3333333333%; + } -.carousel { - position: relative; } + .col-md-push-8 { + left: 66.6666666667%; + } -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; } - .carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; } - .carousel-inner > .item > img, - .carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; } - @media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; } } - .carousel-inner > .active, - .carousel-inner > .next, - .carousel-inner > .prev { - display: block; } - .carousel-inner > .active { - left: 0; } - .carousel-inner > .next, - .carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; } - .carousel-inner > .next { - left: 100%; } - .carousel-inner > .prev { - left: -100%; } - .carousel-inner > .next.left, - .carousel-inner > .prev.right { - left: 0; } - .carousel-inner > .active.left { - left: -100%; } - .carousel-inner > .active.right { - left: 100%; } + .col-md-push-9 { + left: 75%; + } -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: 0.5; } - .carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; } - .carousel-control:hover, .carousel-control:focus { - color: #fff; - text-decoration: none; - outline: 0; - filter: alpha(opacity=90); - opacity: 0.9; } - .carousel-control .icon-prev, - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; } - .carousel-control .icon-prev, - .carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; } - .carousel-control .icon-next, - .carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; } - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; } - .carousel-control .icon-prev:before { - content: \\"\\\\2039\\"; } - .carousel-control .icon-next:before { - content: \\"\\\\203a\\"; } + .col-md-push-10 { + left: 83.3333333333%; + } -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; } - .carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \\\\9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; } - .carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; } + .col-md-push-11 { + left: 91.6666666667%; + } -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .carousel-caption .btn { - text-shadow: none; } + .col-md-push-12 { + left: 100%; + } -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; } - .carousel-indicators { - bottom: 20px; } } + .col-md-offset-0 { + margin-left: 0%; + } -.clearfix:before, .clearfix:after { - display: table; - content: \\" \\"; } + .col-md-offset-1 { + margin-left: 8.3333333333%; + } -.clearfix:after { - clear: both; } + .col-md-offset-2 { + margin-left: 16.6666666667%; + } -.center-block { - display: block; - margin-right: auto; - margin-left: auto; } + .col-md-offset-3 { + margin-left: 25%; + } -.pull-right { - float: right !important; } + .col-md-offset-4 { + margin-left: 33.3333333333%; + } -.pull-left { - float: left !important; } + .col-md-offset-5 { + margin-left: 41.6666666667%; + } -.hide { - display: none !important; } + .col-md-offset-6 { + margin-left: 50%; + } -.show { - display: block !important; } + .col-md-offset-7 { + margin-left: 58.3333333333%; + } -.invisible { - visibility: hidden; } + .col-md-offset-8 { + margin-left: 66.6666666667%; + } -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; } + .col-md-offset-9 { + margin-left: 75%; + } -.hidden { - display: none !important; } + .col-md-offset-10 { + margin-left: 83.3333333333%; + } -.affix { - position: fixed; } + .col-md-offset-11 { + margin-left: 91.6666666667%; + } -@-ms-viewport { - width: device-width; } + .col-md-offset-12 { + margin-left: 100%; + } +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; + } -.visible-xs { - display: none !important; } + .col-lg-1 { + width: 8.3333333333%; + } -.visible-sm { - display: none !important; } + .col-lg-2 { + width: 16.6666666667%; + } -.visible-md { - display: none !important; } + .col-lg-3 { + width: 25%; + } -.visible-lg { - display: none !important; } + .col-lg-4 { + width: 33.3333333333%; + } -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; } + .col-lg-5 { + width: 41.6666666667%; + } -@media (max-width: 767px) { - .visible-xs { - display: block !important; } - table.visible-xs { - display: table !important; } - tr.visible-xs { - display: table-row !important; } - th.visible-xs, - td.visible-xs { - display: table-cell !important; } } + .col-lg-6 { + width: 50%; + } -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; } } + .col-lg-7 { + width: 58.3333333333%; + } -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; } } + .col-lg-8 { + width: 66.6666666667%; + } -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; } } + .col-lg-9 { + width: 75%; + } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; } - table.visible-sm { - display: table !important; } - tr.visible-sm { - display: table-row !important; } - th.visible-sm, - td.visible-sm { - display: table-cell !important; } } + .col-lg-10 { + width: 83.3333333333%; + } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; } } + .col-lg-11 { + width: 91.6666666667%; + } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; } } + .col-lg-12 { + width: 100%; + } -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; } } + .col-lg-pull-0 { + right: auto; + } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; } - table.visible-md { - display: table !important; } - tr.visible-md { - display: table-row !important; } - th.visible-md, - td.visible-md { - display: table-cell !important; } } + .col-lg-pull-1 { + right: 8.3333333333%; + } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; } } + .col-lg-pull-2 { + right: 16.6666666667%; + } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; } } + .col-lg-pull-3 { + right: 25%; + } -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; } } + .col-lg-pull-4 { + right: 33.3333333333%; + } -@media (min-width: 1200px) { - .visible-lg { - display: block !important; } - table.visible-lg { - display: table !important; } - tr.visible-lg { - display: table-row !important; } - th.visible-lg, - td.visible-lg { - display: table-cell !important; } } + .col-lg-pull-5 { + right: 41.6666666667%; + } -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; } } + .col-lg-pull-6 { + right: 50%; + } -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; } } + .col-lg-pull-7 { + right: 58.3333333333%; + } -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; } } + .col-lg-pull-8 { + right: 66.6666666667%; + } -@media (max-width: 767px) { - .hidden-xs { - display: none !important; } } + .col-lg-pull-9 { + right: 75%; + } -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; } } + .col-lg-pull-10 { + right: 83.3333333333%; + } -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; } } + .col-lg-pull-11 { + right: 91.6666666667%; + } -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; } } + .col-lg-pull-12 { + right: 100%; + } -.visible-print { - display: none !important; } + .col-lg-push-0 { + left: auto; + } -@media print { - .visible-print { - display: block !important; } - table.visible-print { - display: table !important; } - tr.visible-print { - display: table-row !important; } - th.visible-print, - td.visible-print { - display: table-cell !important; } } + .col-lg-push-1 { + left: 8.3333333333%; + } -.visible-print-block { - display: none !important; } - @media print { - .visible-print-block { - display: block !important; } } + .col-lg-push-2 { + left: 16.6666666667%; + } -.visible-print-inline { - display: none !important; } - @media print { - .visible-print-inline { - display: inline !important; } } + .col-lg-push-3 { + left: 25%; + } -.visible-print-inline-block { - display: none !important; } - @media print { - .visible-print-inline-block { - display: inline-block !important; } } + .col-lg-push-4 { + left: 33.3333333333%; + } -@media print { - .hidden-print { - display: none !important; } } -" -`; + .col-lg-push-5 { + left: 41.6666666667%; + } -exports[`loader should work with the "bootstrap-sass" package, import as a package (node-sass) (scss): errors 1`] = `Array []`; + .col-lg-push-6 { + left: 50%; + } -exports[`loader should work with the "bootstrap-sass" package, import as a package (node-sass) (scss): warnings 1`] = `Array []`; + .col-lg-push-7 { + left: 58.3333333333%; + } -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -/** - * Foundation for Sites - * Version 6.7.4 - * https://get.foundation - * Licensed under MIT Open Source - */ -@media print, screen and (min-width: 40em) { - .reveal.large, .reveal.small, .reveal.tiny, .reveal { - right: auto; - left: auto; - margin: 0 auto; + .col-lg-push-8 { + left: 66.6666666667%; } -} -/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ -html { - line-height: 1.15; - -webkit-text-size-adjust: 100%; -} -body { - margin: 0; -} + .col-lg-push-9 { + left: 75%; + } -h1 { - font-size: 2em; - margin: 0.67em 0; -} + .col-lg-push-10 { + left: 83.3333333333%; + } -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} + .col-lg-push-11 { + left: 91.6666666667%; + } -pre { - font-family: monospace, monospace; - font-size: 1em; -} + .col-lg-push-12 { + left: 100%; + } -a { - background-color: transparent; -} + .col-lg-offset-0 { + margin-left: 0%; + } -abbr[title] { - border-bottom: 0; - text-decoration: underline dotted; -} + .col-lg-offset-1 { + margin-left: 8.3333333333%; + } -b, -strong { - font-weight: bolder; -} + .col-lg-offset-2 { + margin-left: 16.6666666667%; + } -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} + .col-lg-offset-3 { + margin-left: 25%; + } -small { - font-size: 80%; -} + .col-lg-offset-4 { + margin-left: 33.3333333333%; + } -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} + .col-lg-offset-5 { + margin-left: 41.6666666667%; + } -sub { - bottom: -0.25em; -} + .col-lg-offset-6 { + margin-left: 50%; + } -sup { - top: -0.5em; -} + .col-lg-offset-7 { + margin-left: 58.3333333333%; + } -img { - border-style: none; -} + .col-lg-offset-8 { + margin-left: 66.6666666667%; + } -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - font-size: 100%; - line-height: 1.15; - margin: 0; -} + .col-lg-offset-9 { + margin-left: 75%; + } -button, -input { - overflow: visible; -} + .col-lg-offset-10 { + margin-left: 83.3333333333%; + } -button, -select { - text-transform: none; -} + .col-lg-offset-11 { + margin-left: 91.6666666667%; + } -button, -[type=button], -[type=reset], -[type=submit] { - -webkit-appearance: button; + .col-lg-offset-12 { + margin-left: 100%; + } } - -button::-moz-focus-inner, -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner { - border-style: none; - padding: 0; +table { + background-color: transparent; } - -button:-moz-focusring, -[type=button]:-moz-focusring, -[type=reset]:-moz-focusring, -[type=submit]:-moz-focusring { - outline: 1px dotted ButtonText; +table col[class*=col-] { + position: static; + display: table-column; + float: none; } - -fieldset { - padding: 0.35em 0.75em 0.625em; +table td[class*=col-], +table th[class*=col-] { + position: static; + display: table-cell; + float: none; } -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777777; + text-align: left; } -progress { - vertical-align: baseline; +th { + text-align: left; } -textarea { - overflow: auto; +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; } - -[type=checkbox], -[type=radio] { - box-sizing: border-box; - padding: 0; +.table > thead > tr > th, +.table > thead > tr > td, +.table > tbody > tr > th, +.table > tbody > tr > td, +.table > tfoot > tr > th, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #ddd; } - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; } - -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px; +.table > caption + thead > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > th, +.table > thead:first-child > tr:first-child > td { + border-top: 0; } - -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; +.table > tbody + tbody { + border-top: 2px solid #ddd; } - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; +.table .table { + background-color: #fff; } -details { - display: block; +.table-condensed > thead > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > th, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > th, +.table-condensed > tfoot > tr > td { + padding: 5px; } -summary { - display: list-item; +.table-bordered { + border: 1px solid #ddd; } - -template { - display: none; +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > th, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > th, +.table-bordered > tfoot > tr > td { + border: 1px solid #ddd; } - -[hidden] { - display: none; +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; } -[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus, -[data-whatintent=touch] *, -[data-whatintent=touch] *:focus, -[data-whatinput=mouse] *, -[data-whatinput=mouse] *:focus, -[data-whatinput=touch] *, -[data-whatinput=touch] *:focus { - outline: none; +.table-striped > tbody > tr:nth-of-type(odd) { + background-color: #f9f9f9; } -[draggable=false] { - -webkit-touch-callout: none; - -webkit-user-select: none; +.table-hover > tbody > tr:hover { + background-color: #f5f5f5; } -.foundation-mq { - font-family: \\"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em\\"; +.table > thead > tr > td.active, +.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, +.table > tbody > tr > td.active, +.table > tbody > tr > th.active, +.table > tbody > tr.active > td, +.table > tbody > tr.active > th, +.table > tfoot > tr > td.active, +.table > tfoot > tr > th.active, +.table > tfoot > tr.active > td, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; } -html { - box-sizing: border-box; - font-size: 100%; +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; } -*, -*::before, -*::after { - box-sizing: inherit; +.table > thead > tr > td.success, +.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, +.table > tbody > tr > td.success, +.table > tbody > tr > th.success, +.table > tbody > tr.success > td, +.table > tbody > tr.success > th, +.table > tfoot > tr > td.success, +.table > tfoot > tr > th.success, +.table > tfoot > tr.success > td, +.table > tfoot > tr.success > th { + background-color: #dff0d8; } -body { - margin: 0; - padding: 0; - background: #fefefe; - font-family: \\"Helvetica Neue\\", Helvetica, Roboto, Arial, sans-serif; - font-weight: normal; - line-height: 1.5; - color: #0a0a0a; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; } -img { - display: inline-block; - vertical-align: middle; - max-width: 100%; - height: auto; - -ms-interpolation-mode: bicubic; +.table > thead > tr > td.info, +.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, +.table > tbody > tr > td.info, +.table > tbody > tr > th.info, +.table > tbody > tr.info > td, +.table > tbody > tr.info > th, +.table > tfoot > tr > td.info, +.table > tfoot > tr > th.info, +.table > tfoot > tr.info > td, +.table > tfoot > tr.info > th { + background-color: #d9edf7; } -textarea { - height: auto; - min-height: 50px; - border-radius: 0; +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; } -select { - box-sizing: border-box; - width: 100%; - border-radius: 0; +.table > thead > tr > td.warning, +.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, +.table > tbody > tr > td.warning, +.table > tbody > tr > th.warning, +.table > tbody > tr.warning > td, +.table > tbody > tr.warning > th, +.table > tfoot > tr > td.warning, +.table > tfoot > tr > th.warning, +.table > tfoot > tr.warning > td, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; } -.map_canvas img, -.map_canvas embed, -.map_canvas object, -.mqa-display img, -.mqa-display embed, -.mqa-display object { - max-width: none !important; +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; } -button { - padding: 0; - appearance: none; - border: 0; - border-radius: 0; - background: transparent; - line-height: 1; - cursor: auto; -} -[data-whatinput=mouse] button { - outline: 0; +.table > thead > tr > td.danger, +.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, +.table > tbody > tr > td.danger, +.table > tbody > tr > th.danger, +.table > tbody > tr.danger > td, +.table > tbody > tr.danger > th, +.table > tfoot > tr > td.danger, +.table > tfoot > tr > th.danger, +.table > tfoot > tr.danger > td, +.table > tfoot > tr.danger > th { + background-color: #f2dede; } -pre { - overflow: auto; - -webkit-overflow-scrolling: touch; +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; } -button, -input, -optgroup, -select, -textarea { - font-family: inherit; +.table-responsive { + min-height: 0.01%; + overflow-x: auto; } - -.is-visible { - display: block !important; +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, +.table-responsive > .table > thead > tr > td, +.table-responsive > .table > tbody > tr > th, +.table-responsive > .table > tbody > tr > td, +.table-responsive > .table > tfoot > tr > th, +.table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, +.table-responsive > .table-bordered > thead > tr > td:first-child, +.table-responsive > .table-bordered > tbody > tr > th:first-child, +.table-responsive > .table-bordered > tbody > tr > td:first-child, +.table-responsive > .table-bordered > tfoot > tr > th:first-child, +.table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, +.table-responsive > .table-bordered > thead > tr > td:last-child, +.table-responsive > .table-bordered > tbody > tr > th:last-child, +.table-responsive > .table-bordered > tbody > tr > td:last-child, +.table-responsive > .table-bordered > tfoot > tr > th:last-child, +.table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, +.table-responsive > .table-bordered > tbody > tr:last-child > td, +.table-responsive > .table-bordered > tfoot > tr:last-child > th, +.table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } } -.is-hidden { - display: none !important; +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } -[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color], -textarea { +legend { display: block; - box-sizing: border-box; width: 100%; - height: 2.4375rem; - margin: 0 0 1rem; - padding: 0.5rem; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); - font-family: inherit; - font-size: 1rem; - font-weight: normal; - line-height: 1.5; - color: #0a0a0a; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; - appearance: none; -} -[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus, -textarea:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; } -textarea { +label { + display: inline-block; max-width: 100%; -} -textarea[rows] { - height: auto; -} - -input:disabled, input[readonly], -textarea:disabled, -textarea[readonly] { - background-color: #e6e6e6; - cursor: not-allowed; -} - -[type=submit], -[type=button] { - appearance: none; - border-radius: 0; + margin-bottom: 5px; + font-weight: 700; } input[type=search] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; box-sizing: border-box; + -webkit-appearance: none; + appearance: none; } -::placeholder { - color: #cacaca; -} - -[type=file], -[type=checkbox], -[type=radio] { - margin: 0 0 1rem; -} - -[type=checkbox] + label, -[type=radio] + label { - display: inline-block; - vertical-align: baseline; - margin-left: 0.5rem; - margin-right: 1rem; - margin-bottom: 0; -} -[type=checkbox] + label[for], -[type=radio] + label[for] { - cursor: pointer; -} - -label > [type=checkbox], -label > [type=radio] { - margin-right: 0.5rem; +input[type=radio], +input[type=checkbox] { + margin: 4px 0 0; + margin-top: 1px \\\\9 ; + line-height: normal; } - -[type=file] { - width: 100%; +input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], +input[type=checkbox][disabled], +input[type=checkbox].disabled, +fieldset[disabled] input[type=checkbox] { + cursor: not-allowed; } -label { +input[type=file] { display: block; - margin: 0; - font-size: 0.875rem; - font-weight: normal; - line-height: 1.8; - color: #0a0a0a; -} -label.middle { - margin: 0 0 1rem; - line-height: 1.5; - padding: 0.5625rem 0; -} - -.help-text { - margin-top: -0.5rem; - font-size: 0.8125rem; - font-style: italic; - color: #0a0a0a; } -.input-group { - display: flex; +input[type=range] { + display: block; width: 100%; - margin-bottom: 1rem; - align-items: stretch; -} -.input-group > :first-child, .input-group > :first-child.input-group-button > * { - border-radius: 0 0 0 0; -} -.input-group > :last-child, .input-group > :last-child.input-group-button > * { - border-radius: 0 0 0 0; -} - -.input-group-button a, -.input-group-button input, -.input-group-button button, -.input-group-button label, .input-group-button, .input-group-field, .input-group-label { - margin: 0; - white-space: nowrap; } -.input-group-label { - padding: 0 1rem; - border: 1px solid #cacaca; - background: #e6e6e6; - color: #0a0a0a; - text-align: center; - white-space: nowrap; - display: flex; - flex: 0 0 auto; - align-items: center; -} -.input-group-label:first-child { - border-right: 0; -} -.input-group-label:last-child { - border-left: 0; +select[multiple], +select[size] { + height: auto; } -.input-group-field { - border-radius: 0; - flex: 1 1 0px; - min-width: 0; +input[type=file]:focus, +input[type=radio]:focus, +input[type=checkbox]:focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; } -.input-group-button { - padding-top: 0; - padding-bottom: 0; - text-align: center; - display: flex; - flex: 0 0 auto; -} -.input-group-button a, -.input-group-button input, -.input-group-button button, -.input-group-button label { - align-self: stretch; - height: auto; - padding-top: 0; - padding-bottom: 0; - font-size: 1rem; +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; } -fieldset { - margin: 0; - padding: 0; - border: 0; +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } - -legend { - max-width: 100%; - margin-bottom: 0.5rem; +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); } - -.fieldset { - margin: 1.125rem 0; - padding: 1.25rem; - border: 1px solid #cacaca; +.form-control::-moz-placeholder { + color: #999; + opacity: 1; } -.fieldset legend { - margin: 0; - margin-left: -0.1875rem; - padding: 0 0.1875rem; +.form-control:-ms-input-placeholder { + color: #999; } - -select { - height: 2.4375rem; - margin: 0 0 1rem; - padding: 0.5rem; - appearance: none; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - font-family: inherit; - font-size: 1rem; - font-weight: normal; - line-height: 1.5; - color: #0a0a0a; - background-image: url('data:image/svg+xml;utf8,'); - background-origin: content-box; - background-position: right -1rem center; - background-repeat: no-repeat; - background-size: 9px 6px; - padding-right: 1.5rem; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +.form-control::-webkit-input-placeholder { + color: #999; } -@media screen and (min-width: 0\\\\0 ) { - select { - background-image: url(\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==\\"); - } +.form-control::-ms-expand { + background-color: transparent; + border: 0; } -select:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { + background-color: #eeeeee; + opacity: 1; } -select:disabled { - background-color: #e6e6e6; +.form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } -select::-ms-expand { - display: none; -} -select[multiple] { + +textarea.form-control { height: auto; - background-image: none; -} -select:not([multiple]) { - padding-top: 0; - padding-bottom: 0; } -.is-invalid-input:not(:focus) { - border-color: #cc4b37; - background-color: #f9ecea; -} -.is-invalid-input:not(:focus)::placeholder { - color: #cc4b37; +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type=date].form-control, +input[type=time].form-control, +input[type=datetime-local].form-control, +input[type=month].form-control { + line-height: 34px; + } + input[type=date].input-sm, +.input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date], +input[type=time].input-sm, +.input-group-sm > .input-group-btn > input[type=time].btn, +.input-group-sm input[type=time], +input[type=datetime-local].input-sm, +.input-group-sm > .input-group-btn > input[type=datetime-local].btn, +.input-group-sm input[type=datetime-local], +input[type=month].input-sm, +.input-group-sm > .input-group-btn > input[type=month].btn, +.input-group-sm input[type=month] { + line-height: 30px; + } + input[type=date].input-lg, +.input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date], +input[type=time].input-lg, +.input-group-lg > .input-group-btn > input[type=time].btn, +.input-group-lg input[type=time], +input[type=datetime-local].input-lg, +.input-group-lg > .input-group-btn > input[type=datetime-local].btn, +.input-group-lg input[type=datetime-local], +input[type=month].input-lg, +.input-group-lg > .input-group-btn > input[type=month].btn, +.input-group-lg input[type=month] { + line-height: 46px; + } } - -.is-invalid-label { - color: #cc4b37; +.form-group { + margin-bottom: 15px; } -.form-error { - display: none; - margin-top: -0.5rem; - margin-bottom: 1rem; - font-size: 0.75rem; - font-weight: bold; - color: #cc4b37; -} -.form-error.is-visible { +.radio, +.checkbox { + position: relative; display: block; + margin-top: 10px; + margin-bottom: 10px; } - -div, -dl, -dt, -dd, -ul, -ol, -li, -h1, -h2, -h3, -h4, -h5, -h6, -pre, -form, -p, -blockquote, -th, -td { - margin: 0; - padding: 0; -} - -p { - margin-bottom: 1rem; - font-size: inherit; - line-height: 1.6; - text-rendering: optimizeLegibility; +.radio.disabled label, fieldset[disabled] .radio label, +.checkbox.disabled label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; } - -em, -i { - font-style: italic; - line-height: inherit; +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + cursor: pointer; } -strong, -b { - font-weight: bold; - line-height: inherit; +.radio input[type=radio], +.radio-inline input[type=radio], +.checkbox input[type=checkbox], +.checkbox-inline input[type=checkbox] { + position: absolute; + margin-top: 4px \\\\9 ; + margin-left: -20px; } -small { - font-size: 80%; - line-height: inherit; +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; } -h1, .h1, -h2, .h2, -h3, .h3, -h4, .h4, -h5, .h5, -h6, .h6 { - font-family: \\"Helvetica Neue\\", Helvetica, Roboto, Arial, sans-serif; - font-style: normal; - font-weight: normal; - color: inherit; - text-rendering: optimizeLegibility; -} -h1 small, .h1 small, -h2 small, .h2 small, -h3 small, .h3 small, -h4 small, .h4 small, -h5 small, .h5 small, -h6 small, .h6 small { - line-height: 0; - color: #cacaca; +.radio-inline, +.checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + vertical-align: middle; + cursor: pointer; } - -h1, .h1 { - font-size: 1.5rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; +.radio-inline.disabled, fieldset[disabled] .radio-inline, +.checkbox-inline.disabled, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; } -h2, .h2 { - font-size: 1.25rem; - line-height: 1.4; +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { margin-top: 0; - margin-bottom: 0.5rem; + margin-left: 10px; } -h3, .h3 { - font-size: 1.1875rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; +.form-control-static { + min-height: 34px; + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; } - -h4, .h4 { - font-size: 1.125rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; +.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, +.input-group-lg > .form-control-static.input-group-addon, +.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, +.input-group-sm > .form-control-static.input-group-addon, +.input-group-sm > .input-group-btn > .form-control-static.btn { + padding-right: 0; + padding-left: 0; } -h5, .h5 { - font-size: 1.0625rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; +.input-sm, .input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; } -h6, .h6 { - font-size: 1rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; +select.input-sm, .input-group-sm > select.form-control, +.input-group-sm > select.input-group-addon, +.input-group-sm > .input-group-btn > select.btn { + height: 30px; + line-height: 30px; } -@media print, screen and (min-width: 40em) { - h1, .h1 { - font-size: 3rem; - } - - h2, .h2 { - font-size: 2.5rem; - } - - h3, .h3 { - font-size: 1.9375rem; - } - - h4, .h4 { - font-size: 1.5625rem; - } - - h5, .h5 { - font-size: 1.25rem; - } - - h6, .h6 { - font-size: 1rem; - } -} -a { - line-height: inherit; - color: #1779ba; - text-decoration: none; - cursor: pointer; +textarea.input-sm, .input-group-sm > textarea.form-control, +.input-group-sm > textarea.input-group-addon, +.input-group-sm > .input-group-btn > textarea.btn, +select[multiple].input-sm, +.input-group-sm > select[multiple].form-control, +.input-group-sm > select[multiple].input-group-addon, +.input-group-sm > .input-group-btn > select[multiple].btn { + height: auto; } -a:hover, a:focus { - color: #1468a0; + +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; } -a img { - border: 0; +.form-group-sm select.form-control { + height: 30px; + line-height: 30px; } - -hr { - clear: both; - max-width: 75rem; - height: 0; - margin: 1.25rem auto; - border-top: 0; - border-right: 0; - border-bottom: 1px solid #cacaca; - border-left: 0; +.form-group-sm textarea.form-control, +.form-group-sm select[multiple].form-control { + height: auto; } - -ul, -ol, -dl { - margin-bottom: 1rem; - list-style-position: outside; - line-height: 1.6; +.form-group-sm .form-control-static { + height: 30px; + min-height: 32px; + padding: 6px 10px; + font-size: 12px; + line-height: 1.5; } -li { - font-size: inherit; +.input-lg, .input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; } -ul { - margin-left: 1.25rem; - list-style-type: disc; +select.input-lg, .input-group-lg > select.form-control, +.input-group-lg > select.input-group-addon, +.input-group-lg > .input-group-btn > select.btn { + height: 46px; + line-height: 46px; } -ol { - margin-left: 1.25rem; +textarea.input-lg, .input-group-lg > textarea.form-control, +.input-group-lg > textarea.input-group-addon, +.input-group-lg > .input-group-btn > textarea.btn, +select[multiple].input-lg, +.input-group-lg > select[multiple].form-control, +.input-group-lg > select[multiple].input-group-addon, +.input-group-lg > .input-group-btn > select[multiple].btn { + height: auto; } -ul ul, ul ol, ol ul, ol ol { - margin-left: 1.25rem; - margin-bottom: 0; +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; } - -dl { - margin-bottom: 1rem; +.form-group-lg select.form-control { + height: 46px; + line-height: 46px; } -dl dt { - margin-bottom: 0.3rem; - font-weight: bold; +.form-group-lg textarea.form-control, +.form-group-lg select[multiple].form-control { + height: auto; +} +.form-group-lg .form-control-static { + height: 46px; + min-height: 38px; + padding: 11px 16px; + font-size: 18px; + line-height: 1.3333333; } -blockquote { - margin: 0 0 1rem; - padding: 0.5625rem 1.25rem 0 1.1875rem; - border-left: 1px solid #cacaca; +.has-feedback { + position: relative; } -blockquote, blockquote p { - line-height: 1.6; - color: #8a8a8a; +.has-feedback .form-control { + padding-right: 42.5px; } -abbr, abbr[title] { - border-bottom: 1px dotted #0a0a0a; - cursor: help; - text-decoration: none; +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none; } -figure { - margin: 0; +.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, +.input-group-lg > .input-group-addon + .form-control-feedback, +.input-group-lg > .input-group-btn > .btn + .form-control-feedback, +.input-group-lg + .form-control-feedback, +.form-group-lg .form-control + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; } -kbd { - margin: 0; - padding: 0.125rem 0.25rem 0; - background-color: #e6e6e6; - font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - color: #0a0a0a; +.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, +.input-group-sm > .input-group-addon + .form-control-feedback, +.input-group-sm > .input-group-btn > .btn + .form-control-feedback, +.input-group-sm + .form-control-feedback, +.form-group-sm .form-control + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; } -.subheader { - margin-top: 0.2rem; - margin-bottom: 0.5rem; - font-weight: normal; - line-height: 1.4; - color: #8a8a8a; +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { + color: #3c763d; } - -.lead { - font-size: 125%; - line-height: 1.6; +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - -.stat { - font-size: 2.5rem; - line-height: 1; +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; } -p + .stat { - margin-top: -1rem; +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d; } - -ul.no-bullet, ol.no-bullet { - margin-left: 0; - list-style: none; +.has-success .form-control-feedback { + color: #3c763d; } -.cite-block, cite { - display: block; - color: #8a8a8a; - font-size: 0.8125rem; +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { + color: #8a6d3b; } -.cite-block:before, cite:before { - content: \\"— \\"; +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - -.code-inline, code { - border: 1px solid #cacaca; - background-color: #e6e6e6; - font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - font-weight: normal; - color: #0a0a0a; - display: inline; - max-width: 100%; - word-wrap: break-word; - padding: 0.125rem 0.3125rem 0.0625rem; +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; } - -.code-block { - border: 1px solid #cacaca; - background-color: #e6e6e6; - font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - font-weight: normal; - color: #0a0a0a; - display: block; - overflow: auto; - white-space: pre; - padding: 1rem; - margin-bottom: 1.5rem; +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b; } - -.text-left { - text-align: left; +.has-warning .form-control-feedback { + color: #8a6d3b; } -.text-right { - text-align: right; +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { + color: #a94442; } - -.text-center { - text-align: center; +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - -.text-justify { - text-align: justify; +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; } - -@media print, screen and (min-width: 40em) { - .medium-text-left { - text-align: left; - } - - .medium-text-right { - text-align: right; - } - - .medium-text-center { - text-align: center; - } - - .medium-text-justify { - text-align: justify; - } +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442; +} +.has-error .form-control-feedback { + color: #a94442; } -@media print, screen and (min-width: 64em) { - .large-text-left { - text-align: left; - } - - .large-text-right { - text-align: right; - } - - .large-text-center { - text-align: center; - } - .large-text-justify { - text-align: justify; - } +.has-feedback label ~ .form-control-feedback { + top: 25px; } -.show-for-print { - display: none !important; +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; } -@media print { - * { - background: transparent !important; - color: black !important; - color-adjust: economy; - box-shadow: none !important; - text-shadow: none !important; - } - - .show-for-print { - display: block !important; - } - - .hide-for-print { - display: none !important; - } - - table.show-for-print { - display: table !important; - } - - thead.show-for-print { - display: table-header-group !important; - } - - tbody.show-for-print { - display: table-row-group !important; - } - - tr.show-for-print { - display: table-row !important; - } - - td.show-for-print { - display: table-cell !important; - } - - th.show-for-print { - display: table-cell !important; - } +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} - a, -a:visited { - text-decoration: underline; +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; } - - a[href]:after { - content: \\" (\\" attr(href) \\")\\"; + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; } - - .ir a:after, -a[href^=\\"javascript:\\"]:after, -a[href^=\\"#\\"]:after { - content: \\"\\"; + .form-inline .form-control-static { + display: inline-block; } - - abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; + .form-inline .input-group { + display: inline-table; + vertical-align: middle; } - - pre, -blockquote { - border: 1px solid #8a8a8a; - page-break-inside: avoid; + .form-inline .input-group .input-group-addon, +.form-inline .input-group .input-group-btn, +.form-inline .input-group .form-control { + width: auto; } - - thead { - display: table-header-group; + .form-inline .input-group > .form-control { + width: 100%; } - - tr, -img { - page-break-inside: avoid; + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; } - - img { - max-width: 100% !important; + .form-inline .radio, +.form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; } - - @page { - margin: 0.5cm; + .form-inline .radio label, +.form-inline .checkbox label { + padding-left: 0; } - p, -h2, -h3 { - orphans: 3; - widows: 3; + .form-inline .radio input[type=radio], +.form-inline .checkbox input[type=checkbox] { + position: relative; + margin-left: 0; } - - h2, -h3 { - page-break-after: avoid; + .form-inline .has-feedback .form-control-feedback { + top: 0; } +} - .print-break-inside { - page-break-inside: auto; - } +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; } -.grid-container { - padding-right: 0.625rem; - padding-left: 0.625rem; - max-width: 75rem; - margin-left: auto; - margin-right: auto; +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; } -@media print, screen and (min-width: 40em) { - .grid-container { - padding-right: 0.9375rem; - padding-left: 0.9375rem; - } +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; } -.grid-container.fluid { - padding-right: 0.625rem; - padding-left: 0.625rem; - max-width: 100%; - margin-left: auto; - margin-right: auto; +.form-horizontal .form-group:before, .form-horizontal .form-group:after { + display: table; + content: \\" \\"; } -@media print, screen and (min-width: 40em) { - .grid-container.fluid { - padding-right: 0.9375rem; - padding-left: 0.9375rem; +.form-horizontal .form-group:after { + clear: both; +} +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 7px; + margin-bottom: 0; + text-align: right; } } -.grid-container.full { - padding-right: 0; - padding-left: 0; - max-width: 100%; - margin-left: auto; - margin-right: auto; +.form-horizontal .has-feedback .form-control-feedback { + right: 15px; } - -.grid-x { - display: flex; - flex-flow: row wrap; +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 11px; + font-size: 18px; + } +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + font-size: 12px; + } } -.cell { - flex: 0 0 auto; - min-height: 0; - min-width: 0; - width: 100%; +.btn { + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + white-space: nowrap; + vertical-align: middle; + touch-action: manipulation; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } -.cell.auto { - flex: 1 1 0; +.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; } -.cell.shrink { - flex: 0 0 auto; +.btn:hover, .btn:focus, .btn.focus { + color: #333; + text-decoration: none; } - -.grid-x > .auto { - width: auto; +.btn:active, .btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } -.grid-x > .shrink { - width: auto; +.btn.disabled, .btn[disabled], fieldset[disabled] .btn { + cursor: not-allowed; + filter: alpha(opacity=65); + opacity: 0.65; + -webkit-box-shadow: none; + box-shadow: none; } -.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { - flex-basis: auto; +a.btn.disabled, fieldset[disabled] a.btn { + pointer-events: none; } -@media print, screen and (min-width: 40em) { - .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { - flex-basis: auto; - } +.btn-default { + color: #333; + background-color: #fff; + border-color: #ccc; } -@media print, screen and (min-width: 64em) { - .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { - flex-basis: auto; - } +.btn-default:focus, .btn-default.focus { + color: #333; + background-color: #e6e6e6; + border-color: #8c8c8c; } -.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 { - flex: 0 0 auto; +.btn-default:hover { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; } - -.grid-x > .small-1 { - width: 8.3333333333%; +.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { + color: #333; + background-color: #e6e6e6; + background-image: none; + border-color: #adadad; } - -.grid-x > .small-2 { - width: 16.6666666667%; +.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { + color: #333; + background-color: #d4d4d4; + border-color: #8c8c8c; } - -.grid-x > .small-3 { - width: 25%; +.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { + background-color: #fff; + border-color: #ccc; } - -.grid-x > .small-4 { - width: 33.3333333333%; +.btn-default .badge { + color: #fff; + background-color: #333; } -.grid-x > .small-5 { - width: 41.6666666667%; +.btn-primary { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4; } - -.grid-x > .small-6 { - width: 50%; +.btn-primary:focus, .btn-primary.focus { + color: #fff; + background-color: #286090; + border-color: #122b40; } - -.grid-x > .small-7 { - width: 58.3333333333%; +.btn-primary:hover { + color: #fff; + background-color: #286090; + border-color: #204d74; } - -.grid-x > .small-8 { - width: 66.6666666667%; +.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #286090; + background-image: none; + border-color: #204d74; } - -.grid-x > .small-9 { - width: 75%; +.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { + color: #fff; + background-color: #204d74; + border-color: #122b40; } - -.grid-x > .small-10 { - width: 83.3333333333%; +.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { + background-color: #337ab7; + border-color: #2e6da4; } - -.grid-x > .small-11 { - width: 91.6666666667%; +.btn-primary .badge { + color: #337ab7; + background-color: #fff; } -.grid-x > .small-12 { - width: 100%; +.btn-success { + color: #fff; + background-color: #5cb85c; + border-color: #4cae4c; } - -@media print, screen and (min-width: 40em) { - .grid-x > .medium-auto { - flex: 1 1 0; - width: auto; - } - - .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink { - flex: 0 0 auto; - } - - .grid-x > .medium-shrink { - width: auto; - } - - .grid-x > .medium-1 { - width: 8.3333333333%; - } - - .grid-x > .medium-2 { - width: 16.6666666667%; - } - - .grid-x > .medium-3 { - width: 25%; - } - - .grid-x > .medium-4 { - width: 33.3333333333%; - } - - .grid-x > .medium-5 { - width: 41.6666666667%; - } - - .grid-x > .medium-6 { - width: 50%; - } - - .grid-x > .medium-7 { - width: 58.3333333333%; - } - - .grid-x > .medium-8 { - width: 66.6666666667%; - } - - .grid-x > .medium-9 { - width: 75%; - } - - .grid-x > .medium-10 { - width: 83.3333333333%; - } - - .grid-x > .medium-11 { - width: 91.6666666667%; - } - - .grid-x > .medium-12 { - width: 100%; - } +.btn-success:focus, .btn-success.focus { + color: #fff; + background-color: #449d44; + border-color: #255625; } -@media print, screen and (min-width: 64em) { - .grid-x > .large-auto { - flex: 1 1 0; - width: auto; - } - - .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink { - flex: 0 0 auto; - } - - .grid-x > .large-shrink { - width: auto; - } - - .grid-x > .large-1 { - width: 8.3333333333%; - } - - .grid-x > .large-2 { - width: 16.6666666667%; - } - - .grid-x > .large-3 { - width: 25%; - } - - .grid-x > .large-4 { - width: 33.3333333333%; - } - - .grid-x > .large-5 { - width: 41.6666666667%; - } - - .grid-x > .large-6 { - width: 50%; - } - - .grid-x > .large-7 { - width: 58.3333333333%; - } - - .grid-x > .large-8 { - width: 66.6666666667%; - } - - .grid-x > .large-9 { - width: 75%; - } - - .grid-x > .large-10 { - width: 83.3333333333%; - } - - .grid-x > .large-11 { - width: 91.6666666667%; - } - - .grid-x > .large-12 { - width: 100%; - } +.btn-success:hover { + color: #fff; + background-color: #449d44; + border-color: #398439; } -.grid-margin-x:not(.grid-x) > .cell { - width: auto; +.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { + color: #fff; + background-color: #449d44; + background-image: none; + border-color: #398439; } - -.grid-margin-y:not(.grid-y) > .cell { - height: auto; +.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { + color: #fff; + background-color: #398439; + border-color: #255625; +} +.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #fff; } -.grid-margin-x { - margin-left: -0.625rem; - margin-right: -0.625rem; +.btn-info { + color: #fff; + background-color: #5bc0de; + border-color: #46b8da; } -@media print, screen and (min-width: 40em) { - .grid-margin-x { - margin-left: -0.9375rem; - margin-right: -0.9375rem; - } +.btn-info:focus, .btn-info.focus { + color: #fff; + background-color: #31b0d5; + border-color: #1b6d85; } -.grid-margin-x > .cell { - width: calc(100% - 1.25rem); - margin-left: 0.625rem; - margin-right: 0.625rem; +.btn-info:hover { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; } -@media print, screen and (min-width: 40em) { - .grid-margin-x > .cell { - width: calc(100% - 1.875rem); - margin-left: 0.9375rem; - margin-right: 0.9375rem; - } +.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { + color: #fff; + background-color: #31b0d5; + background-image: none; + border-color: #269abc; } -.grid-margin-x > .auto { - width: auto; +.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { + color: #fff; + background-color: #269abc; + border-color: #1b6d85; } -.grid-margin-x > .shrink { - width: auto; +.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus { + background-color: #5bc0de; + border-color: #46b8da; } -.grid-margin-x > .small-1 { - width: calc(8.3333333333% - 1.25rem); +.btn-info .badge { + color: #5bc0de; + background-color: #fff; } -.grid-margin-x > .small-2 { - width: calc(16.6666666667% - 1.25rem); + +.btn-warning { + color: #fff; + background-color: #f0ad4e; + border-color: #eea236; } -.grid-margin-x > .small-3 { - width: calc(25% - 1.25rem); +.btn-warning:focus, .btn-warning.focus { + color: #fff; + background-color: #ec971f; + border-color: #985f0d; } -.grid-margin-x > .small-4 { - width: calc(33.3333333333% - 1.25rem); +.btn-warning:hover { + color: #fff; + background-color: #ec971f; + border-color: #d58512; } -.grid-margin-x > .small-5 { - width: calc(41.6666666667% - 1.25rem); +.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { + color: #fff; + background-color: #ec971f; + background-image: none; + border-color: #d58512; } -.grid-margin-x > .small-6 { - width: calc(50% - 1.25rem); +.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { + color: #fff; + background-color: #d58512; + border-color: #985f0d; } -.grid-margin-x > .small-7 { - width: calc(58.3333333333% - 1.25rem); +.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { + background-color: #f0ad4e; + border-color: #eea236; } -.grid-margin-x > .small-8 { - width: calc(66.6666666667% - 1.25rem); +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; } -.grid-margin-x > .small-9 { - width: calc(75% - 1.25rem); + +.btn-danger { + color: #fff; + background-color: #d9534f; + border-color: #d43f3a; } -.grid-margin-x > .small-10 { - width: calc(83.3333333333% - 1.25rem); +.btn-danger:focus, .btn-danger.focus { + color: #fff; + background-color: #c9302c; + border-color: #761c19; } -.grid-margin-x > .small-11 { - width: calc(91.6666666667% - 1.25rem); +.btn-danger:hover { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; } -.grid-margin-x > .small-12 { - width: calc(100% - 1.25rem); +.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #c9302c; + background-image: none; + border-color: #ac2925; } -@media print, screen and (min-width: 40em) { - .grid-margin-x > .auto { - width: auto; - } - .grid-margin-x > .shrink { - width: auto; - } - .grid-margin-x > .small-1 { - width: calc(8.3333333333% - 1.875rem); - } - .grid-margin-x > .small-2 { - width: calc(16.6666666667% - 1.875rem); - } - .grid-margin-x > .small-3 { - width: calc(25% - 1.875rem); - } - .grid-margin-x > .small-4 { - width: calc(33.3333333333% - 1.875rem); - } - .grid-margin-x > .small-5 { - width: calc(41.6666666667% - 1.875rem); - } - .grid-margin-x > .small-6 { - width: calc(50% - 1.875rem); - } - .grid-margin-x > .small-7 { - width: calc(58.3333333333% - 1.875rem); - } - .grid-margin-x > .small-8 { - width: calc(66.6666666667% - 1.875rem); - } - .grid-margin-x > .small-9 { - width: calc(75% - 1.875rem); - } - .grid-margin-x > .small-10 { - width: calc(83.3333333333% - 1.875rem); - } - .grid-margin-x > .small-11 { - width: calc(91.6666666667% - 1.875rem); - } - .grid-margin-x > .small-12 { - width: calc(100% - 1.875rem); - } - .grid-margin-x > .medium-auto { - width: auto; - } - .grid-margin-x > .medium-shrink { - width: auto; - } - .grid-margin-x > .medium-1 { - width: calc(8.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-2 { - width: calc(16.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-3 { - width: calc(25% - 1.875rem); - } - .grid-margin-x > .medium-4 { - width: calc(33.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-5 { - width: calc(41.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-6 { - width: calc(50% - 1.875rem); - } - .grid-margin-x > .medium-7 { - width: calc(58.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-8 { - width: calc(66.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-9 { - width: calc(75% - 1.875rem); - } - .grid-margin-x > .medium-10 { - width: calc(83.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-11 { - width: calc(91.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-12 { - width: calc(100% - 1.875rem); - } +.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { + color: #fff; + background-color: #ac2925; + border-color: #761c19; +} +.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { + background-color: #d9534f; + border-color: #d43f3a; } -@media print, screen and (min-width: 64em) { - .grid-margin-x > .large-auto { - width: auto; - } - .grid-margin-x > .large-shrink { - width: auto; - } - .grid-margin-x > .large-1 { - width: calc(8.3333333333% - 1.875rem); - } - .grid-margin-x > .large-2 { - width: calc(16.6666666667% - 1.875rem); - } - .grid-margin-x > .large-3 { - width: calc(25% - 1.875rem); - } - .grid-margin-x > .large-4 { - width: calc(33.3333333333% - 1.875rem); - } - .grid-margin-x > .large-5 { - width: calc(41.6666666667% - 1.875rem); - } - .grid-margin-x > .large-6 { - width: calc(50% - 1.875rem); - } - .grid-margin-x > .large-7 { - width: calc(58.3333333333% - 1.875rem); - } - .grid-margin-x > .large-8 { - width: calc(66.6666666667% - 1.875rem); - } - .grid-margin-x > .large-9 { - width: calc(75% - 1.875rem); - } - .grid-margin-x > .large-10 { - width: calc(83.3333333333% - 1.875rem); - } - .grid-margin-x > .large-11 { - width: calc(91.6666666667% - 1.875rem); - } - .grid-margin-x > .large-12 { - width: calc(100% - 1.875rem); - } +.btn-danger .badge { + color: #d9534f; + background-color: #fff; } -.grid-padding-x .grid-padding-x { - margin-right: -0.625rem; - margin-left: -0.625rem; +.btn-link { + font-weight: 400; + color: #337ab7; + border-radius: 0; } -@media print, screen and (min-width: 40em) { - .grid-padding-x .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; - } +.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; } -.grid-container:not(.full) > .grid-padding-x { - margin-right: -0.625rem; - margin-left: -0.625rem; +.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { + border-color: transparent; } -@media print, screen and (min-width: 40em) { - .grid-container:not(.full) > .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; - } +.btn-link:hover, .btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; } -.grid-padding-x > .cell { - padding-right: 0.625rem; - padding-left: 0.625rem; +.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { + color: #777777; + text-decoration: none; } -@media print, screen and (min-width: 40em) { - .grid-padding-x > .cell { - padding-right: 0.9375rem; - padding-left: 0.9375rem; - } + +.btn-lg, .btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; } -.small-up-1 > .cell { +.btn-sm, .btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-xs, .btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-block { + display: block; width: 100%; } -.small-up-2 > .cell { - width: 50%; +.btn-block + .btn-block { + margin-top: 5px; } -.small-up-3 > .cell { - width: 33.3333333333%; +input[type=submit].btn-block, +input[type=reset].btn-block, +input[type=button].btn-block { + width: 100%; } -.small-up-4 > .cell { - width: 25%; +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} +.fade.in { + opacity: 1; } -.small-up-5 > .cell { - width: 20%; +.collapse { + display: none; +} +.collapse.in { + display: block; } -.small-up-6 > .cell { - width: 16.6666666667%; +tr.collapse.in { + display: table-row; } -.small-up-7 > .cell { - width: 14.2857142857%; +tbody.collapse.in { + display: table-row-group; } -.small-up-8 > .cell { - width: 12.5%; +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-property: height, visibility; + transition-property: height, visibility; + -webkit-transition-duration: 0.35s; + transition-duration: 0.35s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease; } -@media print, screen and (min-width: 40em) { - .medium-up-1 > .cell { - width: 100%; - } +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-top: 4px solid \\\\9 ; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} - .medium-up-2 > .cell { - width: 50%; - } +.dropup, +.dropdown { + position: relative; +} - .medium-up-3 > .cell { - width: 33.3333333333%; - } +.dropdown-toggle:focus { + outline: 0; +} - .medium-up-4 > .cell { - width: 25%; - } +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: 400; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; +} - .medium-up-5 > .cell { - width: 20%; - } +.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0; +} - .medium-up-6 > .cell { - width: 16.6666666667%; - } +.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { + color: #777777; +} +.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} - .medium-up-7 > .cell { - width: 14.2857142857%; - } +.open > .dropdown-menu { + display: block; +} +.open > a { + outline: 0; +} - .medium-up-8 > .cell { - width: 12.5%; - } +.dropdown-menu-right { + right: 0; + left: auto; } -@media print, screen and (min-width: 64em) { - .large-up-1 > .cell { - width: 100%; - } - .large-up-2 > .cell { - width: 50%; - } +.dropdown-menu-left { + right: auto; + left: 0; +} - .large-up-3 > .cell { - width: 33.3333333333%; - } +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #777777; + white-space: nowrap; +} - .large-up-4 > .cell { - width: 25%; - } +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} - .large-up-5 > .cell { - width: 20%; - } +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} - .large-up-6 > .cell { - width: 16.6666666667%; - } +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + content: \\"\\"; + border-top: 0; + border-bottom: 4px dashed; + border-bottom: 4px solid \\\\9 ; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px; +} - .large-up-7 > .cell { - width: 14.2857142857%; +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; } - - .large-up-8 > .cell { - width: 12.5%; + .navbar-right .dropdown-menu-left { + left: 0; + right: auto; } } -.grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.25rem); +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:hover, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 2; } -.grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.25rem); +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; } -.grid-margin-x.small-up-3 > .cell { - width: calc(33.3333333333% - 1.25rem); +.btn-toolbar { + margin-left: -5px; +} +.btn-toolbar:before, .btn-toolbar:after { + display: table; + content: \\" \\"; +} +.btn-toolbar:after { + clear: both; +} +.btn-toolbar .btn, +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; } -.grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.25rem); +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; } -.grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.25rem); +.btn-group > .btn:first-child { + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } -.grid-margin-x.small-up-6 > .cell { - width: calc(16.6666666667% - 1.25rem); +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } -.grid-margin-x.small-up-7 > .cell { - width: calc(14.2857142857% - 1.25rem); +.btn-group > .btn-group { + float: left; } -.grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.25rem); +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; } -@media print, screen and (min-width: 40em) { - .grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.875rem); - } +.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} - .grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.875rem); - } +.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} - .grid-margin-x.small-up-3 > .cell { - width: calc(33.3333333333% - 1.875rem); - } +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} - .grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.875rem); - } +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} - .grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.875rem); - } +.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} - .grid-margin-x.small-up-6 > .cell { - width: calc(16.6666666667% - 1.875rem); - } +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} - .grid-margin-x.small-up-7 > .cell { - width: calc(14.2857142857% - 1.875rem); - } +.btn .caret { + margin-left: 0; +} - .grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.875rem); - } +.btn-lg .caret, .btn-group-lg > .btn .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} - .grid-margin-x.medium-up-1 > .cell { - width: calc(100% - 1.875rem); - } +.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { + border-width: 0 5px 5px; +} - .grid-margin-x.medium-up-2 > .cell { - width: calc(50% - 1.875rem); - } +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { + display: table; + content: \\" \\"; +} +.btn-group-vertical > .btn-group:after { + clear: both; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} - .grid-margin-x.medium-up-3 > .cell { - width: calc(33.3333333333% - 1.875rem); - } +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} - .grid-margin-x.medium-up-4 > .cell { - width: calc(25% - 1.875rem); - } +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} - .grid-margin-x.medium-up-5 > .cell { - width: calc(20% - 1.875rem); - } +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} - .grid-margin-x.medium-up-6 > .cell { - width: calc(16.6666666667% - 1.875rem); - } +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} - .grid-margin-x.medium-up-7 > .cell { - width: calc(14.2857142857% - 1.875rem); - } +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} - .grid-margin-x.medium-up-8 > .cell { - width: calc(12.5% - 1.875rem); - } +[data-toggle=buttons] > .btn input[type=radio], +[data-toggle=buttons] > .btn input[type=checkbox], +[data-toggle=buttons] > .btn-group > .btn input[type=radio], +[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } -@media print, screen and (min-width: 64em) { - .grid-margin-x.large-up-1 > .cell { - width: calc(100% - 1.875rem); - } - .grid-margin-x.large-up-2 > .cell { - width: calc(50% - 1.875rem); - } +.input-group { + position: relative; + display: table; + border-collapse: separate; +} +.input-group[class*=col-] { + float: none; + padding-right: 0; + padding-left: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group .form-control:focus { + z-index: 3; +} - .grid-margin-x.large-up-3 > .cell { - width: calc(33.3333333333% - 1.875rem); - } +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} - .grid-margin-x.large-up-4 > .cell { - width: calc(25% - 1.875rem); - } +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} - .grid-margin-x.large-up-5 > .cell { - width: calc(20% - 1.875rem); - } +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: 400; + line-height: 1; + color: #555555; + text-align: center; + background-color: #eeeeee; + border: 1px solid #ccc; + border-radius: 4px; +} +.input-group-addon.input-sm, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .input-group-addon.btn { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .input-group-addon.btn { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type=radio], +.input-group-addon input[type=checkbox] { + margin-top: 0; +} - .grid-margin-x.large-up-6 > .cell { - width: calc(16.6666666667% - 1.875rem); - } +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} - .grid-margin-x.large-up-7 > .cell { - width: calc(14.2857142857% - 1.875rem); - } +.input-group-addon:first-child { + border-right: 0; +} - .grid-margin-x.large-up-8 > .cell { - width: calc(12.5% - 1.875rem); - } +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } -.small-margin-collapse { - margin-right: 0; - margin-left: 0; + +.input-group-addon:last-child { + border-left: 0; } -.small-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; + +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; } -.small-margin-collapse > .small-1 { - width: 8.3333333333%; +.input-group-btn > .btn { + position: relative; } -.small-margin-collapse > .small-2 { - width: 16.6666666667%; +.input-group-btn > .btn + .btn { + margin-left: -1px; } -.small-margin-collapse > .small-3 { - width: 25%; +.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { + z-index: 2; } -.small-margin-collapse > .small-4 { - width: 33.3333333333%; +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; } -.small-margin-collapse > .small-5 { - width: 41.6666666667%; +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + z-index: 2; + margin-left: -1px; } -.small-margin-collapse > .small-6 { - width: 50%; + +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; } -.small-margin-collapse > .small-7 { - width: 58.3333333333%; +.nav:before, .nav:after { + display: table; + content: \\" \\"; } -.small-margin-collapse > .small-8 { - width: 66.6666666667%; +.nav:after { + clear: both; } -.small-margin-collapse > .small-9 { - width: 75%; +.nav > li { + position: relative; + display: block; } -.small-margin-collapse > .small-10 { - width: 83.3333333333%; +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; } -.small-margin-collapse > .small-11 { - width: 91.6666666667%; +.nav > li > a:hover, .nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; } -.small-margin-collapse > .small-12 { - width: 100%; +.nav > li.disabled > a { + color: #777777; } -@media print, screen and (min-width: 40em) { - .small-margin-collapse > .medium-1 { - width: 8.3333333333%; - } - .small-margin-collapse > .medium-2 { - width: 16.6666666667%; - } - .small-margin-collapse > .medium-3 { - width: 25%; - } - .small-margin-collapse > .medium-4 { - width: 33.3333333333%; - } - .small-margin-collapse > .medium-5 { - width: 41.6666666667%; - } - .small-margin-collapse > .medium-6 { - width: 50%; - } - .small-margin-collapse > .medium-7 { - width: 58.3333333333%; - } - .small-margin-collapse > .medium-8 { - width: 66.6666666667%; - } - .small-margin-collapse > .medium-9 { - width: 75%; - } - .small-margin-collapse > .medium-10 { - width: 83.3333333333%; - } - .small-margin-collapse > .medium-11 { - width: 91.6666666667%; - } - .small-margin-collapse > .medium-12 { - width: 100%; - } +.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { + color: #777777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; } -@media print, screen and (min-width: 64em) { - .small-margin-collapse > .large-1 { - width: 8.3333333333%; - } - .small-margin-collapse > .large-2 { - width: 16.6666666667%; - } - .small-margin-collapse > .large-3 { - width: 25%; - } - .small-margin-collapse > .large-4 { - width: 33.3333333333%; - } - .small-margin-collapse > .large-5 { - width: 41.6666666667%; - } - .small-margin-collapse > .large-6 { - width: 50%; - } - .small-margin-collapse > .large-7 { - width: 58.3333333333%; - } - .small-margin-collapse > .large-8 { - width: 66.6666666667%; - } - .small-margin-collapse > .large-9 { - width: 75%; - } - .small-margin-collapse > .large-10 { - width: 83.3333333333%; - } - .small-margin-collapse > .large-11 { - width: 91.6666666667%; - } - .small-margin-collapse > .large-12 { - width: 100%; - } +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { + background-color: #eeeeee; + border-color: #337ab7; } - -.small-padding-collapse { - margin-right: 0; - margin-left: 0; +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; } -.small-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; +.nav > li > a > img { + max-width: none; } -@media print, screen and (min-width: 40em) { - .medium-margin-collapse { - margin-right: 0; - margin-left: 0; - } - .medium-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; - } +.nav-tabs { + border-bottom: 1px solid #ddd; } -@media print, screen and (min-width: 40em) { - .medium-margin-collapse > .small-1 { - width: 8.3333333333%; - } - .medium-margin-collapse > .small-2 { - width: 16.6666666667%; - } - .medium-margin-collapse > .small-3 { - width: 25%; - } - .medium-margin-collapse > .small-4 { - width: 33.3333333333%; - } - .medium-margin-collapse > .small-5 { - width: 41.6666666667%; - } - .medium-margin-collapse > .small-6 { - width: 50%; - } - .medium-margin-collapse > .small-7 { - width: 58.3333333333%; - } - .medium-margin-collapse > .small-8 { - width: 66.6666666667%; - } - .medium-margin-collapse > .small-9 { - width: 75%; - } - .medium-margin-collapse > .small-10 { - width: 83.3333333333%; - } - .medium-margin-collapse > .small-11 { - width: 91.6666666667%; - } - .medium-margin-collapse > .small-12 { - width: 100%; - } +.nav-tabs > li { + float: left; + margin-bottom: -1px; } -@media print, screen and (min-width: 40em) { - .medium-margin-collapse > .medium-1 { - width: 8.3333333333%; - } - .medium-margin-collapse > .medium-2 { - width: 16.6666666667%; - } - .medium-margin-collapse > .medium-3 { - width: 25%; - } - .medium-margin-collapse > .medium-4 { - width: 33.3333333333%; - } - .medium-margin-collapse > .medium-5 { - width: 41.6666666667%; - } - .medium-margin-collapse > .medium-6 { - width: 50%; - } - .medium-margin-collapse > .medium-7 { - width: 58.3333333333%; - } - .medium-margin-collapse > .medium-8 { - width: 66.6666666667%; - } - .medium-margin-collapse > .medium-9 { - width: 75%; - } - .medium-margin-collapse > .medium-10 { - width: 83.3333333333%; - } - .medium-margin-collapse > .medium-11 { - width: 91.6666666667%; - } - .medium-margin-collapse > .medium-12 { - width: 100%; - } +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; } -@media print, screen and (min-width: 64em) { - .medium-margin-collapse > .large-1 { - width: 8.3333333333%; - } - .medium-margin-collapse > .large-2 { - width: 16.6666666667%; - } - .medium-margin-collapse > .large-3 { - width: 25%; - } - .medium-margin-collapse > .large-4 { - width: 33.3333333333%; - } - .medium-margin-collapse > .large-5 { - width: 41.6666666667%; - } - .medium-margin-collapse > .large-6 { - width: 50%; - } - .medium-margin-collapse > .large-7 { - width: 58.3333333333%; - } - .medium-margin-collapse > .large-8 { - width: 66.6666666667%; - } - .medium-margin-collapse > .large-9 { - width: 75%; - } - .medium-margin-collapse > .large-10 { - width: 83.3333333333%; - } - .medium-margin-collapse > .large-11 { - width: 91.6666666667%; - } - .medium-margin-collapse > .large-12 { - width: 100%; - } +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #ddd; +} +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { + color: #555555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} +.nav-pills > li { + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { + color: #fff; + background-color: #337ab7; } -@media print, screen and (min-width: 40em) { - .medium-padding-collapse { - margin-right: 0; - margin-left: 0; - } - .medium-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; - } +.nav-stacked > li { + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse { - margin-right: 0; - margin-left: 0; - } - .large-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; - } +.nav-justified, .nav-tabs.nav-justified { + width: 100%; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse > .small-1 { - width: 8.3333333333%; - } - .large-margin-collapse > .small-2 { - width: 16.6666666667%; - } - .large-margin-collapse > .small-3 { - width: 25%; - } - .large-margin-collapse > .small-4 { - width: 33.3333333333%; - } - .large-margin-collapse > .small-5 { - width: 41.6666666667%; - } - .large-margin-collapse > .small-6 { - width: 50%; - } - .large-margin-collapse > .small-7 { - width: 58.3333333333%; - } - .large-margin-collapse > .small-8 { - width: 66.6666666667%; - } - .large-margin-collapse > .small-9 { - width: 75%; - } - .large-margin-collapse > .small-10 { - width: 83.3333333333%; - } - .large-margin-collapse > .small-11 { - width: 91.6666666667%; - } - .large-margin-collapse > .small-12 { - width: 100%; - } +.nav-justified > li, .nav-tabs.nav-justified > li { + float: none; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse > .medium-1 { - width: 8.3333333333%; - } - .large-margin-collapse > .medium-2 { - width: 16.6666666667%; - } - .large-margin-collapse > .medium-3 { - width: 25%; - } - .large-margin-collapse > .medium-4 { - width: 33.3333333333%; - } - .large-margin-collapse > .medium-5 { - width: 41.6666666667%; - } - .large-margin-collapse > .medium-6 { - width: 50%; - } - .large-margin-collapse > .medium-7 { - width: 58.3333333333%; - } - .large-margin-collapse > .medium-8 { - width: 66.6666666667%; - } - .large-margin-collapse > .medium-9 { - width: 75%; - } - .large-margin-collapse > .medium-10 { - width: 83.3333333333%; - } - .large-margin-collapse > .medium-11 { - width: 91.6666666667%; - } - .large-margin-collapse > .medium-12 { - width: 100%; - } +.nav-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse > .large-1 { - width: 8.3333333333%; - } - .large-margin-collapse > .large-2 { - width: 16.6666666667%; - } - .large-margin-collapse > .large-3 { - width: 25%; - } - .large-margin-collapse > .large-4 { - width: 33.3333333333%; - } - .large-margin-collapse > .large-5 { - width: 41.6666666667%; - } - .large-margin-collapse > .large-6 { - width: 50%; - } - .large-margin-collapse > .large-7 { - width: 58.3333333333%; - } - .large-margin-collapse > .large-8 { - width: 66.6666666667%; - } - .large-margin-collapse > .large-9 { - width: 75%; - } - .large-margin-collapse > .large-10 { - width: 83.3333333333%; - } - .large-margin-collapse > .large-11 { - width: 91.6666666667%; +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-justified > li, .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; } - .large-margin-collapse > .large-12 { - width: 100%; + .nav-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-bottom: 0; } } -@media print, screen and (min-width: 64em) { - .large-padding-collapse { - margin-right: 0; - margin-left: 0; +.nav-tabs-justified, .nav-tabs.nav-justified { + border-bottom: 0; +} +.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; } - .large-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; + .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border-bottom-color: #fff; } } -.small-offset-0 { - margin-left: 0%; +.tab-content > .tab-pane { + display: none; } - -.grid-margin-x > .small-offset-0 { - margin-left: calc(0% + 1.25rem / 2); +.tab-content > .active { + display: block; } -.small-offset-1 { - margin-left: 8.3333333333%; +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } -.grid-margin-x > .small-offset-1 { - margin-left: calc(8.3333333333% + 1.25rem / 2); +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; } - -.small-offset-2 { - margin-left: 16.6666666667%; +.navbar:before, .navbar:after { + display: table; + content: \\" \\"; } - -.grid-margin-x > .small-offset-2 { - margin-left: calc(16.6666666667% + 1.25rem / 2); +.navbar:after { + clear: both; } - -.small-offset-3 { - margin-left: 25%; +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } } -.grid-margin-x > .small-offset-3 { - margin-left: calc(25% + 1.25rem / 2); +.navbar-header:before, .navbar-header:after { + display: table; + content: \\" \\"; } - -.small-offset-4 { - margin-left: 33.3333333333%; +.navbar-header:after { + clear: both; } - -.grid-margin-x > .small-offset-4 { - margin-left: calc(33.3333333333% + 1.25rem / 2); +@media (min-width: 768px) { + .navbar-header { + float: left; + } } -.small-offset-5 { - margin-left: 41.6666666667%; +.navbar-collapse { + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; } - -.grid-margin-x > .small-offset-5 { - margin-left: calc(41.6666666667% + 1.25rem / 2); +.navbar-collapse:before, .navbar-collapse:after { + display: table; + content: \\" \\"; } - -.small-offset-6 { - margin-left: 50%; +.navbar-collapse:after { + clear: both; } - -.grid-margin-x > .small-offset-6 { - margin-left: calc(50% + 1.25rem / 2); +.navbar-collapse.in { + overflow-y: auto; } - -.small-offset-7 { - margin-left: 58.3333333333%; +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } } -.grid-margin-x > .small-offset-7 { - margin-left: calc(58.3333333333% + 1.25rem / 2); +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; } - -.small-offset-8 { - margin-left: 66.6666666667%; +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; } - -.grid-margin-x > .small-offset-8 { - margin-left: calc(66.6666666667% + 1.25rem / 2); +@media (max-device-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } } - -.small-offset-9 { - margin-left: 75%; +@media (min-width: 768px) { + .navbar-fixed-top, +.navbar-fixed-bottom { + border-radius: 0; + } } -.grid-margin-x > .small-offset-9 { - margin-left: calc(75% + 1.25rem / 2); +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; } -.small-offset-10 { - margin-left: 83.3333333333%; +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; } -.grid-margin-x > .small-offset-10 { - margin-left: calc(83.3333333333% + 1.25rem / 2); +.container > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-header, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; } - -.small-offset-11 { - margin-left: 91.6666666667%; +@media (min-width: 768px) { + .container > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-header, +.container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } } -.grid-margin-x > .small-offset-11 { - margin-left: calc(91.6666666667% + 1.25rem / 2); +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; } - -@media print, screen and (min-width: 40em) { - .medium-offset-0 { - margin-left: 0%; - } - - .grid-margin-x > .medium-offset-0 { - margin-left: calc(0% + 1.875rem / 2); +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; } +} - .medium-offset-1 { - margin-left: 8.3333333333%; +.navbar-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} +.navbar-brand > img { + display: block; +} +@media (min-width: 768px) { + .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { + margin-left: -15px; } +} - .grid-margin-x > .medium-offset-1 { - margin-left: calc(8.3333333333% + 1.875rem / 2); +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-right: 15px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .navbar-toggle { + display: none; } +} - .medium-offset-2 { - margin-left: 16.6666666667%; +.navbar-nav { + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none; } - - .grid-margin-x > .medium-offset-2 { - margin-left: calc(16.6666666667% + 1.875rem / 2); + .navbar-nav .open .dropdown-menu > li > a, +.navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; } - - .medium-offset-3 { - margin-left: 25%; + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; } - - .grid-margin-x > .medium-offset-3 { - margin-left: calc(25% + 1.875rem / 2); + .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; } - - .medium-offset-4 { - margin-left: 33.3333333333%; +} +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; } - - .grid-margin-x > .medium-offset-4 { - margin-left: calc(33.3333333333% + 1.875rem / 2); + .navbar-nav > li { + float: left; } - - .medium-offset-5 { - margin-left: 41.6666666667%; + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; } +} - .grid-margin-x > .medium-offset-5 { - margin-left: calc(41.6666666667% + 1.875rem / 2); +.navbar-form { + padding: 10px 15px; + margin-right: -15px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px; +} +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; } - - .medium-offset-6 { - margin-left: 50%; + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; } - - .grid-margin-x > .medium-offset-6 { - margin-left: calc(50% + 1.875rem / 2); + .navbar-form .form-control-static { + display: inline-block; } - - .medium-offset-7 { - margin-left: 58.3333333333%; + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; } - - .grid-margin-x > .medium-offset-7 { - margin-left: calc(58.3333333333% + 1.875rem / 2); + .navbar-form .input-group .input-group-addon, +.navbar-form .input-group .input-group-btn, +.navbar-form .input-group .form-control { + width: auto; } - - .medium-offset-8 { - margin-left: 66.6666666667%; + .navbar-form .input-group > .form-control { + width: 100%; } - - .grid-margin-x > .medium-offset-8 { - margin-left: calc(66.6666666667% + 1.875rem / 2); + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; } - - .medium-offset-9 { - margin-left: 75%; + .navbar-form .radio, +.navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; } - - .grid-margin-x > .medium-offset-9 { - margin-left: calc(75% + 1.875rem / 2); + .navbar-form .radio label, +.navbar-form .checkbox label { + padding-left: 0; } - - .medium-offset-10 { - margin-left: 83.3333333333%; + .navbar-form .radio input[type=radio], +.navbar-form .checkbox input[type=checkbox] { + position: relative; + margin-left: 0; } - - .grid-margin-x > .medium-offset-10 { - margin-left: calc(83.3333333333% + 1.875rem / 2); + .navbar-form .has-feedback .form-control-feedback { + top: 0; } - - .medium-offset-11 { - margin-left: 91.6666666667%; +} +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; } - - .grid-margin-x > .medium-offset-11 { - margin-left: calc(91.6666666667% + 1.875rem / 2); + .navbar-form .form-group:last-child { + margin-bottom: 0; } } -@media print, screen and (min-width: 64em) { - .large-offset-0 { - margin-left: 0%; +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; } +} - .grid-margin-x > .large-offset-0 { - margin-left: calc(0% + 1.875rem / 2); - } +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; +} - .large-offset-1 { - margin-left: 8.3333333333%; - } +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + margin-bottom: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} - .grid-margin-x > .large-offset-1 { - margin-left: calc(8.3333333333% + 1.875rem / 2); - } +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { + margin-top: 14px; + margin-bottom: 14px; +} - .large-offset-2 { - margin-left: 16.6666666667%; +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; } +} - .grid-margin-x > .large-offset-2 { - margin-left: calc(16.6666666667% + 1.875rem / 2); +@media (min-width: 768px) { + .navbar-left { + float: left !important; } - .large-offset-3 { - margin-left: 25%; + .navbar-right { + float: right !important; + margin-right: -15px; } - - .grid-margin-x > .large-offset-3 { - margin-left: calc(25% + 1.875rem / 2); + .navbar-right ~ .navbar-right { + margin-right: 0; } - - .large-offset-4 { - margin-left: 33.3333333333%; +} +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777; +} +.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777; +} +.navbar-default .navbar-nav > li > a { + color: #777; +} +.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { + color: #333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; +} +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; +} +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777; } - - .grid-margin-x > .large-offset-4 { - margin-left: calc(33.3333333333% + 1.875rem / 2); + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333; + background-color: transparent; } - - .large-offset-5 { - margin-left: 41.6666666667%; + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555; + background-color: #e7e7e7; } - - .grid-margin-x > .large-offset-5 { - margin-left: calc(41.6666666667% + 1.875rem / 2); + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #ccc; + background-color: transparent; } +} +.navbar-default .navbar-toggle { + border-color: #ddd; +} +.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background-color: #ddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-link { + color: #777; +} +.navbar-default .navbar-link:hover { + color: #333; +} +.navbar-default .btn-link { + color: #777; +} +.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { + color: #333; +} +.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc; +} - .large-offset-6 { - margin-left: 50%; +.navbar-inverse { + background-color: #222; + border-color: #090909; +} +.navbar-inverse .navbar-brand { + color: #9d9d9d; +} +.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { + color: #fff; + background-color: #090909; +} +.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { + color: #fff; + background-color: #090909; +} +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #090909; } - - .grid-margin-x > .large-offset-6 { - margin-left: calc(50% + 1.875rem / 2); + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #090909; } - - .large-offset-7 { - margin-left: 58.3333333333%; + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; } - - .grid-margin-x > .large-offset-7 { - margin-left: calc(58.3333333333% + 1.875rem / 2); + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #fff; + background-color: transparent; } - - .large-offset-8 { - margin-left: 66.6666666667%; + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-color: #090909; } - - .grid-margin-x > .large-offset-8 { - margin-left: calc(66.6666666667% + 1.875rem / 2); + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444; + background-color: transparent; } +} +.navbar-inverse .navbar-toggle { + border-color: #333; +} +.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { + background-color: #333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-link { + color: #9d9d9d; +} +.navbar-inverse .navbar-link:hover { + color: #fff; +} +.navbar-inverse .btn-link { + color: #9d9d9d; +} +.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { + color: #fff; +} +.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444; +} - .large-offset-9 { - margin-left: 75%; - } +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: \\"/ \\"; +} +.breadcrumb > .active { + color: #777777; +} - .grid-margin-x > .large-offset-9 { - margin-left: calc(75% + 1.875rem / 2); - } +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.428571429; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd; +} +.pagination > li > a:hover, .pagination > li > a:focus, +.pagination > li > span:hover, +.pagination > li > span:focus { + z-index: 2; + color: #23527c; + background-color: #eeeeee; + border-color: #ddd; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, +.pagination > .active > span, +.pagination > .active > span:hover, +.pagination > .active > span:focus { + z-index: 3; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777777; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd; +} - .large-offset-10 { - margin-left: 83.3333333333%; - } +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} - .grid-margin-x > .large-offset-10 { - margin-left: calc(83.3333333333% + 1.875rem / 2); - } +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; +} +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} - .large-offset-11 { - margin-left: 91.6666666667%; - } +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} +.pager:before, .pager:after { + display: table; + content: \\" \\"; +} +.pager:after { + clear: both; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777777; + cursor: not-allowed; + background-color: #fff; +} - .grid-margin-x > .large-offset-11 { - margin-left: calc(91.6666666667% + 1.875rem / 2); - } +.label { + display: inline; + padding: 0.2em 0.6em 0.3em; + font-size: 75%; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25em; } -.grid-y { - display: flex; - flex-flow: column nowrap; +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} + +a.label:hover, a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} + +.label-default { + background-color: #777777; +} +.label-default[href]:hover, .label-default[href]:focus { + background-color: #5e5e5e; +} + +.label-primary { + background-color: #337ab7; +} +.label-primary[href]:hover, .label-primary[href]:focus { + background-color: #286090; +} + +.label-success { + background-color: #5cb85c; +} +.label-success[href]:hover, .label-success[href]:focus { + background-color: #449d44; +} + +.label-info { + background-color: #5bc0de; } -.grid-y > .cell { - height: auto; - max-height: none; +.label-info[href]:hover, .label-info[href]:focus { + background-color: #31b0d5; } -.grid-y > .auto { - height: auto; + +.label-warning { + background-color: #f0ad4e; } -.grid-y > .shrink { - height: auto; +.label-warning[href]:hover, .label-warning[href]:focus { + background-color: #ec971f; } -.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { - flex-basis: auto; + +.label-danger { + background-color: #d9534f; } -@media print, screen and (min-width: 40em) { - .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { - flex-basis: auto; - } +.label-danger[href]:hover, .label-danger[href]:focus { + background-color: #c9302c; } -@media print, screen and (min-width: 64em) { - .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { - flex-basis: auto; - } + +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: middle; + background-color: #777777; + border-radius: 10px; } -.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 { - flex: 0 0 auto; +.badge:empty { + display: none; } -.grid-y > .small-1 { - height: 8.3333333333%; +.btn .badge { + position: relative; + top: -1px; } -.grid-y > .small-2 { - height: 16.6666666667%; +.btn-xs .badge, .btn-group-xs > .btn .badge { + top: 0; + padding: 1px 5px; } -.grid-y > .small-3 { - height: 25%; +.list-group-item.active > .badge, .nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #fff; } -.grid-y > .small-4 { - height: 33.3333333333%; +.list-group-item > .badge { + float: right; } -.grid-y > .small-5 { - height: 41.6666666667%; +.list-group-item > .badge + .badge { + margin-right: 5px; } -.grid-y > .small-6 { - height: 50%; +.nav-pills > li > a > .badge { + margin-left: 3px; } -.grid-y > .small-7 { - height: 58.3333333333%; + +a.badge:hover, a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer; } -.grid-y > .small-8 { - height: 66.6666666667%; + +.jumbotron { + padding-top: 30px; + padding-bottom: 30px; + margin-bottom: 30px; + color: inherit; + background-color: #eeeeee; } -.grid-y > .small-9 { - height: 75%; +.jumbotron h1, +.jumbotron .h1 { + color: inherit; } -.grid-y > .small-10 { - height: 83.3333333333%; +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; } -.grid-y > .small-11 { - height: 91.6666666667%; +.jumbotron > hr { + border-top-color: #d5d5d5; } -.grid-y > .small-12 { - height: 100%; +.container .jumbotron, .container-fluid .jumbotron { + padding-right: 15px; + padding-left: 15px; + border-radius: 6px; } -@media print, screen and (min-width: 40em) { - .grid-y > .medium-auto { - flex: 1 1 0; - height: auto; - } - .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink { - flex: 0 0 auto; - } - .grid-y > .medium-shrink { - height: auto; - } - .grid-y > .medium-1 { - height: 8.3333333333%; - } - .grid-y > .medium-2 { - height: 16.6666666667%; - } - .grid-y > .medium-3 { - height: 25%; - } - .grid-y > .medium-4 { - height: 33.3333333333%; - } - .grid-y > .medium-5 { - height: 41.6666666667%; - } - .grid-y > .medium-6 { - height: 50%; - } - .grid-y > .medium-7 { - height: 58.3333333333%; - } - .grid-y > .medium-8 { - height: 66.6666666667%; - } - .grid-y > .medium-9 { - height: 75%; - } - .grid-y > .medium-10 { - height: 83.3333333333%; - } - .grid-y > .medium-11 { - height: 91.6666666667%; - } - .grid-y > .medium-12 { - height: 100%; - } +.jumbotron .container { + max-width: 100%; } -@media print, screen and (min-width: 64em) { - .grid-y > .large-auto { - flex: 1 1 0; - height: auto; - } - .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink { - flex: 0 0 auto; - } - .grid-y > .large-shrink { - height: auto; - } - .grid-y > .large-1 { - height: 8.3333333333%; - } - .grid-y > .large-2 { - height: 16.6666666667%; - } - .grid-y > .large-3 { - height: 25%; - } - .grid-y > .large-4 { - height: 33.3333333333%; - } - .grid-y > .large-5 { - height: 41.6666666667%; - } - .grid-y > .large-6 { - height: 50%; - } - .grid-y > .large-7 { - height: 58.3333333333%; - } - .grid-y > .large-8 { - height: 66.6666666667%; - } - .grid-y > .large-9 { - height: 75%; - } - .grid-y > .large-10 { - height: 83.3333333333%; +@media screen and (min-width: 768px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; } - .grid-y > .large-11 { - height: 91.6666666667%; + .container .jumbotron, .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px; } - .grid-y > .large-12 { - height: 100%; + .jumbotron h1, +.jumbotron .h1 { + font-size: 63px; } } -.grid-padding-y .grid-padding-y { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.428571429; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: border 0.2s ease-in-out; + -o-transition: border 0.2s ease-in-out; + transition: border 0.2s ease-in-out; } -@media print, screen and (min-width: 40em) { - .grid-padding-y .grid-padding-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; - } +.thumbnail > img, +.thumbnail a > img { + display: block; + max-width: 100%; + height: auto; + margin-right: auto; + margin-left: auto; } -.grid-padding-y > .cell { - padding-top: 0.625rem; - padding-bottom: 0.625rem; +.thumbnail .caption { + padding: 9px; + color: #333333; } -@media print, screen and (min-width: 40em) { - .grid-padding-y > .cell { - padding-top: 0.9375rem; - padding-bottom: 0.9375rem; - } + +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #337ab7; } -.grid-margin-y { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; } -@media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; - } +.alert h4 { + margin-top: 0; + color: inherit; } -.grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; +.alert .alert-link { + font-weight: bold; } -@media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; - } +.alert > p, +.alert > ul { + margin-bottom: 0; } -.grid-margin-y > .auto { - height: auto; +.alert > p + p { + margin-top: 5px; } -.grid-margin-y > .shrink { - height: auto; + +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; } -.grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.25rem); +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; } -.grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.25rem); + +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; } -.grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); +.alert-success hr { + border-top-color: #c9e2b3; } -.grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.25rem); +.alert-success .alert-link { + color: #2b542c; } -.grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.25rem); + +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; } -.grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); +.alert-info hr { + border-top-color: #a6e1ec; } -.grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.25rem); +.alert-info .alert-link { + color: #245269; } -.grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.25rem); + +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; } -.grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); +.alert-warning hr { + border-top-color: #f7e1b5; } -.grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.25rem); +.alert-warning .alert-link { + color: #66512c; } -.grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.25rem); + +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; } -.grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); +.alert-danger hr { + border-top-color: #e4b9c0; } -@media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; - } - .grid-margin-y > .shrink { - height: auto; - } - .grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); - } - .grid-margin-y > .medium-auto { - height: auto; - } - .grid-margin-y > .medium-shrink { - height: auto; - } - .grid-margin-y > .medium-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .medium-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .medium-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .medium-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); - } +.alert-danger .alert-link { + color: #843534; } -@media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; - } - .grid-margin-y > .large-shrink { - height: auto; - } - .grid-margin-y > .large-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .large-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .large-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .large-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .large-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .large-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; } - .grid-margin-y > .large-10 { - height: calc(83.3333333333% - 1.875rem); + to { + background-position: 0 0; } - .grid-margin-y > .large-11 { - height: calc(91.6666666667% - 1.875rem); +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); + to { + background-position: 0 0; } } - -.grid-frame { +.progress { + height: 20px; + margin-bottom: 20px; overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - width: 100vw; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } -.cell .grid-frame { - width: 100%; +.progress-bar { + float: left; + width: 0%; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; } -.cell-block { - overflow-x: auto; - max-width: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; } -.cell-block-y { - overflow-y: auto; - max-height: 100%; - min-height: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; +.progress.active .progress-bar, +.progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; } -.cell-block-container { - display: flex; - flex-direction: column; - max-height: 100%; +.progress-bar-success { + background-color: #5cb85c; } -.cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } -@media print, screen and (min-width: 40em) { - .medium-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - width: 100vw; - } +.progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} - .cell .medium-grid-frame { - width: 100%; - } +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} - .medium-cell-block { - overflow-x: auto; - max-width: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } +.progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} - .medium-cell-block-container { - display: flex; - flex-direction: column; - max-height: 100%; - } - .medium-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; - } +.media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} - .medium-cell-block-y { - overflow-y: auto; - max-height: 100%; - min-height: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } +.media, +.media-body { + overflow: hidden; + zoom: 1; } -@media print, screen and (min-width: 64em) { - .large-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - width: 100vw; - } - .cell .large-grid-frame { - width: 100%; - } +.media-body { + width: 10000px; +} - .large-cell-block { - overflow-x: auto; - max-width: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } +.media-object { + display: block; +} +.media-object.img-thumbnail { + max-width: none; +} - .large-cell-block-container { - display: flex; - flex-direction: column; - max-height: 100%; - } - .large-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; - } +.media-right, +.media > .pull-right { + padding-left: 10px; +} - .large-cell-block-y { - overflow-y: auto; - max-height: 100%; - min-height: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } +.media-left, +.media > .pull-left { + padding-right: 10px; } -.grid-y.grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - height: 100vh; - width: auto; + +.media-left, +.media-right, +.media-body { + display: table-cell; + vertical-align: top; } -@media print, screen and (min-width: 40em) { - .grid-y.medium-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - height: 100vh; - width: auto; - } + +.media-middle { + vertical-align: middle; } -@media print, screen and (min-width: 64em) { - .grid-y.large-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - height: 100vh; - width: auto; - } + +.media-bottom { + vertical-align: bottom; } -.cell .grid-y.grid-frame { - height: 100%; +.media-heading { + margin-top: 0; + margin-bottom: 5px; } -@media print, screen and (min-width: 40em) { - .cell .grid-y.medium-grid-frame { - height: 100%; - } + +.media-list { + padding-left: 0; + list-style: none; } -@media print, screen and (min-width: 64em) { - .cell .grid-y.large-grid-frame { - height: 100%; - } + +.list-group { + padding-left: 0; + margin-bottom: 20px; } -.grid-margin-y { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd; } -@media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; - } +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; } -.grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; } -@media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; - } +.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { + color: #777777; + cursor: not-allowed; + background-color: #eeeeee; } -.grid-margin-y > .auto { - height: auto; +.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { + color: inherit; } -.grid-margin-y > .shrink { - height: auto; +.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { + color: #777777; } -.grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.25rem); +.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7; } -.grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.25rem); +.list-group-item.active .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; } -.grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); +.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { + color: #c7ddef; } -.grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.25rem); + +a.list-group-item, +button.list-group-item { + color: #555; } -.grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.25rem); +a.list-group-item .list-group-item-heading, +button.list-group-item .list-group-item-heading { + color: #333; } -.grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); +a.list-group-item:hover, a.list-group-item:focus, +button.list-group-item:hover, +button.list-group-item:focus { + color: #555; + text-decoration: none; + background-color: #f5f5f5; } -.grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.25rem); + +button.list-group-item { + width: 100%; + text-align: left; } -.grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.25rem); + +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; } -.grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); + +a.list-group-item-success, +button.list-group-item-success { + color: #3c763d; } -.grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.25rem); +a.list-group-item-success .list-group-item-heading, +button.list-group-item-success .list-group-item-heading { + color: inherit; } -.grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.25rem); +a.list-group-item-success:hover, a.list-group-item-success:focus, +button.list-group-item-success:hover, +button.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; } -.grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); +a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, +button.list-group-item-success.active, +button.list-group-item-success.active:hover, +button.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; } -@media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; - } - .grid-margin-y > .shrink { - height: auto; - } - .grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); - } - .grid-margin-y > .medium-auto { - height: auto; - } - .grid-margin-y > .medium-shrink { - height: auto; - } - .grid-margin-y > .medium-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .medium-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .medium-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .medium-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); - } + +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; } -@media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; - } - .grid-margin-y > .large-shrink { - height: auto; - } - .grid-margin-y > .large-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .large-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .large-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .large-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .large-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .large-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .large-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .large-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); - } + +a.list-group-item-info, +button.list-group-item-info { + color: #31708f; +} +a.list-group-item-info .list-group-item-heading, +button.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, a.list-group-item-info:focus, +button.list-group-item-info:hover, +button.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, +button.list-group-item-info.active, +button.list-group-item-info.active:hover, +button.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} + +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; +} + +a.list-group-item-warning, +button.list-group-item-warning { + color: #8a6d3b; } - -.grid-frame.grid-margin-y { - height: calc(100vh + 1.25rem); +a.list-group-item-warning .list-group-item-heading, +button.list-group-item-warning .list-group-item-heading { + color: inherit; } -@media print, screen and (min-width: 40em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); - } +a.list-group-item-warning:hover, a.list-group-item-warning:focus, +button.list-group-item-warning:hover, +button.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; } -@media print, screen and (min-width: 64em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); - } +a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, +button.list-group-item-warning.active, +button.list-group-item-warning.active:hover, +button.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; } -@media print, screen and (min-width: 40em) { - .grid-margin-y.medium-grid-frame { - height: calc(100vh + 1.875rem); - } +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; } -@media print, screen and (min-width: 64em) { - .grid-margin-y.large-grid-frame { - height: calc(100vh + 1.875rem); - } + +a.list-group-item-danger, +button.list-group-item-danger { + color: #a94442; } -.button { - display: inline-block; - vertical-align: middle; - margin: 0 0 1rem 0; - padding: 0.85em 1em; - border: 1px solid transparent; - border-radius: 0; - transition: background-color 0.25s ease-out, color 0.25s ease-out; - font-family: inherit; - font-size: 0.9rem; - -webkit-appearance: none; - line-height: 1; - text-align: center; - cursor: pointer; +a.list-group-item-danger .list-group-item-heading, +button.list-group-item-danger .list-group-item-heading { + color: inherit; } -[data-whatinput=mouse] .button { - outline: 0; +a.list-group-item-danger:hover, a.list-group-item-danger:focus, +button.list-group-item-danger:hover, +button.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; } -.button.tiny { - font-size: 0.6rem; +a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, +button.list-group-item-danger.active, +button.list-group-item-danger.active:hover, +button.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; } -.button.small { - font-size: 0.75rem; + +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; } -.button.large { - font-size: 1.25rem; + +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; } -.button.expanded { - display: block; - width: 100%; - margin-right: 0; - margin-left: 0; + +.panel { + margin-bottom: 20px; + background-color: #fff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } -.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; + +.panel-body { + padding: 15px; } -.button:hover, .button:focus { - background-color: #14679e; - color: #fefefe; +.panel-body:before, .panel-body:after { + display: table; + content: \\" \\"; } -.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus { - background-color: #1779ba; - color: #fefefe; +.panel-body:after { + clear: both; } -.button.primary:hover, .button.primary:focus { - background-color: #126195; - color: #fefefe; + +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus { - background-color: #767676; - color: #fefefe; +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; } -.button.secondary:hover, .button.secondary:focus { - background-color: #5e5e5e; - color: #fefefe; + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; } -.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; } -.button.success:hover, .button.success:focus { - background-color: #22bb5b; - color: #0a0a0a; + +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } -.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; + +.panel > .list-group, +.panel > .panel-collapse > .list-group { + margin-bottom: 0; } -.button.warning:hover, .button.warning:focus { - background-color: #cc8b00; - color: #0a0a0a; +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; } -.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -.button.alert:hover, .button.alert:focus { - background-color: #a53b2a; - color: #fefefe; +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } -.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus { - background-color: transparent; +.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; } -.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; + +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; } -.button.hollow:hover, .button.hollow:focus { - border-color: #0c3d5d; - color: #0c3d5d; + +.list-group + .panel-footer { + border-top-width: 0; } -.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; + +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; } -.button.hollow.primary:hover, .button.hollow.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; } -.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -.button.hollow.secondary:hover, .button.hollow.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; } -.button.hollow.success:hover, .button.hollow.success:focus { - border-color: #157539; - color: #157539; +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; } -.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } -.button.hollow.warning:hover, .button.hollow.warning:focus { - border-color: #805700; - color: #805700; +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } -.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; } -.button.hollow.alert:hover, .button.hollow.alert:focus { - border-color: #67251a; - color: #67251a; +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; } -.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus { - border-color: transparent; - background-color: transparent; +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { + border-top: 1px solid #ddd; } -.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus { - color: #1779ba; +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; } -.button.clear:hover, .button.clear:focus { - color: #0c3d5d; +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; } -.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus { - color: #1779ba; +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; } -.button.clear.primary:hover, .button.clear.primary:focus { - color: #0c3d5d; +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; } -.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus { - color: #767676; +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; } -.button.clear.secondary:hover, .button.clear.secondary:focus { - color: #3b3b3b; +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; } -.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus { - color: #3adb76; +.panel > .table-responsive { + margin-bottom: 0; + border: 0; } -.button.clear.success:hover, .button.clear.success:focus { - color: #157539; + +.panel-group { + margin-bottom: 20px; } -.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus { - color: #ffae00; +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; } -.button.clear.warning:hover, .button.clear.warning:focus { - color: #805700; +.panel-group .panel + .panel { + margin-top: 5px; } -.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus { - color: #cc4b37; +.panel-group .panel-heading { + border-bottom: 0; } -.button.clear.alert:hover, .button.clear.alert:focus { - color: #67251a; +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #ddd; } -.button.disabled, .button[disabled] { - opacity: 0.25; - cursor: not-allowed; +.panel-group .panel-footer { + border-top: 0; } -.button.dropdown::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.4em; - content: \\"\\"; - border-bottom-width: 0; - border-color: #fefefe transparent transparent; - position: relative; - top: 0.4em; - display: inline-block; - float: right; - margin-left: 1em; +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; } -.button.dropdown.hollow::after, .button.dropdown.clear::after { - border-top-color: #1779ba; + +.panel-default { + border-color: #ddd; } -.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after { - border-top-color: #1779ba; +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #ddd; } -.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after { - border-top-color: #767676; +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; } -.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after { - border-top-color: #3adb76; +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333333; } -.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after { - border-top-color: #ffae00; +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; } -.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after { - border-top-color: #cc4b37; + +.panel-primary { + border-color: #337ab7; } -.button.arrow-only::after { - top: -0.1em; - float: none; - margin-left: 0; +.panel-primary > .panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7; } - -a.button:hover, a.button:focus { - text-decoration: none; +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; +} +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #fff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; } -.button-group { - margin-bottom: 1rem; - display: flex; - flex-wrap: wrap; - align-items: stretch; - flex-grow: 1; +.panel-success { + border-color: #d6e9c6; } -.button-group::before, .button-group::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; } -.button-group::after { - clear: both; +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; } -.button-group::before, .button-group::after { - display: none; +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; } -.button-group .button { - margin: 0; - margin-right: 1px; - margin-bottom: 1px; - font-size: 0.9rem; - flex: 0 0 auto; +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; } -.button-group .button:last-child { - margin-right: 0; + +.panel-info { + border-color: #bce8f1; } -.button-group.tiny .button { - font-size: 0.6rem; +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; } -.button-group.small .button { - font-size: 0.75rem; +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; } -.button-group.large .button { - font-size: 1.25rem; +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; } -.button-group.expanded .button { - flex: 1 1 0px; +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; } -.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; + +.panel-warning { + border-color: #faebcc; } -.button-group.primary .button:hover, .button-group.primary .button:focus { - background-color: #126195; - color: #fefefe; +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; } -.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus { - background-color: #767676; - color: #fefefe; +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; } -.button-group.secondary .button:hover, .button-group.secondary .button:focus { - background-color: #5e5e5e; - color: #fefefe; +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; } -.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; } -.button-group.success .button:hover, .button-group.success .button:focus { - background-color: #22bb5b; - color: #0a0a0a; + +.panel-danger { + border-color: #ebccd1; } -.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; } -.button-group.warning .button:hover, .button-group.warning .button:focus { - background-color: #cc8b00; - color: #0a0a0a; +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; } -.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; } -.button-group.alert .button:hover, .button-group.alert .button:focus { - background-color: #a53b2a; - color: #fefefe; +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; } -.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus { - background-color: transparent; + +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; } -.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; } -.button-group.hollow .button:hover, .button-group.hollow .button:focus { - border-color: #0c3d5d; - color: #0c3d5d; + +.embed-responsive-16by9 { + padding-bottom: 56.25%; } -.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; + +.embed-responsive-4by3 { + padding-bottom: 75%; } -.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } -.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); } -.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; + +.well-lg { + padding: 24px; + border-radius: 6px; } -.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; + +.well-sm { + padding: 9px; + border-radius: 3px; } -.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus { - border-color: #157539; - color: #157539; + +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + filter: alpha(opacity=20); + opacity: 0.2; } -.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; +.close:hover, .close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: 0.5; } -.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus { - border-color: #805700; - color: #805700; + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; + appearance: none; } -.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; + +.modal-open { + overflow: hidden; } -.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus { - border-color: #67251a; - color: #67251a; + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0; } -.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus { - border-color: transparent; - background-color: transparent; +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; } -.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus { - color: #1779ba; +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); } -.button-group.clear .button:hover, .button-group.clear .button:focus { - color: #0c3d5d; + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } -.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus { - color: #1779ba; + +.modal-dialog { + position: relative; + width: auto; + margin: 10px; } -.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus { - color: #0c3d5d; + +.modal-content { + position: relative; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + outline: 0; } -.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus { - color: #767676; + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; } -.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus { - color: #3b3b3b; +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0; } -.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus { - color: #3adb76; +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: 0.5; } -.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus { - color: #157539; + +.modal-header { + padding: 15px; + border-bottom: 1px solid #e5e5e5; } -.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus { - color: #ffae00; +.modal-header:before, .modal-header:after { + display: table; + content: \\" \\"; } -.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus { - color: #805700; +.modal-header:after { + clear: both; } -.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus { - color: #cc4b37; + +.modal-header .close { + margin-top: -2px; } -.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus { - color: #67251a; + +.modal-title { + margin: 0; + line-height: 1.428571429; } -.button-group.no-gaps .button { - margin-right: -0.0625rem; + +.modal-body { + position: relative; + padding: 15px; } -.button-group.no-gaps .button + .button { - border-left-color: transparent; + +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; } -.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium { - flex-wrap: wrap; +.modal-footer:before, .modal-footer:after { + display: table; + content: \\" \\"; } -.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { - flex: 0 0 100%; +.modal-footer:after { + clear: both; } -.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { +.modal-footer .btn + .btn { margin-bottom: 0; + margin-left: 5px; } -.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button { - flex: 1 1 0px; +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; } -@media print, screen and (min-width: 40em) { - .button-group.stacked-for-small .button { - flex: 0 0 auto; - margin-bottom: 0; - } +.modal-footer .btn-block + .btn-block { + margin-left: 0; } -@media print, screen and (min-width: 64em) { - .button-group.stacked-for-medium .button { - flex: 0 0 auto; - margin-bottom: 0; - } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } -@media print, screen and (max-width: 39.99875em) { - .button-group.stacked-for-small.expanded { - display: block; + +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; } - .button-group.stacked-for-small.expanded .button { - display: block; - margin-right: 0; + + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } -} -@media print, screen and (max-width: 63.99875em) { - .button-group.stacked-for-medium.expanded { - display: block; + + .modal-sm { + width: 300px; } - .button-group.stacked-for-medium.expanded .button { - display: block; - margin-right: 0; +} +@media (min-width: 992px) { + .modal-lg { + width: 900px; } } +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.428571429; + line-break: auto; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + font-size: 12px; + filter: alpha(opacity=0); + opacity: 0; +} +.tooltip.in { + filter: alpha(opacity=90); + opacity: 0.9; +} +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} -.close-button { +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 4px; +} + +.tooltip-arrow { position: absolute; - z-index: 10; - color: #8a8a8a; - cursor: pointer; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } -[data-whatinput=mouse] .close-button { - outline: 0; + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.428571429; + line-break: auto; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + font-size: 14px; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } -.close-button:hover, .close-button:focus { - color: #0a0a0a; +.popover.top { + margin-top: -10px; } -.close-button.small { - right: 0.66rem; - top: 0.33em; - font-size: 1.5em; - line-height: 1; +.popover.right { + margin-left: 10px; } - -.close-button.medium, .close-button { - right: 1rem; - top: 0.5rem; - font-size: 2em; - line-height: 1; +.popover.bottom { + margin-top: 10px; } - -.label { - display: inline-block; - padding: 0.33333rem 0.5rem; - border-radius: 0; - font-size: 0.8rem; - line-height: 1; - white-space: nowrap; - cursor: default; - background: #1779ba; - color: #fefefe; +.popover.left { + margin-left: -10px; } -.label.primary { - background: #1779ba; - color: #fefefe; +.popover > .arrow { + border-width: 11px; } -.label.secondary { - background: #767676; - color: #fefefe; +.popover > .arrow, .popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } -.label.success { - background: #3adb76; - color: #0a0a0a; +.popover > .arrow:after { + content: \\"\\"; + border-width: 10px; } -.label.warning { - background: #ffae00; - color: #0a0a0a; +.popover.top > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; } -.label.alert { - background: #cc4b37; - color: #fefefe; +.popover.top > .arrow:after { + bottom: 1px; + margin-left: -10px; + content: \\" \\"; + border-top-color: #fff; + border-bottom-width: 0; } - -.progress { - height: 1rem; - margin-bottom: 1rem; - border-radius: 0; - background-color: #cacaca; +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; } -.progress.primary .progress-meter { - background-color: #1779ba; +.popover.right > .arrow:after { + bottom: -10px; + left: 1px; + content: \\" \\"; + border-right-color: #fff; + border-left-width: 0; } -.progress.secondary .progress-meter { - background-color: #767676; +.popover.bottom > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); } -.progress.success .progress-meter { - background-color: #3adb76; +.popover.bottom > .arrow:after { + top: 1px; + margin-left: -10px; + content: \\" \\"; + border-top-width: 0; + border-bottom-color: #fff; } -.progress.warning .progress-meter { - background-color: #ffae00; +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); } -.progress.alert .progress-meter { - background-color: #cc4b37; +.popover.left > .arrow:after { + right: 1px; + bottom: -10px; + content: \\" \\"; + border-right-width: 0; + border-left-color: #fff; } -.progress-meter { - position: relative; - display: block; - width: 0%; - height: 100%; - background-color: #1779ba; +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; } -.progress-meter-text { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - margin: 0; - font-size: 0.75rem; - font-weight: bold; - color: #fefefe; - white-space: nowrap; +.popover-content { + padding: 9px 14px; } -.slider { +.carousel { position: relative; - height: 0.5rem; - margin-top: 1.25rem; - margin-bottom: 2.25rem; - background-color: #e6e6e6; - cursor: pointer; - user-select: none; - touch-action: none; } -.slider-fill { +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner > .item { + -webkit-transition: -webkit-transform 0.6s ease-in-out; + -moz-transition: -moz-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + -moz-perspective: 1000px; + perspective: 1000px; + } + .carousel-inner > .item.next, .carousel-inner > .item.active.right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + left: 0; + } + .carousel-inner > .item.prev, .carousel-inner > .item.active.left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + left: 0; + } + .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + left: 0; + } +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { position: absolute; top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { left: 0; - display: inline-block; - max-width: 100%; - height: 0.5rem; - background-color: #cacaca; - transition: all 0.2s ease-in-out; } -.slider-fill.is-dragging { - transition: all 0s linear; +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; } -.slider-handle { +.carousel-control { position: absolute; - top: 50%; - transform: translateY(-50%); + top: 0; + bottom: 0; left: 0; - z-index: 1; - cursor: grab; - display: inline-block; - width: 1.4rem; - height: 1.4rem; - border-radius: 0; - background-color: #1779ba; - transition: all 0.2s ease-in-out; - touch-action: manipulation; -} -[data-whatinput=mouse] .slider-handle { - outline: 0; + width: 15%; + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + background-color: rgba(0, 0, 0, 0); + filter: alpha(opacity=50); + opacity: 0.5; } -.slider-handle:hover { - background-color: #14679e; +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#80000000\\", endColorstr=\\"#00000000\\", GradientType=1); + background-repeat: repeat-x; } -.slider-handle.is-dragging { - transition: all 0s linear; - cursor: grabbing; +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#00000000\\", endColorstr=\\"#80000000\\", GradientType=1); + background-repeat: repeat-x; } - -.slider.disabled, -.slider[disabled] { - opacity: 0.25; - cursor: not-allowed; +.carousel-control:hover, .carousel-control:focus { + color: #fff; + text-decoration: none; + outline: 0; + filter: alpha(opacity=90); + opacity: 0.9; } - -.slider.vertical { +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; display: inline-block; - width: 0.5rem; - height: 12.5rem; - margin: 0 1.25rem; - transform: scale(1, -1); -} -.slider.vertical .slider-fill { - top: 0; - width: 0.5rem; - max-height: 100%; + margin-top: -10px; } -.slider.vertical .slider-handle { - position: absolute; - top: 0; +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { left: 50%; - width: 1.4rem; - height: 1.4rem; - transform: translateX(-50%); + margin-left: -10px; } - -.switch { - position: relative; - margin-bottom: 1rem; - outline: 0; - font-size: 0.875rem; - font-weight: bold; - color: #fefefe; - user-select: none; - height: 2rem; +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + font-family: serif; + line-height: 1; +} +.carousel-control .icon-prev:before { + content: \\"‹\\"; +} +.carousel-control .icon-next:before { + content: \\"›\\"; } -.switch-input { +.carousel-indicators { position: absolute; - margin-bottom: 0; - opacity: 0; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; } - -.switch-paddle { - position: relative; - display: block; - width: 4rem; - height: 2rem; - border-radius: 0; - background: #cacaca; - transition: all 0.25s ease-out; - font-weight: inherit; - color: inherit; +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; cursor: pointer; + background-color: #000 \\\\9 ; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; } -input + .switch-paddle { +.carousel-indicators .active { + width: 12px; + height: 12px; margin: 0; + background-color: #fff; } -.switch-paddle::after { + +.carousel-caption { position: absolute; - top: 0.25rem; - left: 0.25rem; - display: block; - width: 1.5rem; - height: 1.5rem; - transform: translate3d(0, 0, 0); - border-radius: 0; - background: #fefefe; - transition: all 0.25s ease-out; - content: \\"\\"; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } -input:checked ~ .switch-paddle { - background: #1779ba; +.carousel-caption .btn { + text-shadow: none; } -input:checked ~ .switch-paddle::after { - left: 2.25rem; + +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right, +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -10px; + font-size: 30px; + } + .carousel-control .glyphicon-chevron-left, +.carousel-control .icon-prev { + margin-left: -10px; + } + .carousel-control .glyphicon-chevron-right, +.carousel-control .icon-next { + margin-right: -10px; + } + + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + + .carousel-indicators { + bottom: 20px; + } } -input:disabled ~ .switch-paddle { - cursor: not-allowed; - opacity: 0.5; +.clearfix:before, .clearfix:after { + display: table; + content: \\" \\"; } -[data-whatinput=mouse] input:focus ~ .switch-paddle { - outline: 0; +.clearfix:after { + clear: both; } -.switch-inactive, .switch-active { - position: absolute; - top: 50%; - transform: translateY(-50%); +.center-block { + display: block; + margin-right: auto; + margin-left: auto; } -.switch-active { - left: 8%; - display: none; +.pull-right { + float: right !important; } -input:checked + label > .switch-active { - display: block; + +.pull-left { + float: left !important; } -.switch-inactive { - right: 15%; +.hide { + display: none !important; } -input:checked + label > .switch-inactive { - display: none; + +.show { + display: block !important; } -.switch.tiny { - height: 1.5rem; +.invisible { + visibility: hidden; } -.switch.tiny .switch-paddle { - width: 3rem; - height: 1.5rem; - font-size: 0.625rem; + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } -.switch.tiny .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1rem; - height: 1rem; + +.hidden { + display: none !important; } -.switch.tiny input:checked ~ .switch-paddle::after { - left: 1.75rem; + +.affix { + position: fixed; } -.switch.small { - height: 1.75rem; +@-ms-viewport { + width: device-width; } -.switch.small .switch-paddle { - width: 3.5rem; - height: 1.75rem; - font-size: 0.75rem; +.visible-xs { + display: none !important; } -.switch.small .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1.25rem; - height: 1.25rem; + +.visible-sm { + display: none !important; } -.switch.small input:checked ~ .switch-paddle::after { - left: 2rem; + +.visible-md { + display: none !important; } -.switch.large { - height: 2.5rem; +.visible-lg { + display: none !important; } -.switch.large .switch-paddle { - width: 5rem; - height: 2.5rem; - font-size: 1rem; + +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; } -.switch.large .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 2rem; - height: 2rem; + +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + + table.visible-xs { + display: table !important; + } + + tr.visible-xs { + display: table-row !important; + } + + th.visible-xs, +td.visible-xs { + display: table-cell !important; + } } -.switch.large input:checked ~ .switch-paddle::after { - left: 2.75rem; +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } } -table { - border-collapse: collapse; - width: 100%; - margin-bottom: 1rem; - border-radius: 0; +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } } -thead, -tbody, -tfoot { - border: 1px solid #f1f1f1; - background-color: #fefefe; + +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } } -caption { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + + table.visible-sm { + display: table !important; + } + + tr.visible-sm { + display: table-row !important; + } + + th.visible-sm, +td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } } -thead { - background: #f8f8f8; - color: #0a0a0a; +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } } -tfoot { - background: #f1f1f1; - color: #0a0a0a; +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } } -thead tr, -tfoot tr { - background: transparent; +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + + table.visible-md { + display: table !important; + } + + tr.visible-md { + display: table-row !important; + } + + th.visible-md, +td.visible-md { + display: table-cell !important; + } } -thead th, -thead td, -tfoot th, -tfoot td { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; - text-align: left; +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } } -tbody th, -tbody td { - padding: 0.5rem 0.625rem 0.625rem; +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } } -tbody tr:nth-child(even) { - border-bottom: 0; - background-color: #f1f1f1; +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } } -table.unstriped tbody { - background-color: #fefefe; -} -table.unstriped tbody tr { - border-bottom: 1px solid #f1f1f1; - background-color: #fefefe; -} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } -@media print, screen and (max-width: 63.99875em) { - table.stack thead { - display: none; + table.visible-lg { + display: table !important; } - table.stack tfoot { - display: none; + + tr.visible-lg { + display: table-row !important; } - table.stack tr, -table.stack th, -table.stack td { - display: block; + + th.visible-lg, +td.visible-lg { + display: table-cell !important; } - table.stack td { - border-top: 0; +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; } } -table.scroll { - display: block; - width: 100%; - overflow-x: auto; +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } } -table.hover thead tr:hover { - background-color: #f3f3f3; +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } } -table.hover tfoot tr:hover { - background-color: #ececec; + +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } } -table.hover tbody tr:hover { - background-color: #f9f9f9; +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } } -table.hover:not(.unstriped) tr:nth-of-type(even):hover { - background-color: #ececec; +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} +.visible-print { + display: none !important; } -.table-scroll { - overflow-x: auto; +@media print { + .visible-print { + display: block !important; + } + + table.visible-print { + display: table !important; + } + + tr.visible-print { + display: table-row !important; + } + + th.visible-print, +td.visible-print { + display: table-cell !important; + } +} +.visible-print-block { + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } } -.badge { - display: inline-block; - min-width: 2.1em; - padding: 0.3em; - border-radius: 50%; - font-size: 0.6rem; - text-align: center; - background: #1779ba; - color: #fefefe; +.visible-print-inline { + display: none !important; } -.badge.primary { - background: #1779ba; - color: #fefefe; +@media print { + .visible-print-inline { + display: inline !important; + } } -.badge.secondary { - background: #767676; - color: #fefefe; + +.visible-print-inline-block { + display: none !important; } -.badge.success { - background: #3adb76; - color: #0a0a0a; +@media print { + .visible-print-inline-block { + display: inline-block !important; + } } -.badge.warning { - background: #ffae00; - color: #0a0a0a; + +@media print { + .hidden-print { + display: none !important; + } +}" +`; + +exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +html { + font-family: sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; } -.badge.alert { - background: #cc4b37; - color: #fefefe; + +body { + margin: 0; } -.breadcrumbs { - margin: 0 0 1rem 0; - list-style: none; +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; } -.breadcrumbs::before, .breadcrumbs::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; + +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; } -.breadcrumbs::after { - clear: both; + +audio:not([controls]) { + display: none; + height: 0; } -.breadcrumbs li { - float: left; - font-size: 0.6875rem; - color: #0a0a0a; - cursor: default; - text-transform: uppercase; + +[hidden], +template { + display: none; } -.breadcrumbs li:not(:last-child)::after { - position: relative; - margin: 0 0.75rem; - opacity: 1; - content: \\"/\\"; - color: #cacaca; + +a { + background-color: transparent; } -.breadcrumbs a { - color: #1779ba; + +a:active, +a:hover { + outline: 0; } -.breadcrumbs a:hover { + +abbr[title] { + border-bottom: none; text-decoration: underline; + text-decoration: underline dotted; } -.breadcrumbs .disabled { - color: #cacaca; - cursor: not-allowed; + +b, +strong { + font-weight: bold; } -.callout { - position: relative; - margin: 0 0 1rem 0; - padding: 1rem; - border: 1px solid rgba(10, 10, 10, 0.25); - border-radius: 0; - background-color: white; - color: #0a0a0a; +dfn { + font-style: italic; } -.callout > :first-child { - margin-top: 0; + +h1 { + font-size: 2em; + margin: 0.67em 0; } -.callout > :last-child { - margin-bottom: 0; + +mark { + background: #ff0; + color: #000; } -.callout.primary { - background-color: #d7ecfa; - color: #0a0a0a; + +small { + font-size: 80%; } -.callout.secondary { - background-color: #eaeaea; - color: #0a0a0a; + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; } -.callout.success { - background-color: #e1faea; - color: #0a0a0a; + +sup { + top: -0.5em; } -.callout.warning { - background-color: #fff3d9; - color: #0a0a0a; + +sub { + bottom: -0.25em; } -.callout.alert { - background-color: #f7e4e1; - color: #0a0a0a; + +img { + border: 0; } -.callout.small { - padding-top: 0.5rem; - padding-right: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 0.5rem; + +svg:not(:root) { + overflow: hidden; } -.callout.large { - padding-top: 3rem; - padding-right: 3rem; - padding-bottom: 3rem; - padding-left: 3rem; + +figure { + margin: 1em 40px; } -.card { - display: flex; - flex-direction: column; - flex-grow: 1; - margin-bottom: 1rem; - border: 1px solid #e6e6e6; - border-radius: 0; - background: #fefefe; - box-shadow: none; - overflow: hidden; - color: #0a0a0a; +hr { + box-sizing: content-box; + height: 0; +} + +pre { + overflow: auto; +} + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; } -.card > :last-child { - margin-bottom: 0; + +button, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; } -.card-divider { - display: flex; - flex: 0 1 auto; - padding: 1rem; - background: #e6e6e6; +button { + overflow: visible; } -.card-divider > :last-child { - margin-bottom: 0; + +button, +select { + text-transform: none; } -.card-section { - flex: 1 0 auto; - padding: 1rem; +button, +html input[type=button], +input[type=reset], +input[type=submit] { + -webkit-appearance: button; + cursor: pointer; } -.card-section > :last-child { - margin-bottom: 0; + +button[disabled], +html input[disabled] { + cursor: default; } -.card-image { - min-height: 1px; +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; } -.dropdown-pane { - position: absolute; - z-index: 10; - display: none; - width: 300px; - padding: 1rem; - visibility: hidden; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - font-size: 1rem; +input { + line-height: normal; } -.dropdown-pane.is-opening { - display: block; + +input[type=checkbox], +input[type=radio] { + box-sizing: border-box; + padding: 0; } -.dropdown-pane.is-open { - display: block; - visibility: visible; + +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + height: auto; } -.dropdown-pane.tiny { - width: 100px; +input[type=search] { + -webkit-appearance: textfield; + box-sizing: content-box; } -.dropdown-pane.small { - width: 200px; +input[type=search]::-webkit-search-cancel-button, +input[type=search]::-webkit-search-decoration { + -webkit-appearance: none; } -.dropdown-pane.large { - width: 400px; +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; } -.pagination { - margin-left: 0; - margin-bottom: 1rem; +legend { + border: 0; + padding: 0; } -.pagination::before, .pagination::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; + +textarea { + overflow: auto; } -.pagination::after { - clear: both; + +optgroup { + font-weight: bold; } -.pagination li { - margin-right: 0.0625rem; - border-radius: 0; - font-size: 0.875rem; - display: none; + +table { + border-collapse: collapse; + border-spacing: 0; } -.pagination li:last-child, .pagination li:first-child { - display: inline-block; + +td, +th { + padding: 0; } -@media print, screen and (min-width: 40em) { - .pagination li { - display: inline-block; + +/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ +@media print { + *, +*:before, +*:after { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + + a, +a:visited { + text-decoration: underline; + } + + a[href]:after { + content: \\" (\\" attr(href) \\")\\"; + } + + abbr[title]:after { + content: \\" (\\" attr(title) \\")\\"; + } + + a[href^=\\"#\\"]:after, +a[href^=\\"javascript:\\"]:after { + content: \\"\\"; + } + + pre, +blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + + thead { + display: table-header-group; + } + + tr, +img { + page-break-inside: avoid; + } + + img { + max-width: 100% !important; + } + + p, +h2, +h3 { + orphans: 3; + widows: 3; + } + + h2, +h3 { + page-break-after: avoid; + } + + .navbar { + display: none; + } + + .btn > .caret, +.dropup > .btn > .caret { + border-top-color: #000 !important; + } + + .label { + border: 1px solid #000; + } + + .table { + border-collapse: collapse !important; + } + .table td, +.table th { + background-color: #fff !important; + } + + .table-bordered th, +.table-bordered td { + border: 1px solid #ddd !important; } } -.pagination a, -.pagination button { - display: block; - padding: 0.1875rem 0.625rem; - border-radius: 0; - color: #0a0a0a; +@font-face { + font-family: \\"Glyphicons Halflings\\"; + src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\\"); + src: url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix\\") format(\\"embedded-opentype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\\") format(\\"woff2\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\\") format(\\"woff\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\\") format(\\"truetype\\"), url(\\"~bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\\") format(\\"svg\\"); } -.pagination a:hover, -.pagination button:hover { - background: #e6e6e6; +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: \\"Glyphicons Halflings\\"; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } -.pagination .current { - padding: 0.1875rem 0.625rem; - background: #1779ba; - color: #fefefe; - cursor: default; + +.glyphicon-asterisk:before { + content: \\"*\\"; } -.pagination .disabled { - padding: 0.1875rem 0.625rem; - color: #cacaca; - cursor: not-allowed; + +.glyphicon-plus:before { + content: \\"+\\"; } -.pagination .disabled:hover { - background: transparent; + +.glyphicon-euro:before, +.glyphicon-eur:before { + content: \\"€\\"; } -.pagination .ellipsis::after { - padding: 0.1875rem 0.625rem; - content: \\"…\\"; - color: #0a0a0a; + +.glyphicon-minus:before { + content: \\"−\\"; } -.pagination-previous a::before, -.pagination-previous.disabled::before { - display: inline-block; - margin-right: 0.5rem; - content: \\"«\\"; +.glyphicon-cloud:before { + content: \\"☁\\"; } -.pagination-next a::after, -.pagination-next.disabled::after { - display: inline-block; - margin-left: 0.5rem; - content: \\"»\\"; +.glyphicon-envelope:before { + content: \\"✉\\"; } -.has-tip { - position: relative; - display: inline-block; - border-bottom: dotted 1px #8a8a8a; - font-weight: bold; - cursor: help; +.glyphicon-pencil:before { + content: \\"✏\\"; } -.tooltip { - position: absolute; - top: calc(100% + 0.6495rem); - z-index: 1200; - max-width: 10rem; - padding: 0.75rem; - border-radius: 0; - background-color: #0a0a0a; - font-size: 80%; - color: #fefefe; +.glyphicon-glass:before { + content: \\"\\\\e001\\"; } -.tooltip::before { - position: absolute; + +.glyphicon-music:before { + content: \\"\\\\e002\\"; } -.tooltip.bottom::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-top-width: 0; - border-color: transparent transparent #0a0a0a; - bottom: 100%; + +.glyphicon-search:before { + content: \\"\\\\e003\\"; } -.tooltip.bottom.align-center::before { - left: 50%; - transform: translateX(-50%); + +.glyphicon-heart:before { + content: \\"\\\\e005\\"; } -.tooltip.top::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-bottom-width: 0; - border-color: #0a0a0a transparent transparent; - top: 100%; - bottom: auto; + +.glyphicon-star:before { + content: \\"\\\\e006\\"; } -.tooltip.top.align-center::before { - left: 50%; - transform: translateX(-50%); + +.glyphicon-star-empty:before { + content: \\"\\\\e007\\"; } -.tooltip.left::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #0a0a0a; - left: 100%; + +.glyphicon-user:before { + content: \\"\\\\e008\\"; } -.tooltip.left.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); + +.glyphicon-film:before { + content: \\"\\\\e009\\"; } -.tooltip.right::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #0a0a0a transparent transparent; - right: 100%; - left: auto; + +.glyphicon-th-large:before { + content: \\"\\\\e010\\"; } -.tooltip.right.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); + +.glyphicon-th:before { + content: \\"\\\\e011\\"; } -.tooltip.align-top::before { - bottom: auto; - top: 10%; + +.glyphicon-th-list:before { + content: \\"\\\\e012\\"; } -.tooltip.align-bottom::before { - bottom: 10%; - top: auto; + +.glyphicon-ok:before { + content: \\"\\\\e013\\"; } -.tooltip.align-left::before { - left: 10%; - right: auto; + +.glyphicon-remove:before { + content: \\"\\\\e014\\"; } -.tooltip.align-right::before { - left: auto; - right: 10%; + +.glyphicon-zoom-in:before { + content: \\"\\\\e015\\"; } -.accordion { - margin-left: 0; - background: #fefefe; - list-style-type: none; +.glyphicon-zoom-out:before { + content: \\"\\\\e016\\"; } -.accordion[disabled] .accordion-title { - cursor: not-allowed; + +.glyphicon-off:before { + content: \\"\\\\e017\\"; } -.accordion-item:first-child > :first-child { - border-radius: 0 0 0 0; +.glyphicon-signal:before { + content: \\"\\\\e018\\"; } -.accordion-item:last-child > :last-child { - border-radius: 0 0 0 0; + +.glyphicon-cog:before { + content: \\"\\\\e019\\"; } -.accordion-title { - position: relative; - display: block; - padding: 1.25rem 1rem; - border: 1px solid #e6e6e6; - border-bottom: 0; - font-size: 0.75rem; - line-height: 1; - color: #1779ba; +.glyphicon-trash:before { + content: \\"\\\\e020\\"; } -:last-child:not(.is-active) > .accordion-title { - border-bottom: 1px solid #e6e6e6; - border-radius: 0 0 0 0; + +.glyphicon-home:before { + content: \\"\\\\e021\\"; } -.accordion-title:hover, .accordion-title:focus { - background-color: #e6e6e6; + +.glyphicon-file:before { + content: \\"\\\\e022\\"; } -.accordion-title::before { - position: absolute; - top: 50%; - right: 1rem; - margin-top: -0.5rem; - content: \\"+\\"; + +.glyphicon-time:before { + content: \\"\\\\e023\\"; } -.is-active > .accordion-title::before { - content: \\"–\\"; + +.glyphicon-road:before { + content: \\"\\\\e024\\"; } -.accordion-content { - display: none; - padding: 1rem; - border: 1px solid #e6e6e6; - border-bottom: 0; - background-color: #fefefe; - color: #0a0a0a; +.glyphicon-download-alt:before { + content: \\"\\\\e025\\"; } -:last-child > .accordion-content:last-child { - border-bottom: 1px solid #e6e6e6; + +.glyphicon-download:before { + content: \\"\\\\e026\\"; } -.media-object { - display: flex; - margin-bottom: 1rem; - flex-wrap: nowrap; +.glyphicon-upload:before { + content: \\"\\\\e027\\"; } -.media-object img { - max-width: none; + +.glyphicon-inbox:before { + content: \\"\\\\e028\\"; } -@media print, screen and (max-width: 39.99875em) { - .media-object.stack-for-small { - flex-wrap: wrap; - } + +.glyphicon-play-circle:before { + content: \\"\\\\e029\\"; } -.media-object-section { - flex: 0 1 auto; +.glyphicon-repeat:before { + content: \\"\\\\e030\\"; } -.media-object-section:first-child { - padding-right: 1rem; + +.glyphicon-refresh:before { + content: \\"\\\\e031\\"; } -.media-object-section:last-child:not(:nth-child(2)) { - padding-left: 1rem; + +.glyphicon-list-alt:before { + content: \\"\\\\e032\\"; } -.media-object-section > :last-child { - margin-bottom: 0; + +.glyphicon-lock:before { + content: \\"\\\\e033\\"; } -@media print, screen and (max-width: 39.99875em) { - .stack-for-small .media-object-section { - padding: 0; - padding-bottom: 1rem; - flex-basis: 100%; - max-width: 100%; - } - .stack-for-small .media-object-section img { - width: 100%; - } + +.glyphicon-flag:before { + content: \\"\\\\e034\\"; } -.media-object-section.main-section { - flex: 1 1 0px; + +.glyphicon-headphones:before { + content: \\"\\\\e035\\"; } -.orbit { - position: relative; +.glyphicon-volume-off:before { + content: \\"\\\\e036\\"; } -.orbit-container { - position: relative; - height: 0; - margin: 0; - list-style: none; - overflow: hidden; +.glyphicon-volume-down:before { + content: \\"\\\\e037\\"; } -.orbit-slide { - width: 100%; - position: absolute; +.glyphicon-volume-up:before { + content: \\"\\\\e038\\"; } -.orbit-slide.no-motionui.is-active { - top: 0; - left: 0; + +.glyphicon-qrcode:before { + content: \\"\\\\e039\\"; } -.orbit-figure { - margin: 0; +.glyphicon-barcode:before { + content: \\"\\\\e040\\"; } -.orbit-image { - width: 100%; - max-width: 100%; - margin: 0; +.glyphicon-tag:before { + content: \\"\\\\e041\\"; } -.orbit-caption { - position: absolute; - bottom: 0; - width: 100%; - margin-bottom: 0; - padding: 1rem; - background-color: rgba(10, 10, 10, 0.5); - color: #fefefe; +.glyphicon-tags:before { + content: \\"\\\\e042\\"; } -.orbit-next, .orbit-previous { - position: absolute; - top: 50%; - transform: translateY(-50%); - z-index: 10; - padding: 1rem; - color: #fefefe; +.glyphicon-book:before { + content: \\"\\\\e043\\"; } -[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous { - outline: 0; + +.glyphicon-bookmark:before { + content: \\"\\\\e044\\"; } -.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus { - background-color: rgba(10, 10, 10, 0.5); + +.glyphicon-print:before { + content: \\"\\\\e045\\"; } -.orbit-previous { - left: 0; +.glyphicon-camera:before { + content: \\"\\\\e046\\"; } -.orbit-next { - left: auto; - right: 0; +.glyphicon-font:before { + content: \\"\\\\e047\\"; } -.orbit-bullets { - position: relative; - margin-top: 0.8rem; - margin-bottom: 0.8rem; - text-align: center; +.glyphicon-bold:before { + content: \\"\\\\e048\\"; } -[data-whatinput=mouse] .orbit-bullets { - outline: 0; + +.glyphicon-italic:before { + content: \\"\\\\e049\\"; } -.orbit-bullets button { - width: 1.2rem; - height: 1.2rem; - margin: 0.1rem; - border-radius: 50%; - background-color: #cacaca; + +.glyphicon-text-height:before { + content: \\"\\\\e050\\"; } -.orbit-bullets button:hover { - background-color: #8a8a8a; + +.glyphicon-text-width:before { + content: \\"\\\\e051\\"; } -.orbit-bullets button.is-active { - background-color: #8a8a8a; + +.glyphicon-align-left:before { + content: \\"\\\\e052\\"; } -.responsive-embed, -.flex-video { - position: relative; - height: 0; - margin-bottom: 1rem; - padding-bottom: 75%; - overflow: hidden; +.glyphicon-align-center:before { + content: \\"\\\\e053\\"; } -.responsive-embed iframe, -.responsive-embed object, -.responsive-embed embed, -.responsive-embed video, -.flex-video iframe, -.flex-video object, -.flex-video embed, -.flex-video video { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; + +.glyphicon-align-right:before { + content: \\"\\\\e054\\"; } -.responsive-embed.widescreen, -.flex-video.widescreen { - padding-bottom: 56.25%; + +.glyphicon-align-justify:before { + content: \\"\\\\e055\\"; } -.tabs { - margin: 0; - border: 1px solid #e6e6e6; - background: #fefefe; - list-style-type: none; +.glyphicon-list:before { + content: \\"\\\\e056\\"; } -.tabs::before, .tabs::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; + +.glyphicon-indent-left:before { + content: \\"\\\\e057\\"; } -.tabs::after { - clear: both; + +.glyphicon-indent-right:before { + content: \\"\\\\e058\\"; } -.tabs.vertical > li { - display: block; - float: none; - width: auto; +.glyphicon-facetime-video:before { + content: \\"\\\\e059\\"; } -.tabs.simple > li > a { - padding: 0; +.glyphicon-picture:before { + content: \\"\\\\e060\\"; } -.tabs.simple > li > a:hover { - background: transparent; + +.glyphicon-map-marker:before { + content: \\"\\\\e062\\"; } -.tabs.primary { - background: #1779ba; +.glyphicon-adjust:before { + content: \\"\\\\e063\\"; } -.tabs.primary > li > a { - color: #fefefe; + +.glyphicon-tint:before { + content: \\"\\\\e064\\"; } -.tabs.primary > li > a:hover, .tabs.primary > li > a:focus { - background: #1673b1; + +.glyphicon-edit:before { + content: \\"\\\\e065\\"; } -.tabs-title { - float: left; +.glyphicon-share:before { + content: \\"\\\\e066\\"; } -.tabs-title > a { - display: block; - padding: 1.25rem 1.5rem; - font-size: 0.75rem; - line-height: 1; - color: #1779ba; + +.glyphicon-check:before { + content: \\"\\\\e067\\"; } -[data-whatinput=mouse] .tabs-title > a { - outline: 0; + +.glyphicon-move:before { + content: \\"\\\\e068\\"; } -.tabs-title > a:hover { - background: #fefefe; - color: #1468a0; + +.glyphicon-step-backward:before { + content: \\"\\\\e069\\"; } -.tabs-title > a:focus, .tabs-title > a[aria-selected=true] { - background: #e6e6e6; - color: #1779ba; + +.glyphicon-fast-backward:before { + content: \\"\\\\e070\\"; } -.tabs-content { - border: 1px solid #e6e6e6; - border-top: 0; - background: #fefefe; - color: #0a0a0a; - transition: all 0.5s ease; +.glyphicon-backward:before { + content: \\"\\\\e071\\"; } -.tabs-content.vertical { - border: 1px solid #e6e6e6; - border-left: 0; +.glyphicon-play:before { + content: \\"\\\\e072\\"; } -.tabs-panel { - display: none; - padding: 1rem; +.glyphicon-pause:before { + content: \\"\\\\e073\\"; } -.tabs-panel.is-active { - display: block; + +.glyphicon-stop:before { + content: \\"\\\\e074\\"; } -.thumbnail { - display: inline-block; - max-width: 100%; - margin-bottom: 1rem; - border: 4px solid #fefefe; - border-radius: 0; - box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2); - line-height: 0; +.glyphicon-forward:before { + content: \\"\\\\e075\\"; } -a.thumbnail { - transition: box-shadow 200ms ease-out; +.glyphicon-fast-forward:before { + content: \\"\\\\e076\\"; } -a.thumbnail:hover, a.thumbnail:focus { - box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); + +.glyphicon-step-forward:before { + content: \\"\\\\e077\\"; } -a.thumbnail image { - box-shadow: none; + +.glyphicon-eject:before { + content: \\"\\\\e078\\"; } -.menu { - padding: 0; - margin: 0; - list-style: none; - position: relative; - display: flex; - flex-wrap: wrap; +.glyphicon-chevron-left:before { + content: \\"\\\\e079\\"; } -[data-whatinput=mouse] .menu li { - outline: 0; + +.glyphicon-chevron-right:before { + content: \\"\\\\e080\\"; } -.menu a, -.menu .button { - line-height: 1; - text-decoration: none; - display: block; - padding: 0.7rem 1rem; + +.glyphicon-plus-sign:before { + content: \\"\\\\e081\\"; } -.menu input, -.menu select, -.menu a, -.menu button { - margin-bottom: 0; + +.glyphicon-minus-sign:before { + content: \\"\\\\e082\\"; } -.menu input { - display: inline-block; + +.glyphicon-remove-sign:before { + content: \\"\\\\e083\\"; } -.menu, .menu.horizontal { - flex-wrap: wrap; - flex-direction: row; + +.glyphicon-ok-sign:before { + content: \\"\\\\e084\\"; } -.menu.vertical { - flex-wrap: nowrap; - flex-direction: column; + +.glyphicon-question-sign:before { + content: \\"\\\\e085\\"; } -.menu.vertical.icon-top li a img, -.menu.vertical.icon-top li a i, -.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img, -.menu.vertical.icon-bottom li a i, -.menu.vertical.icon-bottom li a svg { - text-align: left; + +.glyphicon-info-sign:before { + content: \\"\\\\e086\\"; } -.menu.expanded li { - flex: 1 1 0px; + +.glyphicon-screenshot:before { + content: \\"\\\\e087\\"; } -.menu.expanded.icon-top li a img, -.menu.expanded.icon-top li a i, -.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img, -.menu.expanded.icon-bottom li a i, -.menu.expanded.icon-bottom li a svg { - text-align: left; + +.glyphicon-remove-circle:before { + content: \\"\\\\e088\\"; } -.menu.simple { - align-items: center; + +.glyphicon-ok-circle:before { + content: \\"\\\\e089\\"; } -.menu.simple li + li { - margin-left: 1rem; + +.glyphicon-ban-circle:before { + content: \\"\\\\e090\\"; } -.menu.simple a { - padding: 0; + +.glyphicon-arrow-left:before { + content: \\"\\\\e091\\"; } -@media print, screen and (min-width: 40em) { - .menu.medium-horizontal { - flex-wrap: wrap; - flex-direction: row; - } - .menu.medium-vertical { - flex-wrap: nowrap; - flex-direction: column; - } - .menu.medium-expanded li { - flex: 1 1 0px; - } - .menu.medium-simple li { - flex: 1 1 0px; - } + +.glyphicon-arrow-right:before { + content: \\"\\\\e092\\"; } -@media print, screen and (min-width: 64em) { - .menu.large-horizontal { - flex-wrap: wrap; - flex-direction: row; - } - .menu.large-vertical { - flex-wrap: nowrap; - flex-direction: column; - } - .menu.large-expanded li { - flex: 1 1 0px; - } - .menu.large-simple li { - flex: 1 1 0px; - } + +.glyphicon-arrow-up:before { + content: \\"\\\\e093\\"; } -.menu.nested { - margin-right: 0; - margin-left: 1rem; + +.glyphicon-arrow-down:before { + content: \\"\\\\e094\\"; } -.menu.icons a { - display: flex; + +.glyphicon-share-alt:before { + content: \\"\\\\e095\\"; } -.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { - display: flex; + +.glyphicon-resize-full:before { + content: \\"\\\\e096\\"; } -.menu.icon-left li a, .menu.nested.icon-left li a { - flex-flow: row nowrap; + +.glyphicon-resize-small:before { + content: \\"\\\\e097\\"; } -.menu.icon-left li a img, -.menu.icon-left li a i, -.menu.icon-left li a svg, .menu.nested.icon-left li a img, -.menu.nested.icon-left li a i, -.menu.nested.icon-left li a svg { - margin-right: 0.25rem; + +.glyphicon-exclamation-sign:before { + content: \\"\\\\e101\\"; } -.menu.icon-right li a, .menu.nested.icon-right li a { - flex-flow: row nowrap; + +.glyphicon-gift:before { + content: \\"\\\\e102\\"; } -.menu.icon-right li a img, -.menu.icon-right li a i, -.menu.icon-right li a svg, .menu.nested.icon-right li a img, -.menu.nested.icon-right li a i, -.menu.nested.icon-right li a svg { - margin-left: 0.25rem; + +.glyphicon-leaf:before { + content: \\"\\\\e103\\"; } -.menu.icon-top li a, .menu.nested.icon-top li a { - flex-flow: column nowrap; + +.glyphicon-fire:before { + content: \\"\\\\e104\\"; } -.menu.icon-top li a img, -.menu.icon-top li a i, -.menu.icon-top li a svg, .menu.nested.icon-top li a img, -.menu.nested.icon-top li a i, -.menu.nested.icon-top li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; + +.glyphicon-eye-open:before { + content: \\"\\\\e105\\"; } -.menu.icon-bottom li a, .menu.nested.icon-bottom li a { - flex-flow: column nowrap; + +.glyphicon-eye-close:before { + content: \\"\\\\e106\\"; } -.menu.icon-bottom li a img, -.menu.icon-bottom li a i, -.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img, -.menu.nested.icon-bottom li a i, -.menu.nested.icon-bottom li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; + +.glyphicon-warning-sign:before { + content: \\"\\\\e107\\"; } -.menu .is-active > a { - background: #1779ba; - color: #fefefe; + +.glyphicon-plane:before { + content: \\"\\\\e108\\"; } -.menu .active > a { - background: #1779ba; - color: #fefefe; + +.glyphicon-calendar:before { + content: \\"\\\\e109\\"; } -.menu.align-left { - justify-content: flex-start; + +.glyphicon-random:before { + content: \\"\\\\e110\\"; } -.menu.align-right li { - display: flex; - justify-content: flex-end; + +.glyphicon-comment:before { + content: \\"\\\\e111\\"; } -.menu.align-right li .submenu li { - justify-content: flex-start; + +.glyphicon-magnet:before { + content: \\"\\\\e112\\"; } -.menu.align-right.vertical li { - display: block; - text-align: right; + +.glyphicon-chevron-up:before { + content: \\"\\\\e113\\"; } -.menu.align-right.vertical li .submenu li { - text-align: right; + +.glyphicon-chevron-down:before { + content: \\"\\\\e114\\"; } -.menu.align-right.icon-top li a img, -.menu.align-right.icon-top li a i, -.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img, -.menu.align-right.icon-bottom li a i, -.menu.align-right.icon-bottom li a svg { - text-align: right; + +.glyphicon-retweet:before { + content: \\"\\\\e115\\"; } -.menu.align-right .nested { - margin-right: 1rem; - margin-left: 0; + +.glyphicon-shopping-cart:before { + content: \\"\\\\e116\\"; } -.menu.align-center li { - display: flex; - justify-content: center; + +.glyphicon-folder-close:before { + content: \\"\\\\e117\\"; } -.menu.align-center li .submenu li { - justify-content: flex-start; + +.glyphicon-folder-open:before { + content: \\"\\\\e118\\"; } -.menu .menu-text { - padding: 0.7rem 1rem; - font-weight: bold; - line-height: 1; - color: inherit; + +.glyphicon-resize-vertical:before { + content: \\"\\\\e119\\"; } -.menu-centered > .menu { - justify-content: center; +.glyphicon-resize-horizontal:before { + content: \\"\\\\e120\\"; } -.menu-centered > .menu li { - display: flex; - justify-content: center; + +.glyphicon-hdd:before { + content: \\"\\\\e121\\"; } -.menu-centered > .menu li .submenu li { - justify-content: flex-start; + +.glyphicon-bullhorn:before { + content: \\"\\\\e122\\"; } -.no-js [data-responsive-menu] ul { - display: none; +.glyphicon-bell:before { + content: \\"\\\\e123\\"; } -.menu-icon { - position: relative; - display: inline-block; - vertical-align: middle; - width: 20px; - height: 16px; - cursor: pointer; +.glyphicon-certificate:before { + content: \\"\\\\e124\\"; } -.menu-icon::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 2px; - background: #fefefe; - box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; - content: \\"\\"; + +.glyphicon-thumbs-up:before { + content: \\"\\\\e125\\"; } -.menu-icon:hover::after { - background: #cacaca; - box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; + +.glyphicon-thumbs-down:before { + content: \\"\\\\e126\\"; } -.menu-icon.dark { - position: relative; - display: inline-block; - vertical-align: middle; - width: 20px; - height: 16px; - cursor: pointer; +.glyphicon-hand-right:before { + content: \\"\\\\e127\\"; } -.menu-icon.dark::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 2px; - background: #0a0a0a; - box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; - content: \\"\\"; + +.glyphicon-hand-left:before { + content: \\"\\\\e128\\"; } -.menu-icon.dark:hover::after { - background: #8a8a8a; - box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; + +.glyphicon-hand-up:before { + content: \\"\\\\e129\\"; } -.accordion-menu li { - width: 100%; +.glyphicon-hand-down:before { + content: \\"\\\\e130\\"; } -.accordion-menu a { - padding: 0.7rem 1rem; + +.glyphicon-circle-arrow-right:before { + content: \\"\\\\e131\\"; } -.accordion-menu .is-accordion-submenu a { - padding: 0.7rem 1rem; + +.glyphicon-circle-arrow-left:before { + content: \\"\\\\e132\\"; } -.accordion-menu .nested.is-accordion-submenu { - margin-right: 0; - margin-left: 1rem; + +.glyphicon-circle-arrow-up:before { + content: \\"\\\\e133\\"; } -.accordion-menu.align-right .nested.is-accordion-submenu { - margin-right: 1rem; - margin-left: 0; + +.glyphicon-circle-arrow-down:before { + content: \\"\\\\e134\\"; } -.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a { - position: relative; + +.glyphicon-globe:before { + content: \\"\\\\e135\\"; } -.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - position: absolute; - top: 50%; - margin-top: -3px; - right: 1rem; + +.glyphicon-wrench:before { + content: \\"\\\\e136\\"; } -.accordion-menu.align-left .is-accordion-submenu-parent > a::after { - right: 1rem; - left: auto; + +.glyphicon-tasks:before { + content: \\"\\\\e137\\"; } -.accordion-menu.align-right .is-accordion-submenu-parent > a::after { - right: auto; - left: 1rem; + +.glyphicon-filter:before { + content: \\"\\\\e138\\"; } -.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after { - transform: rotate(180deg); - transform-origin: 50% 50%; + +.glyphicon-briefcase:before { + content: \\"\\\\e139\\"; } -.is-accordion-submenu-parent { - position: relative; +.glyphicon-fullscreen:before { + content: \\"\\\\e140\\"; } -.has-submenu-toggle > a { - margin-right: 40px; +.glyphicon-dashboard:before { + content: \\"\\\\e141\\"; } -.submenu-toggle { - position: absolute; - top: 0; - right: 0; - width: 40px; - height: 40px; - cursor: pointer; +.glyphicon-paperclip:before { + content: \\"\\\\e142\\"; } -.submenu-toggle::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - top: 0; - bottom: 0; - margin: auto; + +.glyphicon-heart-empty:before { + content: \\"\\\\e143\\"; } -.submenu-toggle[aria-expanded=true]::after { - transform: scaleY(-1); - transform-origin: 50% 50%; +.glyphicon-link:before { + content: \\"\\\\e144\\"; } -.submenu-toggle-text { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; +.glyphicon-phone:before { + content: \\"\\\\e145\\"; } -.is-drilldown { - position: relative; - overflow: hidden; +.glyphicon-pushpin:before { + content: \\"\\\\e146\\"; } -.is-drilldown li { - display: block; + +.glyphicon-usd:before { + content: \\"\\\\e148\\"; } -.is-drilldown.animate-height { - transition: height 0.5s; + +.glyphicon-gbp:before { + content: \\"\\\\e149\\"; } -.drilldown a { - padding: 0.7rem 1rem; - background: #fefefe; +.glyphicon-sort:before { + content: \\"\\\\e150\\"; } -.drilldown .is-drilldown-submenu { - position: absolute; - top: 0; - left: 100%; - z-index: -1; - width: 100%; - background: #fefefe; - transition: transform 0.15s linear; + +.glyphicon-sort-by-alphabet:before { + content: \\"\\\\e151\\"; } -.drilldown .is-drilldown-submenu.is-active { - z-index: 1; - display: block; - transform: translateX(-100%); + +.glyphicon-sort-by-alphabet-alt:before { + content: \\"\\\\e152\\"; } -.drilldown .is-drilldown-submenu.is-closing { - transform: translateX(100%); + +.glyphicon-sort-by-order:before { + content: \\"\\\\e153\\"; } -.drilldown .is-drilldown-submenu a { - padding: 0.7rem 1rem; + +.glyphicon-sort-by-order-alt:before { + content: \\"\\\\e154\\"; } -.drilldown .nested.is-drilldown-submenu { - margin-right: 0; - margin-left: 0; + +.glyphicon-sort-by-attributes:before { + content: \\"\\\\e155\\"; } -.drilldown .drilldown-submenu-cover-previous { - min-height: 100%; + +.glyphicon-sort-by-attributes-alt:before { + content: \\"\\\\e156\\"; } -.drilldown .is-drilldown-submenu-parent > a { - position: relative; + +.glyphicon-unchecked:before { + content: \\"\\\\e157\\"; } -.drilldown .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - position: absolute; - top: 50%; - margin-top: -6px; - right: 1rem; + +.glyphicon-expand:before { + content: \\"\\\\e158\\"; } -.drilldown.align-left .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - right: 1rem; - left: auto; + +.glyphicon-collapse-down:before { + content: \\"\\\\e159\\"; } -.drilldown.align-right .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 1rem; + +.glyphicon-collapse-up:before { + content: \\"\\\\e160\\"; } -.drilldown .js-drilldown-back > a::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - display: inline-block; - vertical-align: middle; - margin-right: 0.75rem; + +.glyphicon-log-in:before { + content: \\"\\\\e161\\"; } -.dropdown.menu > li.opens-left > .is-dropdown-submenu { - top: 100%; - right: 0; - left: auto; +.glyphicon-flash:before { + content: \\"\\\\e162\\"; } -.dropdown.menu > li.opens-right > .is-dropdown-submenu { - top: 100%; - right: auto; - left: 0; + +.glyphicon-log-out:before { + content: \\"\\\\e163\\"; } -.dropdown.menu > li.is-dropdown-submenu-parent > a { - position: relative; - padding-right: 1.5rem; + +.glyphicon-new-window:before { + content: \\"\\\\e164\\"; } -.dropdown.menu > li.is-dropdown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - right: 5px; - left: auto; - margin-top: -3px; + +.glyphicon-record:before { + content: \\"\\\\e165\\"; } -[data-whatinput=mouse] .dropdown.menu a { - outline: 0; + +.glyphicon-save:before { + content: \\"\\\\e166\\"; } -.dropdown.menu > li > a { - padding: 0.7rem 1rem; + +.glyphicon-open:before { + content: \\"\\\\e167\\"; } -.dropdown.menu > li.is-active > a { - background: transparent; - color: #1779ba; + +.glyphicon-saved:before { + content: \\"\\\\e168\\"; } -.no-js .dropdown.menu ul { - display: none; + +.glyphicon-import:before { + content: \\"\\\\e169\\"; } -.dropdown.menu .nested.is-dropdown-submenu { - margin-right: 0; - margin-left: 0; + +.glyphicon-export:before { + content: \\"\\\\e170\\"; } -.dropdown.menu.vertical > li .is-dropdown-submenu { - top: 0; + +.glyphicon-send:before { + content: \\"\\\\e171\\"; } -.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu { - top: 0; - right: 100%; - left: auto; + +.glyphicon-floppy-disk:before { + content: \\"\\\\e172\\"; } -.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; + +.glyphicon-floppy-saved:before { + content: \\"\\\\e173\\"; } -.dropdown.menu.vertical > li > a::after { - right: 14px; + +.glyphicon-floppy-remove:before { + content: \\"\\\\e174\\"; } -.dropdown.menu.vertical > li.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; + +.glyphicon-floppy-save:before { + content: \\"\\\\e175\\"; } -.dropdown.menu.vertical > li.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; + +.glyphicon-floppy-open:before { + content: \\"\\\\e176\\"; } -@media print, screen and (min-width: 40em) { - .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu { - top: 100%; - right: 0; - left: auto; - } - .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu { - top: 100%; - right: auto; - left: 0; - } - .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a { - position: relative; - padding-right: 1.5rem; - } - .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - right: 5px; - left: auto; - margin-top: -3px; - } - .dropdown.menu.medium-vertical > li .is-dropdown-submenu { - top: 0; - } - .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu { - top: 0; - right: 100%; - left: auto; - } - .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; - } - .dropdown.menu.medium-vertical > li > a::after { - right: 14px; - } - .dropdown.menu.medium-vertical > li.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; - } - .dropdown.menu.medium-vertical > li.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - } + +.glyphicon-credit-card:before { + content: \\"\\\\e177\\"; } -@media print, screen and (min-width: 64em) { - .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu { - top: 100%; - right: 0; - left: auto; - } - .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu { - top: 100%; - right: auto; - left: 0; - } - .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a { - position: relative; - padding-right: 1.5rem; - } - .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - right: 5px; - left: auto; - margin-top: -3px; - } - .dropdown.menu.large-vertical > li .is-dropdown-submenu { - top: 0; - } - .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu { - top: 0; - right: 100%; - left: auto; - } - .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; - } - .dropdown.menu.large-vertical > li > a::after { - right: 14px; - } - .dropdown.menu.large-vertical > li.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; - } - .dropdown.menu.large-vertical > li.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - } + +.glyphicon-transfer:before { + content: \\"\\\\e178\\"; } -.dropdown.menu.align-right .is-dropdown-submenu.first-sub { - top: 100%; - right: 0; - left: auto; + +.glyphicon-cutlery:before { + content: \\"\\\\e179\\"; } -.is-dropdown-menu.vertical { - width: 100px; +.glyphicon-header:before { + content: \\"\\\\e180\\"; } -.is-dropdown-menu.vertical.align-right { - float: right; + +.glyphicon-compressed:before { + content: \\"\\\\e181\\"; } -.is-dropdown-submenu-parent { - position: relative; +.glyphicon-earphone:before { + content: \\"\\\\e182\\"; } -.is-dropdown-submenu-parent a::after { - position: absolute; - top: 50%; - right: 5px; - left: auto; - margin-top: -6px; + +.glyphicon-phone-alt:before { + content: \\"\\\\e183\\"; } -.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { - top: 100%; - left: auto; + +.glyphicon-tower:before { + content: \\"\\\\e184\\"; } -.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { - right: 100%; - left: auto; + +.glyphicon-stats:before { + content: \\"\\\\e185\\"; } -.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; + +.glyphicon-sd-video:before { + content: \\"\\\\e186\\"; } -.is-dropdown-submenu { - position: absolute; - top: 0; - left: 100%; - z-index: 1; - display: none; - min-width: 200px; - border: 1px solid #cacaca; - background: #fefefe; +.glyphicon-hd-video:before { + content: \\"\\\\e187\\"; } -.dropdown .is-dropdown-submenu a { - padding: 0.7rem 1rem; + +.glyphicon-subtitles:before { + content: \\"\\\\e188\\"; } -.is-dropdown-submenu .is-dropdown-submenu-parent > a::after { - right: 14px; + +.glyphicon-sound-stereo:before { + content: \\"\\\\e189\\"; } -.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; + +.glyphicon-sound-dolby:before { + content: \\"\\\\e190\\"; } -.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; + +.glyphicon-sound-5-1:before { + content: \\"\\\\e191\\"; } -.is-dropdown-submenu .is-dropdown-submenu { - margin-top: -1px; + +.glyphicon-sound-6-1:before { + content: \\"\\\\e192\\"; } -.is-dropdown-submenu > li { - width: 100%; + +.glyphicon-sound-7-1:before { + content: \\"\\\\e193\\"; } -.is-dropdown-submenu.js-dropdown-active { - display: block; + +.glyphicon-copyright-mark:before { + content: \\"\\\\e194\\"; } -.is-off-canvas-open { - overflow: hidden; +.glyphicon-registration-mark:before { + content: \\"\\\\e195\\"; } -.js-off-canvas-overlay { - position: absolute; - top: 0; - left: 0; - z-index: 11; - width: 100%; - height: 100%; - transition: opacity 0.5s ease, visibility 0.5s ease; - background: rgba(254, 254, 254, 0.25); - opacity: 0; - visibility: hidden; - overflow: hidden; +.glyphicon-cloud-download:before { + content: \\"\\\\e197\\"; } -.js-off-canvas-overlay.is-visible { - opacity: 1; - visibility: visible; + +.glyphicon-cloud-upload:before { + content: \\"\\\\e198\\"; } -.js-off-canvas-overlay.is-closable { - cursor: pointer; + +.glyphicon-tree-conifer:before { + content: \\"\\\\e199\\"; } -.js-off-canvas-overlay.is-overlay-absolute { - position: absolute; + +.glyphicon-tree-deciduous:before { + content: \\"\\\\e200\\"; } -.js-off-canvas-overlay.is-overlay-fixed { - position: fixed; + +.glyphicon-cd:before { + content: \\"\\\\e201\\"; } -.off-canvas-wrapper { - position: relative; - overflow: hidden; +.glyphicon-save-file:before { + content: \\"\\\\e202\\"; } -.off-canvas { - position: fixed; - z-index: 12; - transition: transform 0.5s ease; - backface-visibility: hidden; - background: #e6e6e6; +.glyphicon-open-file:before { + content: \\"\\\\e203\\"; } -[data-whatinput=mouse] .off-canvas { - outline: 0; + +.glyphicon-level-up:before { + content: \\"\\\\e204\\"; } -.off-canvas.is-transition-push { - z-index: 12; + +.glyphicon-copy:before { + content: \\"\\\\e205\\"; } -.off-canvas.is-closed { - visibility: hidden; + +.glyphicon-paste:before { + content: \\"\\\\e206\\"; } -.off-canvas.is-transition-overlap { - z-index: 13; + +.glyphicon-alert:before { + content: \\"\\\\e209\\"; } -.off-canvas.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); + +.glyphicon-equalizer:before { + content: \\"\\\\e210\\"; } -.off-canvas.is-open { - transform: translate(0, 0); + +.glyphicon-king:before { + content: \\"\\\\e211\\"; } -.off-canvas-absolute { - position: absolute; - z-index: 12; - transition: transform 0.5s ease; - backface-visibility: hidden; - background: #e6e6e6; +.glyphicon-queen:before { + content: \\"\\\\e212\\"; } -[data-whatinput=mouse] .off-canvas-absolute { - outline: 0; + +.glyphicon-pawn:before { + content: \\"\\\\e213\\"; } -.off-canvas-absolute.is-transition-push { - z-index: 12; + +.glyphicon-bishop:before { + content: \\"\\\\e214\\"; } -.off-canvas-absolute.is-closed { - visibility: hidden; + +.glyphicon-knight:before { + content: \\"\\\\e215\\"; } -.off-canvas-absolute.is-transition-overlap { - z-index: 13; + +.glyphicon-baby-formula:before { + content: \\"\\\\e216\\"; } -.off-canvas-absolute.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); + +.glyphicon-tent:before { + content: \\"⛺\\"; } -.off-canvas-absolute.is-open { - transform: translate(0, 0); + +.glyphicon-blackboard:before { + content: \\"\\\\e218\\"; } -.position-left { - top: 0; - left: 0; - height: 100%; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - width: 250px; - transform: translateX(-250px); +.glyphicon-bed:before { + content: \\"\\\\e219\\"; } -.off-canvas-content .off-canvas.position-left { - transform: translateX(-250px); + +.glyphicon-apple:before { + content: \\"\\\\f8ff\\"; } -.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open { - transform: translate(0, 0); + +.glyphicon-erase:before { + content: \\"\\\\e221\\"; } -.off-canvas-content.is-open-left.has-transition-push { - transform: translateX(250px); +.glyphicon-hourglass:before { + content: \\"⌛\\"; } -.position-left.is-transition-push { - box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25); +.glyphicon-lamp:before { + content: \\"\\\\e223\\"; } -.position-right { - top: 0; - right: 0; - height: 100%; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - width: 250px; - transform: translateX(250px); +.glyphicon-duplicate:before { + content: \\"\\\\e224\\"; } -.off-canvas-content .off-canvas.position-right { - transform: translateX(250px); + +.glyphicon-piggy-bank:before { + content: \\"\\\\e225\\"; } -.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open { - transform: translate(0, 0); + +.glyphicon-scissors:before { + content: \\"\\\\e226\\"; } -.off-canvas-content.is-open-right.has-transition-push { - transform: translateX(-250px); +.glyphicon-bitcoin:before { + content: \\"\\\\e227\\"; } -.position-right.is-transition-push { - box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25); +.glyphicon-btc:before { + content: \\"\\\\e227\\"; } -.position-top { - top: 0; - left: 0; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - height: 250px; - transform: translateY(-250px); +.glyphicon-xbt:before { + content: \\"\\\\e227\\"; } -.off-canvas-content .off-canvas.position-top { - transform: translateY(-250px); + +.glyphicon-yen:before { + content: \\"¥\\"; } -.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open { - transform: translate(0, 0); + +.glyphicon-jpy:before { + content: \\"¥\\"; } -.off-canvas-content.is-open-top.has-transition-push { - transform: translateY(250px); +.glyphicon-ruble:before { + content: \\"₽\\"; } -.position-top.is-transition-push { - box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25); +.glyphicon-rub:before { + content: \\"₽\\"; } -.position-bottom { - bottom: 0; - left: 0; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - height: 250px; - transform: translateY(250px); +.glyphicon-scale:before { + content: \\"\\\\e230\\"; } -.off-canvas-content .off-canvas.position-bottom { - transform: translateY(250px); + +.glyphicon-ice-lolly:before { + content: \\"\\\\e231\\"; } -.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open { - transform: translate(0, 0); + +.glyphicon-ice-lolly-tasted:before { + content: \\"\\\\e232\\"; } -.off-canvas-content.is-open-bottom.has-transition-push { - transform: translateY(-250px); +.glyphicon-education:before { + content: \\"\\\\e233\\"; } -.position-bottom.is-transition-push { - box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25); +.glyphicon-option-horizontal:before { + content: \\"\\\\e234\\"; } -.off-canvas-content { - transform: none; - backface-visibility: hidden; +.glyphicon-option-vertical:before { + content: \\"\\\\e235\\"; } -.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push { - transition: transform 0.5s ease; + +.glyphicon-menu-hamburger:before { + content: \\"\\\\e236\\"; } -.off-canvas-content.has-transition-push { - transform: translate(0, 0); + +.glyphicon-modal-window:before { + content: \\"\\\\e237\\"; } -.off-canvas-content .off-canvas.is-open { - transform: translate(0, 0); + +.glyphicon-oil:before { + content: \\"\\\\e238\\"; } -@media print, screen and (min-width: 40em) { - .position-left.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-left.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-left.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-left { - margin-left: 250px; - } +.glyphicon-grain:before { + content: \\"\\\\e239\\"; +} - .position-left.reveal-for-medium ~ .off-canvas-content { - margin-left: 250px; - } +.glyphicon-sunglasses:before { + content: \\"\\\\e240\\"; +} - .position-right.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-right.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-right.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-right { - margin-right: 250px; - } +.glyphicon-text-size:before { + content: \\"\\\\e241\\"; +} - .position-right.reveal-for-medium ~ .off-canvas-content { - margin-right: 250px; - } +.glyphicon-text-color:before { + content: \\"\\\\e242\\"; +} - .position-top.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-top.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-top.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-top { - margin-top: 250px; - } +.glyphicon-text-background:before { + content: \\"\\\\e243\\"; +} - .position-top.reveal-for-medium ~ .off-canvas-content { - margin-top: 250px; - } +.glyphicon-object-align-top:before { + content: \\"\\\\e244\\"; +} - .position-bottom.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-bottom.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-bottom.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; - } +.glyphicon-object-align-bottom:before { + content: \\"\\\\e245\\"; +} - .position-bottom.reveal-for-medium ~ .off-canvas-content { - margin-bottom: 250px; - } +.glyphicon-object-align-horizontal:before { + content: \\"\\\\e246\\"; } -@media print, screen and (min-width: 64em) { - .position-left.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-left.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-left.reveal-for-large { - transform: none; - } - .off-canvas-content.has-reveal-left { - margin-left: 250px; - } - .position-left.reveal-for-large ~ .off-canvas-content { - margin-left: 250px; - } +.glyphicon-object-align-left:before { + content: \\"\\\\e247\\"; +} - .position-right.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-right.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-right.reveal-for-large { - transform: none; - } - .off-canvas-content.has-reveal-right { - margin-right: 250px; - } +.glyphicon-object-align-vertical:before { + content: \\"\\\\e248\\"; +} - .position-right.reveal-for-large ~ .off-canvas-content { - margin-right: 250px; - } +.glyphicon-object-align-right:before { + content: \\"\\\\e249\\"; +} - .position-top.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-top.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-top.reveal-for-large { - transform: none; - } - .off-canvas-content.has-reveal-top { - margin-top: 250px; - } +.glyphicon-triangle-right:before { + content: \\"\\\\e250\\"; +} - .position-top.reveal-for-large ~ .off-canvas-content { - margin-top: 250px; - } +.glyphicon-triangle-left:before { + content: \\"\\\\e251\\"; +} - .position-bottom.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-bottom.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-bottom.reveal-for-large { - transform: none; - } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; - } +.glyphicon-triangle-bottom:before { + content: \\"\\\\e252\\"; +} - .position-bottom.reveal-for-large ~ .off-canvas-content { - margin-bottom: 250px; - } +.glyphicon-triangle-top:before { + content: \\"\\\\e253\\"; } -@media print, screen and (min-width: 40em) { - .off-canvas.in-canvas-for-medium { - visibility: visible; - height: auto; - position: static; - background: none; - width: auto; - overflow: visible; - transition: none; - } - .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom { - box-shadow: none; - transform: none; - } - .off-canvas.in-canvas-for-medium .close-button { - display: none; - } + +.glyphicon-console:before { + content: \\"\\\\e254\\"; } -@media print, screen and (min-width: 64em) { - .off-canvas.in-canvas-for-large { - visibility: visible; - height: auto; - position: static; - background: none; - width: auto; - overflow: visible; - transition: none; - } - .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom { - box-shadow: none; - transform: none; - } - .off-canvas.in-canvas-for-large .close-button { - display: none; - } + +.glyphicon-superscript:before { + content: \\"\\\\e255\\"; } -html.is-reveal-open { - position: fixed; - width: 100%; - overflow-y: hidden; + +.glyphicon-subscript:before { + content: \\"\\\\e256\\"; } -html.is-reveal-open.zf-has-scroll { - overflow-y: scroll; - -webkit-overflow-scrolling: touch; + +.glyphicon-menu-left:before { + content: \\"\\\\e257\\"; } -html.is-reveal-open body { - overflow-y: hidden; + +.glyphicon-menu-right:before { + content: \\"\\\\e258\\"; } -.reveal-overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1005; - display: none; - background-color: rgba(10, 10, 10, 0.45); - overflow-y: auto; - -webkit-overflow-scrolling: touch; +.glyphicon-menu-down:before { + content: \\"\\\\e259\\"; } -.reveal { - z-index: 1006; - backface-visibility: hidden; - display: none; - padding: 1rem; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - position: relative; - top: 100px; - margin-right: auto; - margin-left: auto; - overflow-y: auto; - -webkit-overflow-scrolling: touch; +.glyphicon-menu-up:before { + content: \\"\\\\e260\\"; } -[data-whatinput=mouse] .reveal { - outline: 0; + +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } -@media print, screen and (min-width: 40em) { - .reveal { - min-height: 0; - } + +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } -.reveal .column { - min-width: 0; + +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } -.reveal > :last-child { - margin-bottom: 0; + +body { + font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: #fff; } -@media print, screen and (min-width: 40em) { - .reveal { - width: 600px; - max-width: 75rem; - } + +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; } -.reveal.collapse { - padding: 0; + +a { + color: #337ab7; + text-decoration: none; } -@media print, screen and (min-width: 40em) { - .reveal.tiny { - width: 30%; - max-width: 75rem; - } +a:hover, a:focus { + color: #23527c; + text-decoration: underline; } -@media print, screen and (min-width: 40em) { - .reveal.small { - width: 50%; - max-width: 75rem; - } +a:focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; } -@media print, screen and (min-width: 40em) { - .reveal.large { - width: 90%; - max-width: 75rem; - } + +figure { + margin: 0; } -.reveal.full { - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - max-width: none; - height: 100%; - min-height: 100%; - margin-left: 0; - border: 0; - border-radius: 0; + +img { + vertical-align: middle; } -@media print, screen and (max-width: 39.99875em) { - .reveal { - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - max-width: none; - height: 100%; - min-height: 100%; - margin-left: 0; - border: 0; - border-radius: 0; - } + +.img-responsive { + display: block; + max-width: 100%; + height: auto; } -.reveal.without-overlay { - position: fixed; + +.img-rounded { + border-radius: 6px; } -.sticky-container { - position: relative; +.img-thumbnail { + padding: 4px; + line-height: 1.428571429; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; } -.sticky { - position: relative; - z-index: 0; - transform: translate3d(0, 0, 0); +.img-circle { + border-radius: 50%; } -.sticky.is-stuck { - position: fixed; - z-index: 5; - width: 100%; +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; } -.sticky.is-stuck.is-at-top { - top: 0; + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; } -.sticky.is-stuck.is-at-bottom { - bottom: 0; + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; } -.sticky.is-anchored { - position: relative; - right: auto; - left: auto; +[role=button] { + cursor: pointer; } -.sticky.is-anchored.is-at-bottom { - bottom: 0; + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h1 .small, h2 small, +h2 .small, h3 small, +h3 .small, h4 small, +h4 .small, h5 small, +h5 .small, h6 small, +h6 .small, +.h1 small, +.h1 .small, .h2 small, +.h2 .small, .h3 small, +.h3 .small, .h4 small, +.h4 .small, .h5 small, +.h5 .small, .h6 small, +.h6 .small { + font-weight: 400; + line-height: 1; + color: #777777; } -.title-bar { - padding: 0.5rem; - background: #0a0a0a; - color: #fefefe; - display: flex; - justify-content: flex-start; - align-items: center; +h1, .h1, +h2, .h2, +h3, .h3 { + margin-top: 20px; + margin-bottom: 10px; } -.title-bar .menu-icon { - margin-left: 0.25rem; - margin-right: 0.25rem; +h1 small, +h1 .small, .h1 small, +.h1 .small, +h2 small, +h2 .small, .h2 small, +.h2 .small, +h3 small, +h3 .small, .h3 small, +.h3 .small { + font-size: 65%; } -.title-bar-left, -.title-bar-right { - flex: 1 1 0px; +h4, .h4, +h5, .h5, +h6, .h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +h4 .small, .h4 small, +.h4 .small, +h5 small, +h5 .small, .h5 small, +.h5 .small, +h6 small, +h6 .small, .h6 small, +.h6 .small { + font-size: 75%; } -.title-bar-right { - text-align: right; +h1, .h1 { + font-size: 36px; } -.title-bar-title { - display: inline-block; - vertical-align: middle; - font-weight: bold; +h2, .h2 { + font-size: 30px; } -.top-bar { - display: flex; - flex-wrap: nowrap; - justify-content: space-between; - align-items: center; - padding: 0.5rem; - flex-wrap: wrap; +h3, .h3 { + font-size: 24px; } -.top-bar, -.top-bar ul { - background-color: #e6e6e6; + +h4, .h4 { + font-size: 18px; } -.top-bar input { - max-width: 200px; - margin-right: 1rem; + +h5, .h5 { + font-size: 14px; } -.top-bar .input-group-field { - width: 100%; - margin-right: 0; + +h6, .h6 { + font-size: 12px; } -.top-bar input.button { - width: auto; + +p { + margin: 0 0 10px; } -.top-bar .top-bar-left, -.top-bar .top-bar-right { - flex: 0 0 100%; - max-width: 100%; + +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; } -@media print, screen and (min-width: 40em) { - .top-bar { - flex-wrap: nowrap; - } - .top-bar .top-bar-left { - flex: 1 1 auto; - margin-right: auto; - } - .top-bar .top-bar-right { - flex: 0 1 auto; - margin-left: auto; +@media (min-width: 768px) { + .lead { + font-size: 21px; } } -@media print, screen and (max-width: 63.99875em) { - .top-bar.stacked-for-medium { - flex-wrap: wrap; - } - .top-bar.stacked-for-medium .top-bar-left, -.top-bar.stacked-for-medium .top-bar-right { - flex: 0 0 100%; - max-width: 100%; - } + +small, +.small { + font-size: 85%; } -@media print, screen and (max-width: 74.99875em) { - .top-bar.stacked-for-large { - flex-wrap: wrap; - } - .top-bar.stacked-for-large .top-bar-left, -.top-bar.stacked-for-large .top-bar-right { - flex: 0 0 100%; - max-width: 100%; - } + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; } -.top-bar-title { - flex: 0 0 auto; - margin: 0.5rem 1rem 0.5rem 0; +.text-left { + text-align: left; } -.top-bar-left, -.top-bar-right { - flex: 0 0 auto; +.text-right { + text-align: right; } -.float-left { - float: left !important; +.text-center { + text-align: center; } -.float-right { - float: right !important; +.text-justify { + text-align: justify; } -.float-center { - display: block; - margin-right: auto; - margin-left: auto; +.text-nowrap { + white-space: nowrap; } -.clearfix::before, .clearfix::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; +.text-lowercase { + text-transform: lowercase; } -.clearfix::after { - clear: both; + +.text-uppercase, .initialism { + text-transform: uppercase; } -.hide { - display: none !important; +.text-capitalize { + text-transform: capitalize; } -.invisible { - visibility: hidden; +.text-muted { + color: #777777; } -.visible { - visibility: visible; +.text-primary { + color: #337ab7; } -@media print, screen and (max-width: 39.99875em) { - .hide-for-small-only { - display: none !important; - } +a.text-primary:hover, +a.text-primary:focus { + color: #286090; } -@media screen and (max-width: 0em), screen and (min-width: 40em) { - .show-for-small-only { - display: none !important; - } +.text-success { + color: #3c763d; } -@media print, screen and (min-width: 40em) { - .hide-for-medium { - display: none !important; - } +a.text-success:hover, +a.text-success:focus { + color: #2b542c; } -@media screen and (max-width: 39.99875em) { - .show-for-medium { - display: none !important; - } +.text-info { + color: #31708f; } -@media print, screen and (min-width: 40em) and (max-width: 63.99875em) { - .hide-for-medium-only { - display: none !important; - } +a.text-info:hover, +a.text-info:focus { + color: #245269; } -@media screen and (max-width: 39.99875em), screen and (min-width: 64em) { - .show-for-medium-only { - display: none !important; - } +.text-warning { + color: #8a6d3b; } -@media print, screen and (min-width: 64em) { - .hide-for-large { - display: none !important; - } +a.text-warning:hover, +a.text-warning:focus { + color: #66512c; } -@media screen and (max-width: 63.99875em) { - .show-for-large { - display: none !important; - } +.text-danger { + color: #a94442; } -@media print, screen and (min-width: 64em) and (max-width: 74.99875em) { - .hide-for-large-only { - display: none !important; - } +a.text-danger:hover, +a.text-danger:focus { + color: #843534; } -@media screen and (max-width: 63.99875em), screen and (min-width: 75em) { - .show-for-large-only { - display: none !important; - } +.bg-primary { + color: #fff; } -.show-for-sr, -.show-on-focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; +.bg-primary { + background-color: #337ab7; } -.show-on-focus:active, .show-on-focus:focus { - position: static !important; - width: auto !important; - height: auto !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; +a.bg-primary:hover, +a.bg-primary:focus { + background-color: #286090; } -.show-for-landscape, -.hide-for-portrait { - display: block !important; +.bg-success { + background-color: #dff0d8; } -@media screen and (orientation: landscape) { - .show-for-landscape, -.hide-for-portrait { - display: block !important; - } + +a.bg-success:hover, +a.bg-success:focus { + background-color: #c1e2b3; } -@media screen and (orientation: portrait) { - .show-for-landscape, -.hide-for-portrait { - display: none !important; - } + +.bg-info { + background-color: #d9edf7; } -.hide-for-landscape, -.show-for-portrait { - display: none !important; +a.bg-info:hover, +a.bg-info:focus { + background-color: #afd9ee; } -@media screen and (orientation: landscape) { - .hide-for-landscape, -.show-for-portrait { - display: none !important; - } + +.bg-warning { + background-color: #fcf8e3; } -@media screen and (orientation: portrait) { - .hide-for-landscape, -.show-for-portrait { - display: block !important; - } + +a.bg-warning:hover, +a.bg-warning:focus { + background-color: #f7ecb5; } -.show-for-dark-mode { - display: none; +.bg-danger { + background-color: #f2dede; } -.hide-for-dark-mode { - display: block; +a.bg-danger:hover, +a.bg-danger:focus { + background-color: #e4b9b9; } -@media screen and (prefers-color-scheme: dark) { - .show-for-dark-mode { - display: block !important; - } +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} - .hide-for-dark-mode { - display: none !important; - } +ul, +ol { + margin-top: 0; + margin-bottom: 10px; } -.show-for-ie { - display: none; +ul ul, +ul ol, +ol ul, +ol ol { + margin-bottom: 0; } -@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { - .show-for-ie { - display: block !important; - } +.list-unstyled { + padding-left: 0; + list-style: none; +} - .hide-for-ie { - display: none !important; - } +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px; } -.show-for-sticky { - display: none; +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; } -.is-stuck .show-for-sticky { - display: block; +dl { + margin-top: 0; + margin-bottom: 20px; } -.is-stuck .hide-for-sticky { - display: none; -}" -`; +dt, +dd { + line-height: 1.428571429; +} -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (sass): errors 1`] = `Array []`; +dt { + font-weight: 700; +} -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (sass): warnings 1`] = `Array []`; +dd { + margin-left: 0; +} -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -/** - * Foundation for Sites - * Version 6.7.4 - * https://get.foundation - * Licensed under MIT Open Source - */ -@media print, screen and (min-width: 40em) { - .reveal.large, .reveal.small, .reveal.tiny, .reveal { - right: auto; - left: auto; - margin: 0 auto; +.dl-horizontal dd:before, .dl-horizontal dd:after { + display: table; + content: \\" \\"; +} +.dl-horizontal dd:after { + clear: both; +} +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; } } -/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ -html { - line-height: 1.15; - -webkit-text-size-adjust: 100%; + +abbr[title], +abbr[data-original-title] { + cursor: help; } -body { - margin: 0; +.initialism { + font-size: 90%; } -h1 { - font-size: 2em; - margin: 0.67em 0; +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eeeeee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.428571429; + color: #777777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: \\"— \\"; } -hr { - box-sizing: content-box; - height: 0; - overflow: visible; +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + text-align: right; + border-right: 5px solid #eeeeee; + border-left: 0; +} +.blockquote-reverse footer:before, +.blockquote-reverse small:before, +.blockquote-reverse .small:before, +blockquote.pull-right footer:before, +blockquote.pull-right small:before, +blockquote.pull-right .small:before { + content: \\"\\"; +} +.blockquote-reverse footer:after, +.blockquote-reverse small:after, +.blockquote-reverse .small:after, +blockquote.pull-right footer:after, +blockquote.pull-right small:after, +blockquote.pull-right .small:after { + content: \\" —\\"; } -pre { - font-family: monospace, monospace; - font-size: 1em; +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429; } -a { +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, \\"Courier New\\", monospace; +} + +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} + +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 3px; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; + box-shadow: none; +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + color: #333333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; background-color: transparent; + border-radius: 0; } -abbr[title] { - border-bottom: 0; - text-decoration: underline dotted; +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; } -b, -strong { - font-weight: bolder; +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.container:before, .container:after { + display: table; + content: \\" \\"; +} +.container:after { + clear: both; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } } -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; +.container-fluid { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.container-fluid:before, .container-fluid:after { + display: table; + content: \\" \\"; +} +.container-fluid:after { + clear: both; +} + +.row { + margin-right: -15px; + margin-left: -15px; +} +.row:before, .row:after { + display: table; + content: \\" \\"; +} +.row:after { + clear: both; +} + +.row-no-gutters { + margin-right: 0; + margin-left: 0; } - -small { - font-size: 80%; +.row-no-gutters [class*=col-] { + padding-right: 0; + padding-left: 0; } -sub, -sup { - font-size: 75%; - line-height: 0; +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; - vertical-align: baseline; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; } -sub { - bottom: -0.25em; +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; } -sup { - top: -0.5em; +.col-xs-1 { + width: 8.3333333333%; } -img { - border-style: none; +.col-xs-2 { + width: 16.6666666667%; } -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - font-size: 100%; - line-height: 1.15; - margin: 0; +.col-xs-3 { + width: 25%; } -button, -input { - overflow: visible; +.col-xs-4 { + width: 33.3333333333%; } -button, -select { - text-transform: none; +.col-xs-5 { + width: 41.6666666667%; } -button, -[type=button], -[type=reset], -[type=submit] { - -webkit-appearance: button; +.col-xs-6 { + width: 50%; } -button::-moz-focus-inner, -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner { - border-style: none; - padding: 0; +.col-xs-7 { + width: 58.3333333333%; } -button:-moz-focusring, -[type=button]:-moz-focusring, -[type=reset]:-moz-focusring, -[type=submit]:-moz-focusring { - outline: 1px dotted ButtonText; +.col-xs-8 { + width: 66.6666666667%; } -fieldset { - padding: 0.35em 0.75em 0.625em; +.col-xs-9 { + width: 75%; } -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; +.col-xs-10 { + width: 83.3333333333%; } -progress { - vertical-align: baseline; +.col-xs-11 { + width: 91.6666666667%; } -textarea { - overflow: auto; +.col-xs-12 { + width: 100%; } -[type=checkbox], -[type=radio] { - box-sizing: border-box; - padding: 0; +.col-xs-pull-0 { + right: auto; } -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; +.col-xs-pull-1 { + right: 8.3333333333%; } -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px; +.col-xs-pull-2 { + right: 16.6666666667%; } -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; +.col-xs-pull-3 { + right: 25%; } -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; +.col-xs-pull-4 { + right: 33.3333333333%; } -details { - display: block; +.col-xs-pull-5 { + right: 41.6666666667%; } -summary { - display: list-item; +.col-xs-pull-6 { + right: 50%; } -template { - display: none; +.col-xs-pull-7 { + right: 58.3333333333%; } -[hidden] { - display: none; +.col-xs-pull-8 { + right: 66.6666666667%; } -[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus, -[data-whatintent=touch] *, -[data-whatintent=touch] *:focus, -[data-whatinput=mouse] *, -[data-whatinput=mouse] *:focus, -[data-whatinput=touch] *, -[data-whatinput=touch] *:focus { - outline: none; +.col-xs-pull-9 { + right: 75%; } -[draggable=false] { - -webkit-touch-callout: none; - -webkit-user-select: none; +.col-xs-pull-10 { + right: 83.3333333333%; } -.foundation-mq { - font-family: \\"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em\\"; +.col-xs-pull-11 { + right: 91.6666666667%; } -html { - box-sizing: border-box; - font-size: 100%; +.col-xs-pull-12 { + right: 100%; } -*, -*::before, -*::after { - box-sizing: inherit; +.col-xs-push-0 { + left: auto; } -body { - margin: 0; - padding: 0; - background: #fefefe; - font-family: \\"Helvetica Neue\\", Helvetica, Roboto, Arial, sans-serif; - font-weight: normal; - line-height: 1.5; - color: #0a0a0a; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; +.col-xs-push-1 { + left: 8.3333333333%; } -img { - display: inline-block; - vertical-align: middle; - max-width: 100%; - height: auto; - -ms-interpolation-mode: bicubic; +.col-xs-push-2 { + left: 16.6666666667%; } -textarea { - height: auto; - min-height: 50px; - border-radius: 0; +.col-xs-push-3 { + left: 25%; } -select { - box-sizing: border-box; - width: 100%; - border-radius: 0; +.col-xs-push-4 { + left: 33.3333333333%; } -.map_canvas img, -.map_canvas embed, -.map_canvas object, -.mqa-display img, -.mqa-display embed, -.mqa-display object { - max-width: none !important; +.col-xs-push-5 { + left: 41.6666666667%; } -button { - padding: 0; - appearance: none; - border: 0; - border-radius: 0; - background: transparent; - line-height: 1; - cursor: auto; -} -[data-whatinput=mouse] button { - outline: 0; +.col-xs-push-6 { + left: 50%; } -pre { - overflow: auto; - -webkit-overflow-scrolling: touch; +.col-xs-push-7 { + left: 58.3333333333%; } -button, -input, -optgroup, -select, -textarea { - font-family: inherit; +.col-xs-push-8 { + left: 66.6666666667%; } -.is-visible { - display: block !important; +.col-xs-push-9 { + left: 75%; } -.is-hidden { - display: none !important; +.col-xs-push-10 { + left: 83.3333333333%; } -[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color], -textarea { - display: block; - box-sizing: border-box; - width: 100%; - height: 2.4375rem; - margin: 0 0 1rem; - padding: 0.5rem; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); - font-family: inherit; - font-size: 1rem; - font-weight: normal; - line-height: 1.5; - color: #0a0a0a; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; - appearance: none; -} -[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus, -textarea:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +.col-xs-push-11 { + left: 91.6666666667%; } -textarea { - max-width: 100%; -} -textarea[rows] { - height: auto; +.col-xs-push-12 { + left: 100%; } -input:disabled, input[readonly], -textarea:disabled, -textarea[readonly] { - background-color: #e6e6e6; - cursor: not-allowed; +.col-xs-offset-0 { + margin-left: 0%; } -[type=submit], -[type=button] { - appearance: none; - border-radius: 0; +.col-xs-offset-1 { + margin-left: 8.3333333333%; } -input[type=search] { - box-sizing: border-box; +.col-xs-offset-2 { + margin-left: 16.6666666667%; } -::placeholder { - color: #cacaca; +.col-xs-offset-3 { + margin-left: 25%; } -[type=file], -[type=checkbox], -[type=radio] { - margin: 0 0 1rem; +.col-xs-offset-4 { + margin-left: 33.3333333333%; } -[type=checkbox] + label, -[type=radio] + label { - display: inline-block; - vertical-align: baseline; - margin-left: 0.5rem; - margin-right: 1rem; - margin-bottom: 0; -} -[type=checkbox] + label[for], -[type=radio] + label[for] { - cursor: pointer; +.col-xs-offset-5 { + margin-left: 41.6666666667%; } -label > [type=checkbox], -label > [type=radio] { - margin-right: 0.5rem; +.col-xs-offset-6 { + margin-left: 50%; } -[type=file] { - width: 100%; +.col-xs-offset-7 { + margin-left: 58.3333333333%; } -label { - display: block; - margin: 0; - font-size: 0.875rem; - font-weight: normal; - line-height: 1.8; - color: #0a0a0a; -} -label.middle { - margin: 0 0 1rem; - line-height: 1.5; - padding: 0.5625rem 0; +.col-xs-offset-8 { + margin-left: 66.6666666667%; } -.help-text { - margin-top: -0.5rem; - font-size: 0.8125rem; - font-style: italic; - color: #0a0a0a; +.col-xs-offset-9 { + margin-left: 75%; } -.input-group { - display: flex; - width: 100%; - margin-bottom: 1rem; - align-items: stretch; -} -.input-group > :first-child, .input-group > :first-child.input-group-button > * { - border-radius: 0 0 0 0; -} -.input-group > :last-child, .input-group > :last-child.input-group-button > * { - border-radius: 0 0 0 0; +.col-xs-offset-10 { + margin-left: 83.3333333333%; } -.input-group-button a, -.input-group-button input, -.input-group-button button, -.input-group-button label, .input-group-button, .input-group-field, .input-group-label { - margin: 0; - white-space: nowrap; +.col-xs-offset-11 { + margin-left: 91.6666666667%; } -.input-group-label { - padding: 0 1rem; - border: 1px solid #cacaca; - background: #e6e6e6; - color: #0a0a0a; - text-align: center; - white-space: nowrap; - display: flex; - flex: 0 0 auto; - align-items: center; -} -.input-group-label:first-child { - border-right: 0; -} -.input-group-label:last-child { - border-left: 0; +.col-xs-offset-12 { + margin-left: 100%; } -.input-group-field { - border-radius: 0; - flex: 1 1 0px; - min-width: 0; -} +@media (min-width: 768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } -.input-group-button { - padding-top: 0; - padding-bottom: 0; - text-align: center; - display: flex; - flex: 0 0 auto; -} -.input-group-button a, -.input-group-button input, -.input-group-button button, -.input-group-button label { - align-self: stretch; - height: auto; - padding-top: 0; - padding-bottom: 0; - font-size: 1rem; -} + .col-sm-1 { + width: 8.3333333333%; + } -fieldset { - margin: 0; - padding: 0; - border: 0; -} + .col-sm-2 { + width: 16.6666666667%; + } -legend { - max-width: 100%; - margin-bottom: 0.5rem; -} + .col-sm-3 { + width: 25%; + } -.fieldset { - margin: 1.125rem 0; - padding: 1.25rem; - border: 1px solid #cacaca; -} -.fieldset legend { - margin: 0; - margin-left: -0.1875rem; - padding: 0 0.1875rem; -} + .col-sm-4 { + width: 33.3333333333%; + } -select { - height: 2.4375rem; - margin: 0 0 1rem; - padding: 0.5rem; - appearance: none; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - font-family: inherit; - font-size: 1rem; - font-weight: normal; - line-height: 1.5; - color: #0a0a0a; - background-image: url('data:image/svg+xml;utf8,'); - background-origin: content-box; - background-position: right -1rem center; - background-repeat: no-repeat; - background-size: 9px 6px; - padding-right: 1.5rem; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; -} -@media screen and (min-width: 0\\\\0 ) { - select { - background-image: url(\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==\\"); + .col-sm-5 { + width: 41.6666666667%; } -} -select:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; -} -select:disabled { - background-color: #e6e6e6; - cursor: not-allowed; -} -select::-ms-expand { - display: none; -} -select[multiple] { - height: auto; - background-image: none; -} -select:not([multiple]) { - padding-top: 0; - padding-bottom: 0; -} -.is-invalid-input:not(:focus) { - border-color: #cc4b37; - background-color: #f9ecea; -} -.is-invalid-input:not(:focus)::placeholder { - color: #cc4b37; -} + .col-sm-6 { + width: 50%; + } -.is-invalid-label { - color: #cc4b37; -} + .col-sm-7 { + width: 58.3333333333%; + } -.form-error { - display: none; - margin-top: -0.5rem; - margin-bottom: 1rem; - font-size: 0.75rem; - font-weight: bold; - color: #cc4b37; -} -.form-error.is-visible { - display: block; -} + .col-sm-8 { + width: 66.6666666667%; + } -div, -dl, -dt, -dd, -ul, -ol, -li, -h1, -h2, -h3, -h4, -h5, -h6, -pre, -form, -p, -blockquote, -th, -td { - margin: 0; - padding: 0; -} + .col-sm-9 { + width: 75%; + } -p { - margin-bottom: 1rem; - font-size: inherit; - line-height: 1.6; - text-rendering: optimizeLegibility; -} + .col-sm-10 { + width: 83.3333333333%; + } -em, -i { - font-style: italic; - line-height: inherit; -} + .col-sm-11 { + width: 91.6666666667%; + } -strong, -b { - font-weight: bold; - line-height: inherit; -} + .col-sm-12 { + width: 100%; + } -small { - font-size: 80%; - line-height: inherit; -} + .col-sm-pull-0 { + right: auto; + } -h1, .h1, -h2, .h2, -h3, .h3, -h4, .h4, -h5, .h5, -h6, .h6 { - font-family: \\"Helvetica Neue\\", Helvetica, Roboto, Arial, sans-serif; - font-style: normal; - font-weight: normal; - color: inherit; - text-rendering: optimizeLegibility; -} -h1 small, .h1 small, -h2 small, .h2 small, -h3 small, .h3 small, -h4 small, .h4 small, -h5 small, .h5 small, -h6 small, .h6 small { - line-height: 0; - color: #cacaca; -} + .col-sm-pull-1 { + right: 8.3333333333%; + } -h1, .h1 { - font-size: 1.5rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; -} + .col-sm-pull-2 { + right: 16.6666666667%; + } -h2, .h2 { - font-size: 1.25rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; -} + .col-sm-pull-3 { + right: 25%; + } -h3, .h3 { - font-size: 1.1875rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; -} + .col-sm-pull-4 { + right: 33.3333333333%; + } -h4, .h4 { - font-size: 1.125rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; -} + .col-sm-pull-5 { + right: 41.6666666667%; + } -h5, .h5 { - font-size: 1.0625rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; -} + .col-sm-pull-6 { + right: 50%; + } -h6, .h6 { - font-size: 1rem; - line-height: 1.4; - margin-top: 0; - margin-bottom: 0.5rem; -} + .col-sm-pull-7 { + right: 58.3333333333%; + } -@media print, screen and (min-width: 40em) { - h1, .h1 { - font-size: 3rem; + .col-sm-pull-8 { + right: 66.6666666667%; } - h2, .h2 { - font-size: 2.5rem; + .col-sm-pull-9 { + right: 75%; } - h3, .h3 { - font-size: 1.9375rem; + .col-sm-pull-10 { + right: 83.3333333333%; } - h4, .h4 { - font-size: 1.5625rem; + .col-sm-pull-11 { + right: 91.6666666667%; } - h5, .h5 { - font-size: 1.25rem; + .col-sm-pull-12 { + right: 100%; } - h6, .h6 { - font-size: 1rem; + .col-sm-push-0 { + left: auto; } -} -a { - line-height: inherit; - color: #1779ba; - text-decoration: none; - cursor: pointer; -} -a:hover, a:focus { - color: #1468a0; -} -a img { - border: 0; -} -hr { - clear: both; - max-width: 75rem; - height: 0; - margin: 1.25rem auto; - border-top: 0; - border-right: 0; - border-bottom: 1px solid #cacaca; - border-left: 0; -} + .col-sm-push-1 { + left: 8.3333333333%; + } -ul, -ol, -dl { - margin-bottom: 1rem; - list-style-position: outside; - line-height: 1.6; -} + .col-sm-push-2 { + left: 16.6666666667%; + } -li { - font-size: inherit; -} + .col-sm-push-3 { + left: 25%; + } -ul { - margin-left: 1.25rem; - list-style-type: disc; -} + .col-sm-push-4 { + left: 33.3333333333%; + } -ol { - margin-left: 1.25rem; -} + .col-sm-push-5 { + left: 41.6666666667%; + } -ul ul, ul ol, ol ul, ol ol { - margin-left: 1.25rem; - margin-bottom: 0; -} + .col-sm-push-6 { + left: 50%; + } -dl { - margin-bottom: 1rem; -} -dl dt { - margin-bottom: 0.3rem; - font-weight: bold; -} + .col-sm-push-7 { + left: 58.3333333333%; + } -blockquote { - margin: 0 0 1rem; - padding: 0.5625rem 1.25rem 0 1.1875rem; - border-left: 1px solid #cacaca; -} -blockquote, blockquote p { - line-height: 1.6; - color: #8a8a8a; -} + .col-sm-push-8 { + left: 66.6666666667%; + } -abbr, abbr[title] { - border-bottom: 1px dotted #0a0a0a; - cursor: help; - text-decoration: none; -} + .col-sm-push-9 { + left: 75%; + } -figure { - margin: 0; -} + .col-sm-push-10 { + left: 83.3333333333%; + } -kbd { - margin: 0; - padding: 0.125rem 0.25rem 0; - background-color: #e6e6e6; - font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - color: #0a0a0a; -} + .col-sm-push-11 { + left: 91.6666666667%; + } -.subheader { - margin-top: 0.2rem; - margin-bottom: 0.5rem; - font-weight: normal; - line-height: 1.4; - color: #8a8a8a; -} + .col-sm-push-12 { + left: 100%; + } -.lead { - font-size: 125%; - line-height: 1.6; -} + .col-sm-offset-0 { + margin-left: 0%; + } -.stat { - font-size: 2.5rem; - line-height: 1; -} -p + .stat { - margin-top: -1rem; -} + .col-sm-offset-1 { + margin-left: 8.3333333333%; + } -ul.no-bullet, ol.no-bullet { - margin-left: 0; - list-style: none; -} + .col-sm-offset-2 { + margin-left: 16.6666666667%; + } -.cite-block, cite { - display: block; - color: #8a8a8a; - font-size: 0.8125rem; -} -.cite-block:before, cite:before { - content: \\"— \\"; -} + .col-sm-offset-3 { + margin-left: 25%; + } -.code-inline, code { - border: 1px solid #cacaca; - background-color: #e6e6e6; - font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - font-weight: normal; - color: #0a0a0a; - display: inline; - max-width: 100%; - word-wrap: break-word; - padding: 0.125rem 0.3125rem 0.0625rem; -} + .col-sm-offset-4 { + margin-left: 33.3333333333%; + } -.code-block { - border: 1px solid #cacaca; - background-color: #e6e6e6; - font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - font-weight: normal; - color: #0a0a0a; - display: block; - overflow: auto; - white-space: pre; - padding: 1rem; - margin-bottom: 1.5rem; -} + .col-sm-offset-5 { + margin-left: 41.6666666667%; + } -.text-left { - text-align: left; -} + .col-sm-offset-6 { + margin-left: 50%; + } -.text-right { - text-align: right; -} + .col-sm-offset-7 { + margin-left: 58.3333333333%; + } -.text-center { - text-align: center; -} + .col-sm-offset-8 { + margin-left: 66.6666666667%; + } -.text-justify { - text-align: justify; + .col-sm-offset-9 { + margin-left: 75%; + } + + .col-sm-offset-10 { + margin-left: 83.3333333333%; + } + + .col-sm-offset-11 { + margin-left: 91.6666666667%; + } + + .col-sm-offset-12 { + margin-left: 100%; + } } +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } -@media print, screen and (min-width: 40em) { - .medium-text-left { - text-align: left; + .col-md-1 { + width: 8.3333333333%; } - .medium-text-right { - text-align: right; + .col-md-2 { + width: 16.6666666667%; } - .medium-text-center { - text-align: center; + .col-md-3 { + width: 25%; } - .medium-text-justify { - text-align: justify; + .col-md-4 { + width: 33.3333333333%; } -} -@media print, screen and (min-width: 64em) { - .large-text-left { - text-align: left; + + .col-md-5 { + width: 41.6666666667%; + } + + .col-md-6 { + width: 50%; + } + + .col-md-7 { + width: 58.3333333333%; + } + + .col-md-8 { + width: 66.6666666667%; + } + + .col-md-9 { + width: 75%; + } + + .col-md-10 { + width: 83.3333333333%; + } + + .col-md-11 { + width: 91.6666666667%; + } + + .col-md-12 { + width: 100%; + } + + .col-md-pull-0 { + right: auto; + } + + .col-md-pull-1 { + right: 8.3333333333%; + } + + .col-md-pull-2 { + right: 16.6666666667%; + } + + .col-md-pull-3 { + right: 25%; + } + + .col-md-pull-4 { + right: 33.3333333333%; + } + + .col-md-pull-5 { + right: 41.6666666667%; + } + + .col-md-pull-6 { + right: 50%; + } + + .col-md-pull-7 { + right: 58.3333333333%; + } + + .col-md-pull-8 { + right: 66.6666666667%; + } + + .col-md-pull-9 { + right: 75%; + } + + .col-md-pull-10 { + right: 83.3333333333%; + } + + .col-md-pull-11 { + right: 91.6666666667%; + } + + .col-md-pull-12 { + right: 100%; + } + + .col-md-push-0 { + left: auto; + } + + .col-md-push-1 { + left: 8.3333333333%; + } + + .col-md-push-2 { + left: 16.6666666667%; + } + + .col-md-push-3 { + left: 25%; + } + + .col-md-push-4 { + left: 33.3333333333%; } - .large-text-right { - text-align: right; + .col-md-push-5 { + left: 41.6666666667%; } - .large-text-center { - text-align: center; + .col-md-push-6 { + left: 50%; } - .large-text-justify { - text-align: justify; + .col-md-push-7 { + left: 58.3333333333%; } -} -.show-for-print { - display: none !important; -} -@media print { - * { - background: transparent !important; - color: black !important; - color-adjust: economy; - box-shadow: none !important; - text-shadow: none !important; + .col-md-push-8 { + left: 66.6666666667%; } - .show-for-print { - display: block !important; + .col-md-push-9 { + left: 75%; } - .hide-for-print { - display: none !important; + .col-md-push-10 { + left: 83.3333333333%; } - table.show-for-print { - display: table !important; + .col-md-push-11 { + left: 91.6666666667%; } - thead.show-for-print { - display: table-header-group !important; + .col-md-push-12 { + left: 100%; } - tbody.show-for-print { - display: table-row-group !important; + .col-md-offset-0 { + margin-left: 0%; } - tr.show-for-print { - display: table-row !important; + .col-md-offset-1 { + margin-left: 8.3333333333%; } - td.show-for-print { - display: table-cell !important; + .col-md-offset-2 { + margin-left: 16.6666666667%; } - th.show-for-print { - display: table-cell !important; + .col-md-offset-3 { + margin-left: 25%; } - a, -a:visited { - text-decoration: underline; + .col-md-offset-4 { + margin-left: 33.3333333333%; } - a[href]:after { - content: \\" (\\" attr(href) \\")\\"; + .col-md-offset-5 { + margin-left: 41.6666666667%; } - .ir a:after, -a[href^=\\"javascript:\\"]:after, -a[href^=\\"#\\"]:after { - content: \\"\\"; + .col-md-offset-6 { + margin-left: 50%; } - abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; + .col-md-offset-7 { + margin-left: 58.3333333333%; } - pre, -blockquote { - border: 1px solid #8a8a8a; - page-break-inside: avoid; + .col-md-offset-8 { + margin-left: 66.6666666667%; } - thead { - display: table-header-group; + .col-md-offset-9 { + margin-left: 75%; } - tr, -img { - page-break-inside: avoid; + .col-md-offset-10 { + margin-left: 83.3333333333%; } - img { - max-width: 100% !important; + .col-md-offset-11 { + margin-left: 91.6666666667%; } - @page { - margin: 0.5cm; + .col-md-offset-12 { + margin-left: 100%; } - p, -h2, -h3 { - orphans: 3; - widows: 3; +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; } - h2, -h3 { - page-break-after: avoid; + .col-lg-1 { + width: 8.3333333333%; } - .print-break-inside { - page-break-inside: auto; - } -} -.grid-container { - padding-right: 0.625rem; - padding-left: 0.625rem; - max-width: 75rem; - margin-left: auto; - margin-right: auto; -} -@media print, screen and (min-width: 40em) { - .grid-container { - padding-right: 0.9375rem; - padding-left: 0.9375rem; + .col-lg-2 { + width: 16.6666666667%; } -} -.grid-container.fluid { - padding-right: 0.625rem; - padding-left: 0.625rem; - max-width: 100%; - margin-left: auto; - margin-right: auto; -} -@media print, screen and (min-width: 40em) { - .grid-container.fluid { - padding-right: 0.9375rem; - padding-left: 0.9375rem; + + .col-lg-3 { + width: 25%; } -} -.grid-container.full { - padding-right: 0; - padding-left: 0; - max-width: 100%; - margin-left: auto; - margin-right: auto; -} -.grid-x { - display: flex; - flex-flow: row wrap; -} + .col-lg-4 { + width: 33.3333333333%; + } -.cell { - flex: 0 0 auto; - min-height: 0; - min-width: 0; - width: 100%; -} -.cell.auto { - flex: 1 1 0; -} -.cell.shrink { - flex: 0 0 auto; -} + .col-lg-5 { + width: 41.6666666667%; + } -.grid-x > .auto { - width: auto; -} -.grid-x > .shrink { - width: auto; -} + .col-lg-6 { + width: 50%; + } -.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { - flex-basis: auto; -} + .col-lg-7 { + width: 58.3333333333%; + } -@media print, screen and (min-width: 40em) { - .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { - flex-basis: auto; + .col-lg-8 { + width: 66.6666666667%; } -} -@media print, screen and (min-width: 64em) { - .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { - flex-basis: auto; + + .col-lg-9 { + width: 75%; } -} -.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 { - flex: 0 0 auto; -} -.grid-x > .small-1 { - width: 8.3333333333%; -} + .col-lg-10 { + width: 83.3333333333%; + } -.grid-x > .small-2 { - width: 16.6666666667%; -} + .col-lg-11 { + width: 91.6666666667%; + } -.grid-x > .small-3 { - width: 25%; -} + .col-lg-12 { + width: 100%; + } -.grid-x > .small-4 { - width: 33.3333333333%; -} + .col-lg-pull-0 { + right: auto; + } -.grid-x > .small-5 { - width: 41.6666666667%; -} + .col-lg-pull-1 { + right: 8.3333333333%; + } -.grid-x > .small-6 { - width: 50%; -} + .col-lg-pull-2 { + right: 16.6666666667%; + } -.grid-x > .small-7 { - width: 58.3333333333%; -} + .col-lg-pull-3 { + right: 25%; + } -.grid-x > .small-8 { - width: 66.6666666667%; -} + .col-lg-pull-4 { + right: 33.3333333333%; + } -.grid-x > .small-9 { - width: 75%; -} + .col-lg-pull-5 { + right: 41.6666666667%; + } -.grid-x > .small-10 { - width: 83.3333333333%; -} + .col-lg-pull-6 { + right: 50%; + } -.grid-x > .small-11 { - width: 91.6666666667%; -} + .col-lg-pull-7 { + right: 58.3333333333%; + } -.grid-x > .small-12 { - width: 100%; -} + .col-lg-pull-8 { + right: 66.6666666667%; + } -@media print, screen and (min-width: 40em) { - .grid-x > .medium-auto { - flex: 1 1 0; - width: auto; + .col-lg-pull-9 { + right: 75%; } - .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink { - flex: 0 0 auto; + .col-lg-pull-10 { + right: 83.3333333333%; } - .grid-x > .medium-shrink { - width: auto; + .col-lg-pull-11 { + right: 91.6666666667%; } - .grid-x > .medium-1 { - width: 8.3333333333%; + .col-lg-pull-12 { + right: 100%; } - .grid-x > .medium-2 { - width: 16.6666666667%; + .col-lg-push-0 { + left: auto; } - .grid-x > .medium-3 { - width: 25%; + .col-lg-push-1 { + left: 8.3333333333%; } - .grid-x > .medium-4 { - width: 33.3333333333%; + .col-lg-push-2 { + left: 16.6666666667%; } - .grid-x > .medium-5 { - width: 41.6666666667%; + .col-lg-push-3 { + left: 25%; } - .grid-x > .medium-6 { - width: 50%; + .col-lg-push-4 { + left: 33.3333333333%; } - .grid-x > .medium-7 { - width: 58.3333333333%; + .col-lg-push-5 { + left: 41.6666666667%; } - .grid-x > .medium-8 { - width: 66.6666666667%; + .col-lg-push-6 { + left: 50%; } - .grid-x > .medium-9 { - width: 75%; + .col-lg-push-7 { + left: 58.3333333333%; } - .grid-x > .medium-10 { - width: 83.3333333333%; + .col-lg-push-8 { + left: 66.6666666667%; } - .grid-x > .medium-11 { - width: 91.6666666667%; + .col-lg-push-9 { + left: 75%; } - .grid-x > .medium-12 { - width: 100%; + .col-lg-push-10 { + left: 83.3333333333%; } -} -@media print, screen and (min-width: 64em) { - .grid-x > .large-auto { - flex: 1 1 0; - width: auto; + + .col-lg-push-11 { + left: 91.6666666667%; } - .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink { - flex: 0 0 auto; + .col-lg-push-12 { + left: 100%; } - .grid-x > .large-shrink { - width: auto; + .col-lg-offset-0 { + margin-left: 0%; } - .grid-x > .large-1 { - width: 8.3333333333%; + .col-lg-offset-1 { + margin-left: 8.3333333333%; } - .grid-x > .large-2 { - width: 16.6666666667%; + .col-lg-offset-2 { + margin-left: 16.6666666667%; } - .grid-x > .large-3 { - width: 25%; + .col-lg-offset-3 { + margin-left: 25%; } - .grid-x > .large-4 { - width: 33.3333333333%; + .col-lg-offset-4 { + margin-left: 33.3333333333%; } - .grid-x > .large-5 { - width: 41.6666666667%; + .col-lg-offset-5 { + margin-left: 41.6666666667%; } - .grid-x > .large-6 { - width: 50%; + .col-lg-offset-6 { + margin-left: 50%; } - .grid-x > .large-7 { - width: 58.3333333333%; + .col-lg-offset-7 { + margin-left: 58.3333333333%; } - .grid-x > .large-8 { - width: 66.6666666667%; + .col-lg-offset-8 { + margin-left: 66.6666666667%; } - .grid-x > .large-9 { - width: 75%; + .col-lg-offset-9 { + margin-left: 75%; } - .grid-x > .large-10 { - width: 83.3333333333%; + .col-lg-offset-10 { + margin-left: 83.3333333333%; } - .grid-x > .large-11 { - width: 91.6666666667%; + .col-lg-offset-11 { + margin-left: 91.6666666667%; } - .grid-x > .large-12 { - width: 100%; + .col-lg-offset-12 { + margin-left: 100%; } } -.grid-margin-x:not(.grid-x) > .cell { - width: auto; +table { + background-color: transparent; +} +table col[class*=col-] { + position: static; + display: table-column; + float: none; +} +table td[class*=col-], +table th[class*=col-] { + position: static; + display: table-cell; + float: none; } -.grid-margin-y:not(.grid-y) > .cell { - height: auto; +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777777; + text-align: left; } -.grid-margin-x { - margin-left: -0.625rem; - margin-right: -0.625rem; +th { + text-align: left; } -@media print, screen and (min-width: 40em) { - .grid-margin-x { - margin-left: -0.9375rem; - margin-right: -0.9375rem; - } + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; } -.grid-margin-x > .cell { - width: calc(100% - 1.25rem); - margin-left: 0.625rem; - margin-right: 0.625rem; +.table > thead > tr > th, +.table > thead > tr > td, +.table > tbody > tr > th, +.table > tbody > tr > td, +.table > tfoot > tr > th, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #ddd; } -@media print, screen and (min-width: 40em) { - .grid-margin-x > .cell { - width: calc(100% - 1.875rem); - margin-left: 0.9375rem; - margin-right: 0.9375rem; - } +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; } -.grid-margin-x > .auto { - width: auto; +.table > caption + thead > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > th, +.table > thead:first-child > tr:first-child > td { + border-top: 0; } -.grid-margin-x > .shrink { - width: auto; +.table > tbody + tbody { + border-top: 2px solid #ddd; } -.grid-margin-x > .small-1 { - width: calc(8.3333333333% - 1.25rem); +.table .table { + background-color: #fff; } -.grid-margin-x > .small-2 { - width: calc(16.6666666667% - 1.25rem); + +.table-condensed > thead > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > th, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > th, +.table-condensed > tfoot > tr > td { + padding: 5px; } -.grid-margin-x > .small-3 { - width: calc(25% - 1.25rem); + +.table-bordered { + border: 1px solid #ddd; } -.grid-margin-x > .small-4 { - width: calc(33.3333333333% - 1.25rem); +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > th, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > th, +.table-bordered > tfoot > tr > td { + border: 1px solid #ddd; } -.grid-margin-x > .small-5 { - width: calc(41.6666666667% - 1.25rem); +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; } -.grid-margin-x > .small-6 { - width: calc(50% - 1.25rem); + +.table-striped > tbody > tr:nth-of-type(odd) { + background-color: #f9f9f9; } -.grid-margin-x > .small-7 { - width: calc(58.3333333333% - 1.25rem); + +.table-hover > tbody > tr:hover { + background-color: #f5f5f5; } -.grid-margin-x > .small-8 { - width: calc(66.6666666667% - 1.25rem); + +.table > thead > tr > td.active, +.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, +.table > tbody > tr > td.active, +.table > tbody > tr > th.active, +.table > tbody > tr.active > td, +.table > tbody > tr.active > th, +.table > tfoot > tr > td.active, +.table > tfoot > tr > th.active, +.table > tfoot > tr.active > td, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; } -.grid-margin-x > .small-9 { - width: calc(75% - 1.25rem); + +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; } -.grid-margin-x > .small-10 { - width: calc(83.3333333333% - 1.25rem); + +.table > thead > tr > td.success, +.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, +.table > tbody > tr > td.success, +.table > tbody > tr > th.success, +.table > tbody > tr.success > td, +.table > tbody > tr.success > th, +.table > tfoot > tr > td.success, +.table > tfoot > tr > th.success, +.table > tfoot > tr.success > td, +.table > tfoot > tr.success > th { + background-color: #dff0d8; } -.grid-margin-x > .small-11 { - width: calc(91.6666666667% - 1.25rem); + +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; } -.grid-margin-x > .small-12 { - width: calc(100% - 1.25rem); + +.table > thead > tr > td.info, +.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, +.table > tbody > tr > td.info, +.table > tbody > tr > th.info, +.table > tbody > tr.info > td, +.table > tbody > tr.info > th, +.table > tfoot > tr > td.info, +.table > tfoot > tr > th.info, +.table > tfoot > tr.info > td, +.table > tfoot > tr.info > th { + background-color: #d9edf7; } -@media print, screen and (min-width: 40em) { - .grid-margin-x > .auto { - width: auto; - } - .grid-margin-x > .shrink { - width: auto; - } - .grid-margin-x > .small-1 { - width: calc(8.3333333333% - 1.875rem); - } - .grid-margin-x > .small-2 { - width: calc(16.6666666667% - 1.875rem); - } - .grid-margin-x > .small-3 { - width: calc(25% - 1.875rem); - } - .grid-margin-x > .small-4 { - width: calc(33.3333333333% - 1.875rem); - } - .grid-margin-x > .small-5 { - width: calc(41.6666666667% - 1.875rem); - } - .grid-margin-x > .small-6 { - width: calc(50% - 1.875rem); - } - .grid-margin-x > .small-7 { - width: calc(58.3333333333% - 1.875rem); - } - .grid-margin-x > .small-8 { - width: calc(66.6666666667% - 1.875rem); - } - .grid-margin-x > .small-9 { - width: calc(75% - 1.875rem); - } - .grid-margin-x > .small-10 { - width: calc(83.3333333333% - 1.875rem); - } - .grid-margin-x > .small-11 { - width: calc(91.6666666667% - 1.875rem); - } - .grid-margin-x > .small-12 { - width: calc(100% - 1.875rem); - } - .grid-margin-x > .medium-auto { - width: auto; - } - .grid-margin-x > .medium-shrink { - width: auto; - } - .grid-margin-x > .medium-1 { - width: calc(8.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-2 { - width: calc(16.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-3 { - width: calc(25% - 1.875rem); - } - .grid-margin-x > .medium-4 { - width: calc(33.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-5 { - width: calc(41.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-6 { - width: calc(50% - 1.875rem); - } - .grid-margin-x > .medium-7 { - width: calc(58.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-8 { - width: calc(66.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-9 { - width: calc(75% - 1.875rem); - } - .grid-margin-x > .medium-10 { - width: calc(83.3333333333% - 1.875rem); - } - .grid-margin-x > .medium-11 { - width: calc(91.6666666667% - 1.875rem); - } - .grid-margin-x > .medium-12 { - width: calc(100% - 1.875rem); - } + +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; } -@media print, screen and (min-width: 64em) { - .grid-margin-x > .large-auto { - width: auto; - } - .grid-margin-x > .large-shrink { - width: auto; - } - .grid-margin-x > .large-1 { - width: calc(8.3333333333% - 1.875rem); - } - .grid-margin-x > .large-2 { - width: calc(16.6666666667% - 1.875rem); - } - .grid-margin-x > .large-3 { - width: calc(25% - 1.875rem); + +.table > thead > tr > td.warning, +.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, +.table > tbody > tr > td.warning, +.table > tbody > tr > th.warning, +.table > tbody > tr.warning > td, +.table > tbody > tr.warning > th, +.table > tfoot > tr > td.warning, +.table > tfoot > tr > th.warning, +.table > tfoot > tr.warning > td, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} + +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} + +.table > thead > tr > td.danger, +.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, +.table > tbody > tr > td.danger, +.table > tbody > tr > th.danger, +.table > tbody > tr.danger > td, +.table > tbody > tr.danger > th, +.table > tfoot > tr > td.danger, +.table > tfoot > tr > th.danger, +.table > tfoot > tr.danger > td, +.table > tfoot > tr.danger > th { + background-color: #f2dede; +} + +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} + +.table-responsive { + min-height: 0.01%; + overflow-x: auto; +} +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd; } - .grid-margin-x > .large-4 { - width: calc(33.3333333333% - 1.875rem); + .table-responsive > .table { + margin-bottom: 0; } - .grid-margin-x > .large-5 { - width: calc(41.6666666667% - 1.875rem); + .table-responsive > .table > thead > tr > th, +.table-responsive > .table > thead > tr > td, +.table-responsive > .table > tbody > tr > th, +.table-responsive > .table > tbody > tr > td, +.table-responsive > .table > tfoot > tr > th, +.table-responsive > .table > tfoot > tr > td { + white-space: nowrap; } - .grid-margin-x > .large-6 { - width: calc(50% - 1.875rem); + .table-responsive > .table-bordered { + border: 0; } - .grid-margin-x > .large-7 { - width: calc(58.3333333333% - 1.875rem); + .table-responsive > .table-bordered > thead > tr > th:first-child, +.table-responsive > .table-bordered > thead > tr > td:first-child, +.table-responsive > .table-bordered > tbody > tr > th:first-child, +.table-responsive > .table-bordered > tbody > tr > td:first-child, +.table-responsive > .table-bordered > tfoot > tr > th:first-child, +.table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; } - .grid-margin-x > .large-8 { - width: calc(66.6666666667% - 1.875rem); + .table-responsive > .table-bordered > thead > tr > th:last-child, +.table-responsive > .table-bordered > thead > tr > td:last-child, +.table-responsive > .table-bordered > tbody > tr > th:last-child, +.table-responsive > .table-bordered > tbody > tr > td:last-child, +.table-responsive > .table-bordered > tfoot > tr > th:last-child, +.table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; } - .grid-margin-x > .large-9 { - width: calc(75% - 1.875rem); + .table-responsive > .table-bordered > tbody > tr:last-child > th, +.table-responsive > .table-bordered > tbody > tr:last-child > td, +.table-responsive > .table-bordered > tfoot > tr:last-child > th, +.table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; } - .grid-margin-x > .large-10 { - width: calc(83.3333333333% - 1.875rem); +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} + +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: 700; +} + +input[type=search] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-appearance: none; + appearance: none; +} + +input[type=radio], +input[type=checkbox] { + margin: 4px 0 0; + margin-top: 1px \\\\9 ; + line-height: normal; +} +input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], +input[type=checkbox][disabled], +input[type=checkbox].disabled, +fieldset[disabled] input[type=checkbox] { + cursor: not-allowed; +} + +input[type=file] { + display: block; +} + +input[type=range] { + display: block; + width: 100%; +} + +select[multiple], +select[size] { + height: auto; +} + +input[type=file]:focus, +input[type=radio]:focus, +input[type=checkbox]:focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; +} + +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); +} +.form-control::-moz-placeholder { + color: #999; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #999; +} +.form-control::-webkit-input-placeholder { + color: #999; +} +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} +.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { + background-color: #eeeeee; + opacity: 1; +} +.form-control[disabled], fieldset[disabled] .form-control { + cursor: not-allowed; +} + +textarea.form-control { + height: auto; +} + +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type=date].form-control, +input[type=time].form-control, +input[type=datetime-local].form-control, +input[type=month].form-control { + line-height: 34px; } - .grid-margin-x > .large-11 { - width: calc(91.6666666667% - 1.875rem); + input[type=date].input-sm, +.input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date], +input[type=time].input-sm, +.input-group-sm > .input-group-btn > input[type=time].btn, +.input-group-sm input[type=time], +input[type=datetime-local].input-sm, +.input-group-sm > .input-group-btn > input[type=datetime-local].btn, +.input-group-sm input[type=datetime-local], +input[type=month].input-sm, +.input-group-sm > .input-group-btn > input[type=month].btn, +.input-group-sm input[type=month] { + line-height: 30px; } - .grid-margin-x > .large-12 { - width: calc(100% - 1.875rem); + input[type=date].input-lg, +.input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date], +input[type=time].input-lg, +.input-group-lg > .input-group-btn > input[type=time].btn, +.input-group-lg input[type=time], +input[type=datetime-local].input-lg, +.input-group-lg > .input-group-btn > input[type=datetime-local].btn, +.input-group-lg input[type=datetime-local], +input[type=month].input-lg, +.input-group-lg > .input-group-btn > input[type=month].btn, +.input-group-lg input[type=month] { + line-height: 46px; } } +.form-group { + margin-bottom: 15px; +} -.grid-padding-x .grid-padding-x { - margin-right: -0.625rem; - margin-left: -0.625rem; +.radio, +.checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px; +} +.radio.disabled label, fieldset[disabled] .radio label, +.checkbox.disabled label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + cursor: pointer; +} + +.radio input[type=radio], +.radio-inline input[type=radio], +.checkbox input[type=checkbox], +.checkbox-inline input[type=checkbox] { + position: absolute; + margin-top: 4px \\\\9 ; + margin-left: -20px; +} + +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} + +.radio-inline, +.checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + vertical-align: middle; + cursor: pointer; +} +.radio-inline.disabled, fieldset[disabled] .radio-inline, +.checkbox-inline.disabled, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} + +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} + +.form-control-static { + min-height: 34px; + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; +} +.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, +.input-group-lg > .form-control-static.input-group-addon, +.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, +.input-group-sm > .form-control-static.input-group-addon, +.input-group-sm > .input-group-btn > .form-control-static.btn { + padding-right: 0; + padding-left: 0; +} + +.input-sm, .input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +select.input-sm, .input-group-sm > select.form-control, +.input-group-sm > select.input-group-addon, +.input-group-sm > .input-group-btn > select.btn { + height: 30px; + line-height: 30px; } -@media print, screen and (min-width: 40em) { - .grid-padding-x .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; - } + +textarea.input-sm, .input-group-sm > textarea.form-control, +.input-group-sm > textarea.input-group-addon, +.input-group-sm > .input-group-btn > textarea.btn, +select[multiple].input-sm, +.input-group-sm > select[multiple].form-control, +.input-group-sm > select[multiple].input-group-addon, +.input-group-sm > .input-group-btn > select[multiple].btn { + height: auto; } -.grid-container:not(.full) > .grid-padding-x { - margin-right: -0.625rem; - margin-left: -0.625rem; + +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; } -@media print, screen and (min-width: 40em) { - .grid-container:not(.full) > .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; - } +.form-group-sm select.form-control { + height: 30px; + line-height: 30px; } -.grid-padding-x > .cell { - padding-right: 0.625rem; - padding-left: 0.625rem; +.form-group-sm textarea.form-control, +.form-group-sm select[multiple].form-control { + height: auto; } -@media print, screen and (min-width: 40em) { - .grid-padding-x > .cell { - padding-right: 0.9375rem; - padding-left: 0.9375rem; - } +.form-group-sm .form-control-static { + height: 30px; + min-height: 32px; + padding: 6px 10px; + font-size: 12px; + line-height: 1.5; } -.small-up-1 > .cell { - width: 100%; +.input-lg, .input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; } -.small-up-2 > .cell { - width: 50%; +select.input-lg, .input-group-lg > select.form-control, +.input-group-lg > select.input-group-addon, +.input-group-lg > .input-group-btn > select.btn { + height: 46px; + line-height: 46px; } -.small-up-3 > .cell { - width: 33.3333333333%; +textarea.input-lg, .input-group-lg > textarea.form-control, +.input-group-lg > textarea.input-group-addon, +.input-group-lg > .input-group-btn > textarea.btn, +select[multiple].input-lg, +.input-group-lg > select[multiple].form-control, +.input-group-lg > select[multiple].input-group-addon, +.input-group-lg > .input-group-btn > select[multiple].btn { + height: auto; } -.small-up-4 > .cell { - width: 25%; +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; } - -.small-up-5 > .cell { - width: 20%; +.form-group-lg select.form-control { + height: 46px; + line-height: 46px; } - -.small-up-6 > .cell { - width: 16.6666666667%; +.form-group-lg textarea.form-control, +.form-group-lg select[multiple].form-control { + height: auto; } - -.small-up-7 > .cell { - width: 14.2857142857%; +.form-group-lg .form-control-static { + height: 46px; + min-height: 38px; + padding: 11px 16px; + font-size: 18px; + line-height: 1.3333333; } -.small-up-8 > .cell { - width: 12.5%; +.has-feedback { + position: relative; } - -@media print, screen and (min-width: 40em) { - .medium-up-1 > .cell { - width: 100%; - } - - .medium-up-2 > .cell { - width: 50%; - } - - .medium-up-3 > .cell { - width: 33.3333333333%; - } - - .medium-up-4 > .cell { - width: 25%; - } - - .medium-up-5 > .cell { - width: 20%; - } - - .medium-up-6 > .cell { - width: 16.6666666667%; - } - - .medium-up-7 > .cell { - width: 14.2857142857%; - } - - .medium-up-8 > .cell { - width: 12.5%; - } +.has-feedback .form-control { + padding-right: 42.5px; } -@media print, screen and (min-width: 64em) { - .large-up-1 > .cell { - width: 100%; - } - - .large-up-2 > .cell { - width: 50%; - } - - .large-up-3 > .cell { - width: 33.3333333333%; - } - - .large-up-4 > .cell { - width: 25%; - } - .large-up-5 > .cell { - width: 20%; - } +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none; +} - .large-up-6 > .cell { - width: 16.6666666667%; - } +.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, +.input-group-lg > .input-group-addon + .form-control-feedback, +.input-group-lg > .input-group-btn > .btn + .form-control-feedback, +.input-group-lg + .form-control-feedback, +.form-group-lg .form-control + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; +} - .large-up-7 > .cell { - width: 14.2857142857%; - } +.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, +.input-group-sm > .input-group-addon + .form-control-feedback, +.input-group-sm > .input-group-btn > .btn + .form-control-feedback, +.input-group-sm + .form-control-feedback, +.form-group-sm .form-control + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; +} - .large-up-8 > .cell { - width: 12.5%; - } +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { + color: #3c763d; } -.grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.25rem); +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - -.grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.25rem); +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; } - -.grid-margin-x.small-up-3 > .cell { - width: calc(33.3333333333% - 1.25rem); +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d; } - -.grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.25rem); +.has-success .form-control-feedback { + color: #3c763d; } -.grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.25rem); +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { + color: #8a6d3b; } - -.grid-margin-x.small-up-6 > .cell { - width: calc(16.6666666667% - 1.25rem); +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } - -.grid-margin-x.small-up-7 > .cell { - width: calc(14.2857142857% - 1.25rem); +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; } - -.grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.25rem); +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b; +} +.has-warning .form-control-feedback { + color: #8a6d3b; } -@media print, screen and (min-width: 40em) { - .grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.875rem); - } - - .grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.875rem); - } - - .grid-margin-x.small-up-3 > .cell { - width: calc(33.3333333333% - 1.875rem); - } +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { + color: #a94442; +} +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; +} +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442; +} +.has-error .form-control-feedback { + color: #a94442; +} - .grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.875rem); - } +.has-feedback label ~ .form-control-feedback { + top: 25px; +} +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; +} - .grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.875rem); - } +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} - .grid-margin-x.small-up-6 > .cell { - width: calc(16.6666666667% - 1.875rem); +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; } - - .grid-margin-x.small-up-7 > .cell { - width: calc(14.2857142857% - 1.875rem); + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; } - - .grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.875rem); + .form-inline .form-control-static { + display: inline-block; } - - .grid-margin-x.medium-up-1 > .cell { - width: calc(100% - 1.875rem); + .form-inline .input-group { + display: inline-table; + vertical-align: middle; } - - .grid-margin-x.medium-up-2 > .cell { - width: calc(50% - 1.875rem); + .form-inline .input-group .input-group-addon, +.form-inline .input-group .input-group-btn, +.form-inline .input-group .form-control { + width: auto; } - - .grid-margin-x.medium-up-3 > .cell { - width: calc(33.3333333333% - 1.875rem); + .form-inline .input-group > .form-control { + width: 100%; } - - .grid-margin-x.medium-up-4 > .cell { - width: calc(25% - 1.875rem); + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; } - - .grid-margin-x.medium-up-5 > .cell { - width: calc(20% - 1.875rem); + .form-inline .radio, +.form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; } - - .grid-margin-x.medium-up-6 > .cell { - width: calc(16.6666666667% - 1.875rem); + .form-inline .radio label, +.form-inline .checkbox label { + padding-left: 0; } - - .grid-margin-x.medium-up-7 > .cell { - width: calc(14.2857142857% - 1.875rem); + .form-inline .radio input[type=radio], +.form-inline .checkbox input[type=checkbox] { + position: relative; + margin-left: 0; } - - .grid-margin-x.medium-up-8 > .cell { - width: calc(12.5% - 1.875rem); + .form-inline .has-feedback .form-control-feedback { + top: 0; } } -@media print, screen and (min-width: 64em) { - .grid-margin-x.large-up-1 > .cell { - width: calc(100% - 1.875rem); - } - - .grid-margin-x.large-up-2 > .cell { - width: calc(50% - 1.875rem); - } - .grid-margin-x.large-up-3 > .cell { - width: calc(33.3333333333% - 1.875rem); +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; +} +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; +} +.form-horizontal .form-group:before, .form-horizontal .form-group:after { + display: table; + content: \\" \\"; +} +.form-horizontal .form-group:after { + clear: both; +} +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 7px; + margin-bottom: 0; + text-align: right; } - - .grid-margin-x.large-up-4 > .cell { - width: calc(25% - 1.875rem); +} +.form-horizontal .has-feedback .form-control-feedback { + right: 15px; +} +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 11px; + font-size: 18px; } - - .grid-margin-x.large-up-5 > .cell { - width: calc(20% - 1.875rem); +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + font-size: 12px; } +} - .grid-margin-x.large-up-6 > .cell { - width: calc(16.6666666667% - 1.875rem); - } +.btn { + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + white-space: nowrap; + vertical-align: middle; + touch-action: manipulation; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, .btn:focus, .btn.focus { + color: #333; + text-decoration: none; +} +.btn:active, .btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn.disabled, .btn[disabled], fieldset[disabled] .btn { + cursor: not-allowed; + filter: alpha(opacity=65); + opacity: 0.65; + -webkit-box-shadow: none; + box-shadow: none; +} - .grid-margin-x.large-up-7 > .cell { - width: calc(14.2857142857% - 1.875rem); - } +a.btn.disabled, fieldset[disabled] a.btn { + pointer-events: none; +} - .grid-margin-x.large-up-8 > .cell { - width: calc(12.5% - 1.875rem); - } +.btn-default { + color: #333; + background-color: #fff; + border-color: #ccc; } -.small-margin-collapse { - margin-right: 0; - margin-left: 0; +.btn-default:focus, .btn-default.focus { + color: #333; + background-color: #e6e6e6; + border-color: #8c8c8c; } -.small-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; +.btn-default:hover { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; } -.small-margin-collapse > .small-1 { - width: 8.3333333333%; +.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { + color: #333; + background-color: #e6e6e6; + background-image: none; + border-color: #adadad; } -.small-margin-collapse > .small-2 { - width: 16.6666666667%; +.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { + color: #333; + background-color: #d4d4d4; + border-color: #8c8c8c; } -.small-margin-collapse > .small-3 { - width: 25%; +.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { + background-color: #fff; + border-color: #ccc; } -.small-margin-collapse > .small-4 { - width: 33.3333333333%; +.btn-default .badge { + color: #fff; + background-color: #333; } -.small-margin-collapse > .small-5 { - width: 41.6666666667%; + +.btn-primary { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4; } -.small-margin-collapse > .small-6 { - width: 50%; +.btn-primary:focus, .btn-primary.focus { + color: #fff; + background-color: #286090; + border-color: #122b40; } -.small-margin-collapse > .small-7 { - width: 58.3333333333%; +.btn-primary:hover { + color: #fff; + background-color: #286090; + border-color: #204d74; } -.small-margin-collapse > .small-8 { - width: 66.6666666667%; +.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #286090; + background-image: none; + border-color: #204d74; } -.small-margin-collapse > .small-9 { - width: 75%; +.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { + color: #fff; + background-color: #204d74; + border-color: #122b40; } -.small-margin-collapse > .small-10 { - width: 83.3333333333%; +.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { + background-color: #337ab7; + border-color: #2e6da4; } -.small-margin-collapse > .small-11 { - width: 91.6666666667%; +.btn-primary .badge { + color: #337ab7; + background-color: #fff; } -.small-margin-collapse > .small-12 { - width: 100%; + +.btn-success { + color: #fff; + background-color: #5cb85c; + border-color: #4cae4c; } -@media print, screen and (min-width: 40em) { - .small-margin-collapse > .medium-1 { - width: 8.3333333333%; - } - .small-margin-collapse > .medium-2 { - width: 16.6666666667%; - } - .small-margin-collapse > .medium-3 { - width: 25%; - } - .small-margin-collapse > .medium-4 { - width: 33.3333333333%; - } - .small-margin-collapse > .medium-5 { - width: 41.6666666667%; - } - .small-margin-collapse > .medium-6 { - width: 50%; - } - .small-margin-collapse > .medium-7 { - width: 58.3333333333%; - } - .small-margin-collapse > .medium-8 { - width: 66.6666666667%; - } - .small-margin-collapse > .medium-9 { - width: 75%; - } - .small-margin-collapse > .medium-10 { - width: 83.3333333333%; - } - .small-margin-collapse > .medium-11 { - width: 91.6666666667%; - } - .small-margin-collapse > .medium-12 { - width: 100%; - } +.btn-success:focus, .btn-success.focus { + color: #fff; + background-color: #449d44; + border-color: #255625; } -@media print, screen and (min-width: 64em) { - .small-margin-collapse > .large-1 { - width: 8.3333333333%; - } - .small-margin-collapse > .large-2 { - width: 16.6666666667%; - } - .small-margin-collapse > .large-3 { - width: 25%; - } - .small-margin-collapse > .large-4 { - width: 33.3333333333%; - } - .small-margin-collapse > .large-5 { - width: 41.6666666667%; - } - .small-margin-collapse > .large-6 { - width: 50%; - } - .small-margin-collapse > .large-7 { - width: 58.3333333333%; - } - .small-margin-collapse > .large-8 { - width: 66.6666666667%; - } - .small-margin-collapse > .large-9 { - width: 75%; - } - .small-margin-collapse > .large-10 { - width: 83.3333333333%; - } - .small-margin-collapse > .large-11 { - width: 91.6666666667%; - } - .small-margin-collapse > .large-12 { - width: 100%; - } +.btn-success:hover { + color: #fff; + background-color: #449d44; + border-color: #398439; } - -.small-padding-collapse { - margin-right: 0; - margin-left: 0; +.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { + color: #fff; + background-color: #449d44; + background-image: none; + border-color: #398439; } -.small-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; +.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { + color: #fff; + background-color: #398439; + border-color: #255625; +} +.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #fff; } -@media print, screen and (min-width: 40em) { - .medium-margin-collapse { - margin-right: 0; - margin-left: 0; - } - .medium-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; - } +.btn-info { + color: #fff; + background-color: #5bc0de; + border-color: #46b8da; } -@media print, screen and (min-width: 40em) { - .medium-margin-collapse > .small-1 { - width: 8.3333333333%; - } - .medium-margin-collapse > .small-2 { - width: 16.6666666667%; - } - .medium-margin-collapse > .small-3 { - width: 25%; - } - .medium-margin-collapse > .small-4 { - width: 33.3333333333%; - } - .medium-margin-collapse > .small-5 { - width: 41.6666666667%; - } - .medium-margin-collapse > .small-6 { - width: 50%; - } - .medium-margin-collapse > .small-7 { - width: 58.3333333333%; - } - .medium-margin-collapse > .small-8 { - width: 66.6666666667%; - } - .medium-margin-collapse > .small-9 { - width: 75%; - } - .medium-margin-collapse > .small-10 { - width: 83.3333333333%; - } - .medium-margin-collapse > .small-11 { - width: 91.6666666667%; - } - .medium-margin-collapse > .small-12 { - width: 100%; - } +.btn-info:focus, .btn-info.focus { + color: #fff; + background-color: #31b0d5; + border-color: #1b6d85; } -@media print, screen and (min-width: 40em) { - .medium-margin-collapse > .medium-1 { - width: 8.3333333333%; - } - .medium-margin-collapse > .medium-2 { - width: 16.6666666667%; - } - .medium-margin-collapse > .medium-3 { - width: 25%; - } - .medium-margin-collapse > .medium-4 { - width: 33.3333333333%; - } - .medium-margin-collapse > .medium-5 { - width: 41.6666666667%; - } - .medium-margin-collapse > .medium-6 { - width: 50%; - } - .medium-margin-collapse > .medium-7 { - width: 58.3333333333%; - } - .medium-margin-collapse > .medium-8 { - width: 66.6666666667%; - } - .medium-margin-collapse > .medium-9 { - width: 75%; - } - .medium-margin-collapse > .medium-10 { - width: 83.3333333333%; - } - .medium-margin-collapse > .medium-11 { - width: 91.6666666667%; - } - .medium-margin-collapse > .medium-12 { - width: 100%; - } +.btn-info:hover { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; } -@media print, screen and (min-width: 64em) { - .medium-margin-collapse > .large-1 { - width: 8.3333333333%; - } - .medium-margin-collapse > .large-2 { - width: 16.6666666667%; - } - .medium-margin-collapse > .large-3 { - width: 25%; - } - .medium-margin-collapse > .large-4 { - width: 33.3333333333%; - } - .medium-margin-collapse > .large-5 { - width: 41.6666666667%; - } - .medium-margin-collapse > .large-6 { - width: 50%; - } - .medium-margin-collapse > .large-7 { - width: 58.3333333333%; - } - .medium-margin-collapse > .large-8 { - width: 66.6666666667%; - } - .medium-margin-collapse > .large-9 { - width: 75%; - } - .medium-margin-collapse > .large-10 { - width: 83.3333333333%; - } - .medium-margin-collapse > .large-11 { - width: 91.6666666667%; - } - .medium-margin-collapse > .large-12 { - width: 100%; - } +.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { + color: #fff; + background-color: #31b0d5; + background-image: none; + border-color: #269abc; } - -@media print, screen and (min-width: 40em) { - .medium-padding-collapse { - margin-right: 0; - margin-left: 0; - } - .medium-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; - } +.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { + color: #fff; + background-color: #269abc; + border-color: #1b6d85; +} +.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #fff; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse { - margin-right: 0; - margin-left: 0; - } - .large-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; - } +.btn-warning { + color: #fff; + background-color: #f0ad4e; + border-color: #eea236; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse > .small-1 { - width: 8.3333333333%; - } - .large-margin-collapse > .small-2 { - width: 16.6666666667%; - } - .large-margin-collapse > .small-3 { - width: 25%; - } - .large-margin-collapse > .small-4 { - width: 33.3333333333%; - } - .large-margin-collapse > .small-5 { - width: 41.6666666667%; - } - .large-margin-collapse > .small-6 { - width: 50%; - } - .large-margin-collapse > .small-7 { - width: 58.3333333333%; - } - .large-margin-collapse > .small-8 { - width: 66.6666666667%; - } - .large-margin-collapse > .small-9 { - width: 75%; - } - .large-margin-collapse > .small-10 { - width: 83.3333333333%; - } - .large-margin-collapse > .small-11 { - width: 91.6666666667%; - } - .large-margin-collapse > .small-12 { - width: 100%; - } +.btn-warning:focus, .btn-warning.focus { + color: #fff; + background-color: #ec971f; + border-color: #985f0d; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse > .medium-1 { - width: 8.3333333333%; - } - .large-margin-collapse > .medium-2 { - width: 16.6666666667%; - } - .large-margin-collapse > .medium-3 { - width: 25%; - } - .large-margin-collapse > .medium-4 { - width: 33.3333333333%; - } - .large-margin-collapse > .medium-5 { - width: 41.6666666667%; - } - .large-margin-collapse > .medium-6 { - width: 50%; - } - .large-margin-collapse > .medium-7 { - width: 58.3333333333%; - } - .large-margin-collapse > .medium-8 { - width: 66.6666666667%; - } - .large-margin-collapse > .medium-9 { - width: 75%; - } - .large-margin-collapse > .medium-10 { - width: 83.3333333333%; - } - .large-margin-collapse > .medium-11 { - width: 91.6666666667%; - } - .large-margin-collapse > .medium-12 { - width: 100%; - } +.btn-warning:hover { + color: #fff; + background-color: #ec971f; + border-color: #d58512; } -@media print, screen and (min-width: 64em) { - .large-margin-collapse > .large-1 { - width: 8.3333333333%; - } - .large-margin-collapse > .large-2 { - width: 16.6666666667%; - } - .large-margin-collapse > .large-3 { - width: 25%; - } - .large-margin-collapse > .large-4 { - width: 33.3333333333%; - } - .large-margin-collapse > .large-5 { - width: 41.6666666667%; - } - .large-margin-collapse > .large-6 { - width: 50%; - } - .large-margin-collapse > .large-7 { - width: 58.3333333333%; - } - .large-margin-collapse > .large-8 { - width: 66.6666666667%; - } - .large-margin-collapse > .large-9 { - width: 75%; - } - .large-margin-collapse > .large-10 { - width: 83.3333333333%; - } - .large-margin-collapse > .large-11 { - width: 91.6666666667%; - } - .large-margin-collapse > .large-12 { - width: 100%; - } +.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { + color: #fff; + background-color: #ec971f; + background-image: none; + border-color: #d58512; +} +.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { + color: #fff; + background-color: #d58512; + border-color: #985f0d; +} +.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; } -@media print, screen and (min-width: 64em) { - .large-padding-collapse { - margin-right: 0; - margin-left: 0; - } - .large-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; - } +.btn-danger { + color: #fff; + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger:focus, .btn-danger.focus { + color: #fff; + background-color: #c9302c; + border-color: #761c19; } - -.small-offset-0 { - margin-left: 0%; +.btn-danger:hover { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; } - -.grid-margin-x > .small-offset-0 { - margin-left: calc(0% + 1.25rem / 2); +.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #c9302c; + background-image: none; + border-color: #ac2925; } - -.small-offset-1 { - margin-left: 8.3333333333%; +.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { + color: #fff; + background-color: #ac2925; + border-color: #761c19; } - -.grid-margin-x > .small-offset-1 { - margin-left: calc(8.3333333333% + 1.25rem / 2); +.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { + background-color: #d9534f; + border-color: #d43f3a; } - -.small-offset-2 { - margin-left: 16.6666666667%; +.btn-danger .badge { + color: #d9534f; + background-color: #fff; } -.grid-margin-x > .small-offset-2 { - margin-left: calc(16.6666666667% + 1.25rem / 2); +.btn-link { + font-weight: 400; + color: #337ab7; + border-radius: 0; } - -.small-offset-3 { - margin-left: 25%; +.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; } - -.grid-margin-x > .small-offset-3 { - margin-left: calc(25% + 1.25rem / 2); +.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { + border-color: transparent; } - -.small-offset-4 { - margin-left: 33.3333333333%; +.btn-link:hover, .btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; } - -.grid-margin-x > .small-offset-4 { - margin-left: calc(33.3333333333% + 1.25rem / 2); +.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { + color: #777777; + text-decoration: none; } -.small-offset-5 { - margin-left: 41.6666666667%; +.btn-lg, .btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; } -.grid-margin-x > .small-offset-5 { - margin-left: calc(41.6666666667% + 1.25rem / 2); +.btn-sm, .btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; } -.small-offset-6 { - margin-left: 50%; +.btn-xs, .btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; } -.grid-margin-x > .small-offset-6 { - margin-left: calc(50% + 1.25rem / 2); +.btn-block { + display: block; + width: 100%; } -.small-offset-7 { - margin-left: 58.3333333333%; +.btn-block + .btn-block { + margin-top: 5px; } -.grid-margin-x > .small-offset-7 { - margin-left: calc(58.3333333333% + 1.25rem / 2); +input[type=submit].btn-block, +input[type=reset].btn-block, +input[type=button].btn-block { + width: 100%; } -.small-offset-8 { - margin-left: 66.6666666667%; +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } - -.grid-margin-x > .small-offset-8 { - margin-left: calc(66.6666666667% + 1.25rem / 2); +.fade.in { + opacity: 1; } -.small-offset-9 { - margin-left: 75%; +.collapse { + display: none; } - -.grid-margin-x > .small-offset-9 { - margin-left: calc(75% + 1.25rem / 2); +.collapse.in { + display: block; } -.small-offset-10 { - margin-left: 83.3333333333%; +tr.collapse.in { + display: table-row; } -.grid-margin-x > .small-offset-10 { - margin-left: calc(83.3333333333% + 1.25rem / 2); +tbody.collapse.in { + display: table-row-group; } -.small-offset-11 { - margin-left: 91.6666666667%; +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-property: height, visibility; + transition-property: height, visibility; + -webkit-transition-duration: 0.35s; + transition-duration: 0.35s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease; } -.grid-margin-x > .small-offset-11 { - margin-left: calc(91.6666666667% + 1.25rem / 2); +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-top: 4px solid \\\\9 ; + border-right: 4px solid transparent; + border-left: 4px solid transparent; } -@media print, screen and (min-width: 40em) { - .medium-offset-0 { - margin-left: 0%; - } - - .grid-margin-x > .medium-offset-0 { - margin-left: calc(0% + 1.875rem / 2); - } - - .medium-offset-1 { - margin-left: 8.3333333333%; - } - - .grid-margin-x > .medium-offset-1 { - margin-left: calc(8.3333333333% + 1.875rem / 2); - } - - .medium-offset-2 { - margin-left: 16.6666666667%; - } - - .grid-margin-x > .medium-offset-2 { - margin-left: calc(16.6666666667% + 1.875rem / 2); - } - - .medium-offset-3 { - margin-left: 25%; - } - - .grid-margin-x > .medium-offset-3 { - margin-left: calc(25% + 1.875rem / 2); - } - - .medium-offset-4 { - margin-left: 33.3333333333%; - } - - .grid-margin-x > .medium-offset-4 { - margin-left: calc(33.3333333333% + 1.875rem / 2); - } - - .medium-offset-5 { - margin-left: 41.6666666667%; - } - - .grid-margin-x > .medium-offset-5 { - margin-left: calc(41.6666666667% + 1.875rem / 2); - } - - .medium-offset-6 { - margin-left: 50%; - } - - .grid-margin-x > .medium-offset-6 { - margin-left: calc(50% + 1.875rem / 2); - } - - .medium-offset-7 { - margin-left: 58.3333333333%; - } - - .grid-margin-x > .medium-offset-7 { - margin-left: calc(58.3333333333% + 1.875rem / 2); - } - - .medium-offset-8 { - margin-left: 66.6666666667%; - } - - .grid-margin-x > .medium-offset-8 { - margin-left: calc(66.6666666667% + 1.875rem / 2); - } - - .medium-offset-9 { - margin-left: 75%; - } - - .grid-margin-x > .medium-offset-9 { - margin-left: calc(75% + 1.875rem / 2); - } - - .medium-offset-10 { - margin-left: 83.3333333333%; - } - - .grid-margin-x > .medium-offset-10 { - margin-left: calc(83.3333333333% + 1.875rem / 2); - } - - .medium-offset-11 { - margin-left: 91.6666666667%; - } - - .grid-margin-x > .medium-offset-11 { - margin-left: calc(91.6666666667% + 1.875rem / 2); - } +.dropup, +.dropdown { + position: relative; } -@media print, screen and (min-width: 64em) { - .large-offset-0 { - margin-left: 0%; - } - - .grid-margin-x > .large-offset-0 { - margin-left: calc(0% + 1.875rem / 2); - } - - .large-offset-1 { - margin-left: 8.3333333333%; - } - - .grid-margin-x > .large-offset-1 { - margin-left: calc(8.3333333333% + 1.875rem / 2); - } - - .large-offset-2 { - margin-left: 16.6666666667%; - } - - .grid-margin-x > .large-offset-2 { - margin-left: calc(16.6666666667% + 1.875rem / 2); - } - - .large-offset-3 { - margin-left: 25%; - } - - .grid-margin-x > .large-offset-3 { - margin-left: calc(25% + 1.875rem / 2); - } - - .large-offset-4 { - margin-left: 33.3333333333%; - } - - .grid-margin-x > .large-offset-4 { - margin-left: calc(33.3333333333% + 1.875rem / 2); - } - - .large-offset-5 { - margin-left: 41.6666666667%; - } - - .grid-margin-x > .large-offset-5 { - margin-left: calc(41.6666666667% + 1.875rem / 2); - } - - .large-offset-6 { - margin-left: 50%; - } - - .grid-margin-x > .large-offset-6 { - margin-left: calc(50% + 1.875rem / 2); - } - - .large-offset-7 { - margin-left: 58.3333333333%; - } - - .grid-margin-x > .large-offset-7 { - margin-left: calc(58.3333333333% + 1.875rem / 2); - } - - .large-offset-8 { - margin-left: 66.6666666667%; - } - - .grid-margin-x > .large-offset-8 { - margin-left: calc(66.6666666667% + 1.875rem / 2); - } - - .large-offset-9 { - margin-left: 75%; - } - - .grid-margin-x > .large-offset-9 { - margin-left: calc(75% + 1.875rem / 2); - } - - .large-offset-10 { - margin-left: 83.3333333333%; - } - - .grid-margin-x > .large-offset-10 { - margin-left: calc(83.3333333333% + 1.875rem / 2); - } - - .large-offset-11 { - margin-left: 91.6666666667%; - } - .grid-margin-x > .large-offset-11 { - margin-left: calc(91.6666666667% + 1.875rem / 2); - } -} -.grid-y { - display: flex; - flex-flow: column nowrap; -} -.grid-y > .cell { - height: auto; - max-height: none; -} -.grid-y > .auto { - height: auto; -} -.grid-y > .shrink { - height: auto; -} -.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { - flex-basis: auto; -} -@media print, screen and (min-width: 40em) { - .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { - flex-basis: auto; - } -} -@media print, screen and (min-width: 64em) { - .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { - flex-basis: auto; - } -} -.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 { - flex: 0 0 auto; -} -.grid-y > .small-1 { - height: 8.3333333333%; +.dropdown-toggle:focus { + outline: 0; } -.grid-y > .small-2 { - height: 16.6666666667%; + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); } -.grid-y > .small-3 { - height: 25%; +.dropdown-menu.pull-right { + right: 0; + left: auto; } -.grid-y > .small-4 { - height: 33.3333333333%; +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; } -.grid-y > .small-5 { - height: 41.6666666667%; +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: 400; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; } -.grid-y > .small-6 { - height: 50%; +.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; } -.grid-y > .small-7 { - height: 58.3333333333%; + +.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0; } -.grid-y > .small-8 { - height: 66.6666666667%; + +.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { + color: #777777; } -.grid-y > .small-9 { - height: 75%; +.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } -.grid-y > .small-10 { - height: 83.3333333333%; + +.open > .dropdown-menu { + display: block; } -.grid-y > .small-11 { - height: 91.6666666667%; +.open > a { + outline: 0; } -.grid-y > .small-12 { - height: 100%; + +.dropdown-menu-right { + right: 0; + left: auto; } -@media print, screen and (min-width: 40em) { - .grid-y > .medium-auto { - flex: 1 1 0; - height: auto; - } - .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink { - flex: 0 0 auto; - } - .grid-y > .medium-shrink { - height: auto; - } - .grid-y > .medium-1 { - height: 8.3333333333%; - } - .grid-y > .medium-2 { - height: 16.6666666667%; - } - .grid-y > .medium-3 { - height: 25%; - } - .grid-y > .medium-4 { - height: 33.3333333333%; - } - .grid-y > .medium-5 { - height: 41.6666666667%; - } - .grid-y > .medium-6 { - height: 50%; - } - .grid-y > .medium-7 { - height: 58.3333333333%; - } - .grid-y > .medium-8 { - height: 66.6666666667%; - } - .grid-y > .medium-9 { - height: 75%; - } - .grid-y > .medium-10 { - height: 83.3333333333%; - } - .grid-y > .medium-11 { - height: 91.6666666667%; - } - .grid-y > .medium-12 { - height: 100%; - } + +.dropdown-menu-left { + right: auto; + left: 0; } -@media print, screen and (min-width: 64em) { - .grid-y > .large-auto { - flex: 1 1 0; - height: auto; - } - .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink { - flex: 0 0 auto; - } - .grid-y > .large-shrink { - height: auto; - } - .grid-y > .large-1 { - height: 8.3333333333%; - } - .grid-y > .large-2 { - height: 16.6666666667%; - } - .grid-y > .large-3 { - height: 25%; - } - .grid-y > .large-4 { - height: 33.3333333333%; - } - .grid-y > .large-5 { - height: 41.6666666667%; - } - .grid-y > .large-6 { - height: 50%; - } - .grid-y > .large-7 { - height: 58.3333333333%; - } - .grid-y > .large-8 { - height: 66.6666666667%; - } - .grid-y > .large-9 { - height: 75%; - } - .grid-y > .large-10 { - height: 83.3333333333%; - } - .grid-y > .large-11 { - height: 91.6666666667%; - } - .grid-y > .large-12 { - height: 100%; - } + +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #777777; + white-space: nowrap; } -.grid-padding-y .grid-padding-y { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; } -@media print, screen and (min-width: 40em) { - .grid-padding-y .grid-padding-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; - } + +.pull-right > .dropdown-menu { + right: 0; + left: auto; } -.grid-padding-y > .cell { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + content: \\"\\"; + border-top: 0; + border-bottom: 4px dashed; + border-bottom: 4px solid \\\\9 ; } -@media print, screen and (min-width: 40em) { - .grid-padding-y > .cell { - padding-top: 0.9375rem; - padding-bottom: 0.9375rem; - } +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px; } -.grid-margin-y { - margin-top: -0.625rem; - margin-bottom: -0.625rem; -} -@media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; } -} -.grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; -} -@media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; + .navbar-right .dropdown-menu-left { + left: 0; + right: auto; } } -.grid-margin-y > .auto { - height: auto; +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; } -.grid-margin-y > .shrink { - height: auto; +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; } -.grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.25rem); +.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:hover, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 2; } -.grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.25rem); + +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; } -.grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); + +.btn-toolbar { + margin-left: -5px; } -.grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.25rem); +.btn-toolbar:before, .btn-toolbar:after { + display: table; + content: \\" \\"; } -.grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.25rem); +.btn-toolbar:after { + clear: both; } -.grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); +.btn-toolbar .btn, +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; } -.grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.25rem); +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; } -.grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.25rem); + +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; } -.grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); + +.btn-group > .btn:first-child { + margin-left: 0; } -.grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.25rem); +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } -.grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.25rem); + +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } -.grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); + +.btn-group > .btn-group { + float: left; } -@media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; - } - .grid-margin-y > .shrink { - height: auto; - } - .grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); - } - .grid-margin-y > .medium-auto { - height: auto; - } - .grid-margin-y > .medium-shrink { - height: auto; - } - .grid-margin-y > .medium-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .medium-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .medium-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .medium-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); - } + +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; } -@media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; - } - .grid-margin-y > .large-shrink { - height: auto; - } - .grid-margin-y > .large-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .large-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .large-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .large-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .large-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .large-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .large-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .large-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); - } + +.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } -.grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - width: 100vw; +.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } -.cell .grid-frame { - width: 100%; +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; } -.cell-block { - overflow-x: auto; - max-width: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; } -.cell-block-y { - overflow-y: auto; - max-height: 100%; - min-height: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; +.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; } -.cell-block-container { - display: flex; - flex-direction: column; - max-height: 100%; +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } -.cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; } -@media print, screen and (min-width: 40em) { - .medium-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - width: 100vw; - } - - .cell .medium-grid-frame { - width: 100%; - } - - .medium-cell-block { - overflow-x: auto; - max-width: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - - .medium-cell-block-container { - display: flex; - flex-direction: column; - max-height: 100%; - } - .medium-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; - } - - .medium-cell-block-y { - overflow-y: auto; - max-height: 100%; - min-height: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } +.btn .caret { + margin-left: 0; } -@media print, screen and (min-width: 64em) { - .large-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - width: 100vw; - } - - .cell .large-grid-frame { - width: 100%; - } - - .large-cell-block { - overflow-x: auto; - max-width: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .large-cell-block-container { - display: flex; - flex-direction: column; - max-height: 100%; - } - .large-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; - } +.btn-lg .caret, .btn-group-lg > .btn .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} - .large-cell-block-y { - overflow-y: auto; - max-height: 100%; - min-height: 100%; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } +.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { + border-width: 0 5px 5px; } -.grid-y.grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - height: 100vh; - width: auto; + +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; } -@media print, screen and (min-width: 40em) { - .grid-y.medium-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - height: 100vh; - width: auto; - } +.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { + display: table; + content: \\" \\"; } -@media print, screen and (min-width: 64em) { - .grid-y.large-grid-frame { - overflow: hidden; - position: relative; - flex-wrap: nowrap; - align-items: stretch; - height: 100vh; - width: auto; - } +.btn-group-vertical > .btn-group:after { + clear: both; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; } -.cell .grid-y.grid-frame { - height: 100%; +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; } -@media print, screen and (min-width: 40em) { - .cell .grid-y.medium-grid-frame { - height: 100%; - } +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } -@media print, screen and (min-width: 64em) { - .cell .grid-y.large-grid-frame { - height: 100%; - } +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; } -.grid-margin-y { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; } -@media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; - } + +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } -.grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; + +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; } -@media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; - } + +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; } -.grid-margin-y > .auto { - height: auto; +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; } -.grid-margin-y > .shrink { - height: auto; +.btn-group-justified > .btn-group .btn { + width: 100%; } -.grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.25rem); +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; } -.grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.25rem); + +[data-toggle=buttons] > .btn input[type=radio], +[data-toggle=buttons] > .btn input[type=checkbox], +[data-toggle=buttons] > .btn-group > .btn input[type=radio], +[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } -.grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); + +.input-group { + position: relative; + display: table; + border-collapse: separate; } -.grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.25rem); +.input-group[class*=col-] { + float: none; + padding-right: 0; + padding-left: 0; } -.grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.25rem); +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; } -.grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); +.input-group .form-control:focus { + z-index: 3; } -.grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.25rem); + +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; } -.grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.25rem); +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; } -.grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); + +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; } -.grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.25rem); + +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: 400; + line-height: 1; + color: #555555; + text-align: center; + background-color: #eeeeee; + border: 1px solid #ccc; + border-radius: 4px; } -.grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.25rem); +.input-group-addon.input-sm, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .input-group-addon.btn { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; } -.grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); +.input-group-addon.input-lg, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .input-group-addon.btn { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; } -@media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; - } - .grid-margin-y > .shrink { - height: auto; - } - .grid-margin-y > .small-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .small-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .small-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .small-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .small-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .small-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .small-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .small-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); - } - .grid-margin-y > .medium-auto { - height: auto; - } - .grid-margin-y > .medium-shrink { - height: auto; - } - .grid-margin-y > .medium-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .medium-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .medium-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .medium-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .medium-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); - } +.input-group-addon input[type=radio], +.input-group-addon input[type=checkbox] { + margin-top: 0; } -@media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; - } - .grid-margin-y > .large-shrink { - height: auto; - } - .grid-margin-y > .large-1 { - height: calc(8.3333333333% - 1.875rem); - } - .grid-margin-y > .large-2 { - height: calc(16.6666666667% - 1.875rem); - } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); - } - .grid-margin-y > .large-4 { - height: calc(33.3333333333% - 1.875rem); - } - .grid-margin-y > .large-5 { - height: calc(41.6666666667% - 1.875rem); - } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); - } - .grid-margin-y > .large-7 { - height: calc(58.3333333333% - 1.875rem); - } - .grid-margin-y > .large-8 { - height: calc(66.6666666667% - 1.875rem); - } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); - } - .grid-margin-y > .large-10 { - height: calc(83.3333333333% - 1.875rem); - } - .grid-margin-y > .large-11 { - height: calc(91.6666666667% - 1.875rem); - } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); - } + +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } -.grid-frame.grid-margin-y { - height: calc(100vh + 1.25rem); +.input-group-addon:first-child { + border-right: 0; } -@media print, screen and (min-width: 40em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); - } + +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } -@media print, screen and (min-width: 64em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); - } + +.input-group-addon:last-child { + border-left: 0; } -@media print, screen and (min-width: 40em) { - .grid-margin-y.medium-grid-frame { - height: calc(100vh + 1.875rem); - } +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; } -@media print, screen and (min-width: 64em) { - .grid-margin-y.large-grid-frame { - height: calc(100vh + 1.875rem); - } +.input-group-btn > .btn { + position: relative; } -.button { - display: inline-block; - vertical-align: middle; - margin: 0 0 1rem 0; - padding: 0.85em 1em; - border: 1px solid transparent; - border-radius: 0; - transition: background-color 0.25s ease-out, color 0.25s ease-out; - font-family: inherit; - font-size: 0.9rem; - -webkit-appearance: none; - line-height: 1; - text-align: center; - cursor: pointer; +.input-group-btn > .btn + .btn { + margin-left: -1px; } -[data-whatinput=mouse] .button { - outline: 0; +.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { + z-index: 2; } -.button.tiny { - font-size: 0.6rem; +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; } -.button.small { - font-size: 0.75rem; +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + z-index: 2; + margin-left: -1px; } -.button.large { - font-size: 1.25rem; + +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; } -.button.expanded { +.nav:before, .nav:after { + display: table; + content: \\" \\"; +} +.nav:after { + clear: both; +} +.nav > li { + position: relative; display: block; - width: 100%; - margin-right: 0; - margin-left: 0; } -.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; } -.button:hover, .button:focus { - background-color: #14679e; - color: #fefefe; +.nav > li > a:hover, .nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; } -.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus { - background-color: #1779ba; - color: #fefefe; +.nav > li.disabled > a { + color: #777777; } -.button.primary:hover, .button.primary:focus { - background-color: #126195; - color: #fefefe; +.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { + color: #777777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; } -.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus { - background-color: #767676; - color: #fefefe; +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { + background-color: #eeeeee; + border-color: #337ab7; } -.button.secondary:hover, .button.secondary:focus { - background-color: #5e5e5e; - color: #fefefe; +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; } -.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; +.nav > li > a > img { + max-width: none; } -.button.success:hover, .button.success:focus { - background-color: #22bb5b; - color: #0a0a0a; + +.nav-tabs { + border-bottom: 1px solid #ddd; } -.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; +.nav-tabs > li { + float: left; + margin-bottom: -1px; } -.button.warning:hover, .button.warning:focus { - background-color: #cc8b00; - color: #0a0a0a; +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; } -.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #ddd; } -.button.alert:hover, .button.alert:focus { - background-color: #a53b2a; - color: #fefefe; +.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { + color: #555555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; } -.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus { - background-color: transparent; +.nav-pills > li { + float: left; } -.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; +.nav-pills > li > a { + border-radius: 4px; } -.button.hollow:hover, .button.hollow:focus { - border-color: #0c3d5d; - color: #0c3d5d; +.nav-pills > li + li { + margin-left: 2px; } -.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; +.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { + color: #fff; + background-color: #337ab7; } -.button.hollow.primary:hover, .button.hollow.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; + +.nav-stacked > li { + float: none; } -.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; } -.button.hollow.secondary:hover, .button.hollow.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; + +.nav-justified, .nav-tabs.nav-justified { + width: 100%; } -.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; +.nav-justified > li, .nav-tabs.nav-justified > li { + float: none; } -.button.hollow.success:hover, .button.hollow.success:focus { - border-color: #157539; - color: #157539; +.nav-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; } -.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; } -.button.hollow.warning:hover, .button.hollow.warning:focus { - border-color: #805700; - color: #805700; +@media (min-width: 768px) { + .nav-justified > li, .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } } -.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; + +.nav-tabs-justified, .nav-tabs.nav-justified { + border-bottom: 0; } -.button.hollow.alert:hover, .button.hollow.alert:focus { - border-color: #67251a; - color: #67251a; +.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; } -.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus { - border-color: transparent; - background-color: transparent; +.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #ddd; } -.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus { - color: #1779ba; +@media (min-width: 768px) { + .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border-bottom-color: #fff; + } } -.button.clear:hover, .button.clear:focus { - color: #0c3d5d; + +.tab-content > .tab-pane { + display: none; } -.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus { - color: #1779ba; +.tab-content > .active { + display: block; } -.button.clear.primary:hover, .button.clear.primary:focus { - color: #0c3d5d; + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } -.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus { - color: #767676; + +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; } -.button.clear.secondary:hover, .button.clear.secondary:focus { - color: #3b3b3b; +.navbar:before, .navbar:after { + display: table; + content: \\" \\"; } -.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus { - color: #3adb76; +.navbar:after { + clear: both; } -.button.clear.success:hover, .button.clear.success:focus { - color: #157539; +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } } -.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus { - color: #ffae00; + +.navbar-header:before, .navbar-header:after { + display: table; + content: \\" \\"; } -.button.clear.warning:hover, .button.clear.warning:focus { - color: #805700; +.navbar-header:after { + clear: both; } -.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus { - color: #cc4b37; +@media (min-width: 768px) { + .navbar-header { + float: left; + } } -.button.clear.alert:hover, .button.clear.alert:focus { - color: #67251a; + +.navbar-collapse { + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; } -.button.disabled, .button[disabled] { - opacity: 0.25; - cursor: not-allowed; +.navbar-collapse:before, .navbar-collapse:after { + display: table; + content: \\" \\"; } -.button.dropdown::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.4em; - content: \\"\\"; - border-bottom-width: 0; - border-color: #fefefe transparent transparent; - position: relative; - top: 0.4em; - display: inline-block; - float: right; - margin-left: 1em; +.navbar-collapse:after { + clear: both; } -.button.dropdown.hollow::after, .button.dropdown.clear::after { - border-top-color: #1779ba; +.navbar-collapse.in { + overflow-y: auto; } -.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after { - border-top-color: #1779ba; +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } } -.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after { - border-top-color: #767676; + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; } -.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after { - border-top-color: #3adb76; +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; } -.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after { - border-top-color: #ffae00; +@media (max-device-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } } -.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after { - border-top-color: #cc4b37; +@media (min-width: 768px) { + .navbar-fixed-top, +.navbar-fixed-bottom { + border-radius: 0; + } } -.button.arrow-only::after { - top: -0.1em; - float: none; - margin-left: 0; + +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; } -a.button:hover, a.button:focus { - text-decoration: none; +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; } -.button-group { - margin-bottom: 1rem; - display: flex; - flex-wrap: wrap; - align-items: stretch; - flex-grow: 1; +.container > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-header, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; } -.button-group::before, .button-group::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; +@media (min-width: 768px) { + .container > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-header, +.container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } } -.button-group::after { - clear: both; + +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; } -.button-group::before, .button-group::after { - display: none; +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } } -.button-group .button { - margin: 0; - margin-right: 1px; - margin-bottom: 1px; - font-size: 0.9rem; - flex: 0 0 auto; + +.navbar-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; } -.button-group .button:last-child { - margin-right: 0; +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; } -.button-group.tiny .button { - font-size: 0.6rem; +.navbar-brand > img { + display: block; } -.button-group.small .button { - font-size: 0.75rem; +@media (min-width: 768px) { + .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } } -.button-group.large .button { - font-size: 1.25rem; + +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-right: 15px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; } -.button-group.expanded .button { - flex: 1 1 0px; +.navbar-toggle:focus { + outline: 0; } -.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; } -.button-group.primary .button:hover, .button-group.primary .button:focus { - background-color: #126195; - color: #fefefe; +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; } -.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus { - background-color: #767676; - color: #fefefe; +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } } -.button-group.secondary .button:hover, .button-group.secondary .button:focus { - background-color: #5e5e5e; - color: #fefefe; + +.navbar-nav { + margin: 7.5px -15px; } -.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; } -.button-group.success .button:hover, .button-group.success .button:focus { - background-color: #22bb5b; - color: #0a0a0a; +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, +.navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } } -.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } } -.button-group.warning .button:hover, .button-group.warning .button:focus { - background-color: #cc8b00; - color: #0a0a0a; + +.navbar-form { + padding: 10px 15px; + margin-right: -15px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px; } -.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .form-control-static { + display: inline-block; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, +.navbar-form .input-group .input-group-btn, +.navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, +.navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, +.navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type=radio], +.navbar-form .checkbox input[type=checkbox] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } } -.button-group.alert .button:hover, .button-group.alert .button:focus { - background-color: #a53b2a; - color: #fefefe; +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } + .navbar-form .form-group:last-child { + margin-bottom: 0; + } } -.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus { - background-color: transparent; +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } } -.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; + +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; } -.button-group.hollow .button:hover, .button-group.hollow .button:focus { - border-color: #0c3d5d; - color: #0c3d5d; + +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + margin-bottom: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } -.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; + +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { + margin-top: 14px; + margin-bottom: 14px; +} + +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; + } +} + +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + + .navbar-right { + float: right !important; + margin-right: -15px; + } + .navbar-right ~ .navbar-right { + margin-right: 0; + } } -.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; } -.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; +.navbar-default .navbar-brand { + color: #777; } -.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; +.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; } -.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; +.navbar-default .navbar-text { + color: #777; } -.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus { - border-color: #157539; - color: #157539; +.navbar-default .navbar-nav > li > a { + color: #777; } -.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; +.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { + color: #333; + background-color: transparent; } -.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus { - border-color: #805700; - color: #805700; +.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; } -.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; +.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; } -.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus { - border-color: #67251a; - color: #67251a; +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; } -.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus { - border-color: transparent; - background-color: transparent; +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #ccc; + background-color: transparent; + } } -.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus { - color: #1779ba; +.navbar-default .navbar-toggle { + border-color: #ddd; } -.button-group.clear .button:hover, .button-group.clear .button:focus { - color: #0c3d5d; +.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background-color: #ddd; } -.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus { - color: #1779ba; +.navbar-default .navbar-toggle .icon-bar { + background-color: #888; } -.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus { - color: #0c3d5d; +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; } -.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus { - color: #767676; +.navbar-default .navbar-link { + color: #777; } -.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus { - color: #3b3b3b; +.navbar-default .navbar-link:hover { + color: #333; } -.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus { - color: #3adb76; +.navbar-default .btn-link { + color: #777; } -.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus { - color: #157539; +.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { + color: #333; } -.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus { - color: #ffae00; +.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc; } -.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus { - color: #805700; + +.navbar-inverse { + background-color: #222; + border-color: #090909; } -.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus { - color: #cc4b37; +.navbar-inverse .navbar-brand { + color: #9d9d9d; } -.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus { - color: #67251a; +.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent; } -.button-group.no-gaps .button { - margin-right: -0.0625rem; +.navbar-inverse .navbar-text { + color: #9d9d9d; } -.button-group.no-gaps .button + .button { - border-left-color: transparent; +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; } -.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium { - flex-wrap: wrap; +.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { + color: #fff; + background-color: transparent; } -.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { - flex: 0 0 100%; +.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { + color: #fff; + background-color: #090909; } -.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { - margin-bottom: 0; +.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444; + background-color: transparent; } -.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button { - flex: 1 1 0px; +.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { + color: #fff; + background-color: #090909; } -@media print, screen and (min-width: 40em) { - .button-group.stacked-for-small .button { - flex: 0 0 auto; - margin-bottom: 0; +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #090909; } -} -@media print, screen and (min-width: 64em) { - .button-group.stacked-for-medium .button { - flex: 0 0 auto; - margin-bottom: 0; + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #090909; } -} -@media print, screen and (max-width: 39.99875em) { - .button-group.stacked-for-small.expanded { - display: block; + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; } - .button-group.stacked-for-small.expanded .button { - display: block; - margin-right: 0; + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #fff; + background-color: transparent; } -} -@media print, screen and (max-width: 63.99875em) { - .button-group.stacked-for-medium.expanded { - display: block; + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-color: #090909; } - .button-group.stacked-for-medium.expanded .button { - display: block; - margin-right: 0; + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444; + background-color: transparent; } } - -.close-button { - position: absolute; - z-index: 10; - color: #8a8a8a; - cursor: pointer; -} -[data-whatinput=mouse] .close-button { - outline: 0; -} -.close-button:hover, .close-button:focus { - color: #0a0a0a; +.navbar-inverse .navbar-toggle { + border-color: #333; } -.close-button.small { - right: 0.66rem; - top: 0.33em; - font-size: 1.5em; - line-height: 1; +.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { + background-color: #333; } - -.close-button.medium, .close-button { - right: 1rem; - top: 0.5rem; - font-size: 2em; - line-height: 1; +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff; } - -.label { - display: inline-block; - padding: 0.33333rem 0.5rem; - border-radius: 0; - font-size: 0.8rem; - line-height: 1; - white-space: nowrap; - cursor: default; - background: #1779ba; - color: #fefefe; +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; } -.label.primary { - background: #1779ba; - color: #fefefe; +.navbar-inverse .navbar-link { + color: #9d9d9d; } -.label.secondary { - background: #767676; - color: #fefefe; +.navbar-inverse .navbar-link:hover { + color: #fff; } -.label.success { - background: #3adb76; - color: #0a0a0a; +.navbar-inverse .btn-link { + color: #9d9d9d; } -.label.warning { - background: #ffae00; - color: #0a0a0a; +.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { + color: #fff; } -.label.alert { - background: #cc4b37; - color: #fefefe; +.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444; } -.progress { - height: 1rem; - margin-bottom: 1rem; - border-radius: 0; - background-color: #cacaca; -} -.progress.primary .progress-meter { - background-color: #1779ba; -} -.progress.secondary .progress-meter { - background-color: #767676; +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; } -.progress.success .progress-meter { - background-color: #3adb76; +.breadcrumb > li { + display: inline-block; } -.progress.warning .progress-meter { - background-color: #ffae00; +.breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: \\"/ \\"; } -.progress.alert .progress-meter { - background-color: #cc4b37; +.breadcrumb > .active { + color: #777777; } -.progress-meter { - position: relative; - display: block; - width: 0%; - height: 100%; - background-color: #1779ba; +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; } - -.progress-meter-text { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - margin: 0; - font-size: 0.75rem; - font-weight: bold; - color: #fefefe; - white-space: nowrap; +.pagination > li { + display: inline; } - -.slider { +.pagination > li > a, +.pagination > li > span { position: relative; - height: 0.5rem; - margin-top: 1.25rem; - margin-bottom: 2.25rem; - background-color: #e6e6e6; - cursor: pointer; - user-select: none; - touch-action: none; -} - -.slider-fill { - position: absolute; - top: 0; - left: 0; - display: inline-block; - max-width: 100%; - height: 0.5rem; - background-color: #cacaca; - transition: all 0.2s ease-in-out; -} -.slider-fill.is-dragging { - transition: all 0s linear; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.428571429; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd; } - -.slider-handle { - position: absolute; - top: 50%; - transform: translateY(-50%); - left: 0; - z-index: 1; - cursor: grab; - display: inline-block; - width: 1.4rem; - height: 1.4rem; - border-radius: 0; - background-color: #1779ba; - transition: all 0.2s ease-in-out; - touch-action: manipulation; +.pagination > li > a:hover, .pagination > li > a:focus, +.pagination > li > span:hover, +.pagination > li > span:focus { + z-index: 2; + color: #23527c; + background-color: #eeeeee; + border-color: #ddd; } -[data-whatinput=mouse] .slider-handle { - outline: 0; +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; } -.slider-handle:hover { - background-color: #14679e; +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; } -.slider-handle.is-dragging { - transition: all 0s linear; - cursor: grabbing; +.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, +.pagination > .active > span, +.pagination > .active > span:hover, +.pagination > .active > span:focus { + z-index: 3; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7; } - -.slider.disabled, -.slider[disabled] { - opacity: 0.25; +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777777; cursor: not-allowed; + background-color: #fff; + border-color: #ddd; } -.slider.vertical { - display: inline-block; - width: 0.5rem; - height: 12.5rem; - margin: 0 1.25rem; - transform: scale(1, -1); +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; } -.slider.vertical .slider-fill { - top: 0; - width: 0.5rem; - max-height: 100%; +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; } -.slider.vertical .slider-handle { - position: absolute; - top: 0; - left: 50%; - width: 1.4rem; - height: 1.4rem; - transform: translateX(-50%); +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; } -.switch { - position: relative; - margin-bottom: 1rem; - outline: 0; - font-size: 0.875rem; - font-weight: bold; - color: #fefefe; - user-select: none; - height: 2rem; +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; } - -.switch-input { - position: absolute; - margin-bottom: 0; - opacity: 0; +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } -.switch-paddle { - position: relative; - display: block; - width: 4rem; - height: 2rem; - border-radius: 0; - background: #cacaca; - transition: all 0.25s ease-out; - font-weight: inherit; - color: inherit; - cursor: pointer; +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; } -input + .switch-paddle { - margin: 0; +.pager:before, .pager:after { + display: table; + content: \\" \\"; } -.switch-paddle::after { - position: absolute; - top: 0.25rem; - left: 0.25rem; - display: block; - width: 1.5rem; - height: 1.5rem; - transform: translate3d(0, 0, 0); - border-radius: 0; - background: #fefefe; - transition: all 0.25s ease-out; - content: \\"\\"; +.pager:after { + clear: both; } -input:checked ~ .switch-paddle { - background: #1779ba; +.pager li { + display: inline; } -input:checked ~ .switch-paddle::after { - left: 2.25rem; +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; } -input:disabled ~ .switch-paddle { +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777777; cursor: not-allowed; - opacity: 0.5; + background-color: #fff; } -[data-whatinput=mouse] input:focus ~ .switch-paddle { - outline: 0; + +.label { + display: inline; + padding: 0.2em 0.6em 0.3em; + font-size: 75%; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25em; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; } -.switch-inactive, .switch-active { - position: absolute; - top: 50%; - transform: translateY(-50%); +a.label:hover, a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer; } -.switch-active { - left: 8%; - display: none; +.label-default { + background-color: #777777; } -input:checked + label > .switch-active { - display: block; +.label-default[href]:hover, .label-default[href]:focus { + background-color: #5e5e5e; } -.switch-inactive { - right: 15%; +.label-primary { + background-color: #337ab7; } -input:checked + label > .switch-inactive { - display: none; +.label-primary[href]:hover, .label-primary[href]:focus { + background-color: #286090; } -.switch.tiny { - height: 1.5rem; +.label-success { + background-color: #5cb85c; } -.switch.tiny .switch-paddle { - width: 3rem; - height: 1.5rem; - font-size: 0.625rem; +.label-success[href]:hover, .label-success[href]:focus { + background-color: #449d44; } -.switch.tiny .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1rem; - height: 1rem; + +.label-info { + background-color: #5bc0de; } -.switch.tiny input:checked ~ .switch-paddle::after { - left: 1.75rem; +.label-info[href]:hover, .label-info[href]:focus { + background-color: #31b0d5; } -.switch.small { - height: 1.75rem; +.label-warning { + background-color: #f0ad4e; } -.switch.small .switch-paddle { - width: 3.5rem; - height: 1.75rem; - font-size: 0.75rem; +.label-warning[href]:hover, .label-warning[href]:focus { + background-color: #ec971f; } -.switch.small .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1.25rem; - height: 1.25rem; + +.label-danger { + background-color: #d9534f; } -.switch.small input:checked ~ .switch-paddle::after { - left: 2rem; +.label-danger[href]:hover, .label-danger[href]:focus { + background-color: #c9302c; } -.switch.large { - height: 2.5rem; +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: middle; + background-color: #777777; + border-radius: 10px; } -.switch.large .switch-paddle { - width: 5rem; - height: 2.5rem; - font-size: 1rem; +.badge:empty { + display: none; } -.switch.large .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 2rem; - height: 2rem; +.btn .badge { + position: relative; + top: -1px; } -.switch.large input:checked ~ .switch-paddle::after { - left: 2.75rem; +.btn-xs .badge, .btn-group-xs > .btn .badge { + top: 0; + padding: 1px 5px; } - -table { - border-collapse: collapse; - width: 100%; - margin-bottom: 1rem; - border-radius: 0; +.list-group-item.active > .badge, .nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #fff; } -thead, -tbody, -tfoot { - border: 1px solid #f1f1f1; - background-color: #fefefe; +.list-group-item > .badge { + float: right; } - -caption { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; +.list-group-item > .badge + .badge { + margin-right: 5px; } - -thead { - background: #f8f8f8; - color: #0a0a0a; +.nav-pills > li > a > .badge { + margin-left: 3px; } -tfoot { - background: #f1f1f1; - color: #0a0a0a; +a.badge:hover, a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer; } -thead tr, -tfoot tr { - background: transparent; +.jumbotron { + padding-top: 30px; + padding-bottom: 30px; + margin-bottom: 30px; + color: inherit; + background-color: #eeeeee; } -thead th, -thead td, -tfoot th, -tfoot td { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; - text-align: left; +.jumbotron h1, +.jumbotron .h1 { + color: inherit; } - -tbody th, -tbody td { - padding: 0.5rem 0.625rem 0.625rem; +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; } - -tbody tr:nth-child(even) { - border-bottom: 0; - background-color: #f1f1f1; +.jumbotron > hr { + border-top-color: #d5d5d5; } - -table.unstriped tbody { - background-color: #fefefe; +.container .jumbotron, .container-fluid .jumbotron { + padding-right: 15px; + padding-left: 15px; + border-radius: 6px; } -table.unstriped tbody tr { - border-bottom: 1px solid #f1f1f1; - background-color: #fefefe; +.jumbotron .container { + max-width: 100%; } - -@media print, screen and (max-width: 63.99875em) { - table.stack thead { - display: none; - } - table.stack tfoot { - display: none; +@media screen and (min-width: 768px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; } - table.stack tr, -table.stack th, -table.stack td { - display: block; + .container .jumbotron, .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px; } - table.stack td { - border-top: 0; + .jumbotron h1, +.jumbotron .h1 { + font-size: 63px; } } -table.scroll { +.thumbnail { display: block; - width: 100%; - overflow-x: auto; -} - -table.hover thead tr:hover { - background-color: #f3f3f3; -} -table.hover tfoot tr:hover { - background-color: #ececec; + padding: 4px; + margin-bottom: 20px; + line-height: 1.428571429; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: border 0.2s ease-in-out; + -o-transition: border 0.2s ease-in-out; + transition: border 0.2s ease-in-out; } -table.hover tbody tr:hover { - background-color: #f9f9f9; +.thumbnail > img, +.thumbnail a > img { + display: block; + max-width: 100%; + height: auto; + margin-right: auto; + margin-left: auto; } -table.hover:not(.unstriped) tr:nth-of-type(even):hover { - background-color: #ececec; +.thumbnail .caption { + padding: 9px; + color: #333333; } -.table-scroll { - overflow-x: auto; +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #337ab7; } -.badge { - display: inline-block; - min-width: 2.1em; - padding: 0.3em; - border-radius: 50%; - font-size: 0.6rem; - text-align: center; - background: #1779ba; - color: #fefefe; -} -.badge.primary { - background: #1779ba; - color: #fefefe; +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; } -.badge.secondary { - background: #767676; - color: #fefefe; +.alert h4 { + margin-top: 0; + color: inherit; } -.badge.success { - background: #3adb76; - color: #0a0a0a; +.alert .alert-link { + font-weight: bold; } -.badge.warning { - background: #ffae00; - color: #0a0a0a; +.alert > p, +.alert > ul { + margin-bottom: 0; } -.badge.alert { - background: #cc4b37; - color: #fefefe; +.alert > p + p { + margin-top: 5px; } -.breadcrumbs { - margin: 0 0 1rem 0; - list-style: none; -} -.breadcrumbs::before, .breadcrumbs::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; -} -.breadcrumbs::after { - clear: both; -} -.breadcrumbs li { - float: left; - font-size: 0.6875rem; - color: #0a0a0a; - cursor: default; - text-transform: uppercase; +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; } -.breadcrumbs li:not(:last-child)::after { +.alert-dismissable .close, +.alert-dismissible .close { position: relative; - margin: 0 0.75rem; - opacity: 1; - content: \\"/\\"; - color: #cacaca; + top: -2px; + right: -21px; + color: inherit; } -.breadcrumbs a { - color: #1779ba; + +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; } -.breadcrumbs a:hover { - text-decoration: underline; +.alert-success hr { + border-top-color: #c9e2b3; } -.breadcrumbs .disabled { - color: #cacaca; - cursor: not-allowed; +.alert-success .alert-link { + color: #2b542c; } -.callout { - position: relative; - margin: 0 0 1rem 0; - padding: 1rem; - border: 1px solid rgba(10, 10, 10, 0.25); - border-radius: 0; - background-color: white; - color: #0a0a0a; -} -.callout > :first-child { - margin-top: 0; +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; } -.callout > :last-child { - margin-bottom: 0; +.alert-info hr { + border-top-color: #a6e1ec; } -.callout.primary { - background-color: #d7ecfa; - color: #0a0a0a; +.alert-info .alert-link { + color: #245269; } -.callout.secondary { - background-color: #eaeaea; - color: #0a0a0a; + +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; } -.callout.success { - background-color: #e1faea; - color: #0a0a0a; +.alert-warning hr { + border-top-color: #f7e1b5; } -.callout.warning { - background-color: #fff3d9; - color: #0a0a0a; +.alert-warning .alert-link { + color: #66512c; } -.callout.alert { - background-color: #f7e4e1; - color: #0a0a0a; + +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; } -.callout.small { - padding-top: 0.5rem; - padding-right: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 0.5rem; +.alert-danger hr { + border-top-color: #e4b9c0; } -.callout.large { - padding-top: 3rem; - padding-right: 3rem; - padding-bottom: 3rem; - padding-left: 3rem; +.alert-danger .alert-link { + color: #843534; } -.card { - display: flex; - flex-direction: column; - flex-grow: 1; - margin-bottom: 1rem; - border: 1px solid #e6e6e6; - border-radius: 0; - background: #fefefe; - box-shadow: none; - overflow: hidden; - color: #0a0a0a; -} -.card > :last-child { - margin-bottom: 0; +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } } - -.card-divider { - display: flex; - flex: 0 1 auto; - padding: 1rem; - background: #e6e6e6; +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } } -.card-divider > :last-child { - margin-bottom: 0; +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } -.card-section { - flex: 1 0 auto; - padding: 1rem; +.progress-bar { + float: left; + width: 0%; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; } -.card-section > :last-child { - margin-bottom: 0; + +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; } -.card-image { - min-height: 1px; +.progress.active .progress-bar, +.progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; } -.dropdown-pane { - position: absolute; - z-index: 10; - display: none; - width: 300px; - padding: 1rem; - visibility: hidden; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - font-size: 1rem; -} -.dropdown-pane.is-opening { - display: block; +.progress-bar-success { + background-color: #5cb85c; } -.dropdown-pane.is-open { - display: block; - visibility: visible; +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } -.dropdown-pane.tiny { - width: 100px; +.progress-bar-info { + background-color: #5bc0de; } - -.dropdown-pane.small { - width: 200px; +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } -.dropdown-pane.large { - width: 400px; +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } -.pagination { - margin-left: 0; - margin-bottom: 1rem; +.progress-bar-danger { + background-color: #d9534f; } -.pagination::before, .pagination::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } -.pagination::after { - clear: both; + +.media { + margin-top: 15px; } -.pagination li { - margin-right: 0.0625rem; - border-radius: 0; - font-size: 0.875rem; - display: none; +.media:first-child { + margin-top: 0; } -.pagination li:last-child, .pagination li:first-child { - display: inline-block; + +.media, +.media-body { + overflow: hidden; + zoom: 1; } -@media print, screen and (min-width: 40em) { - .pagination li { - display: inline-block; - } + +.media-body { + width: 10000px; } -.pagination a, -.pagination button { + +.media-object { display: block; - padding: 0.1875rem 0.625rem; - border-radius: 0; - color: #0a0a0a; -} -.pagination a:hover, -.pagination button:hover { - background: #e6e6e6; } -.pagination .current { - padding: 0.1875rem 0.625rem; - background: #1779ba; - color: #fefefe; - cursor: default; +.media-object.img-thumbnail { + max-width: none; } -.pagination .disabled { - padding: 0.1875rem 0.625rem; - color: #cacaca; - cursor: not-allowed; + +.media-right, +.media > .pull-right { + padding-left: 10px; } -.pagination .disabled:hover { - background: transparent; + +.media-left, +.media > .pull-left { + padding-right: 10px; } -.pagination .ellipsis::after { - padding: 0.1875rem 0.625rem; - content: \\"…\\"; - color: #0a0a0a; + +.media-left, +.media-right, +.media-body { + display: table-cell; + vertical-align: top; } -.pagination-previous a::before, -.pagination-previous.disabled::before { - display: inline-block; - margin-right: 0.5rem; - content: \\"«\\"; +.media-middle { + vertical-align: middle; } -.pagination-next a::after, -.pagination-next.disabled::after { - display: inline-block; - margin-left: 0.5rem; - content: \\"»\\"; +.media-bottom { + vertical-align: bottom; } -.has-tip { - position: relative; - display: inline-block; - border-bottom: dotted 1px #8a8a8a; - font-weight: bold; - cursor: help; +.media-heading { + margin-top: 0; + margin-bottom: 5px; } -.tooltip { - position: absolute; - top: calc(100% + 0.6495rem); - z-index: 1200; - max-width: 10rem; - padding: 0.75rem; - border-radius: 0; - background-color: #0a0a0a; - font-size: 80%; - color: #fefefe; +.media-list { + padding-left: 0; + list-style: none; } -.tooltip::before { - position: absolute; + +.list-group { + padding-left: 0; + margin-bottom: 20px; } -.tooltip.bottom::before { + +.list-group-item { + position: relative; display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-top-width: 0; - border-color: transparent transparent #0a0a0a; - bottom: 100%; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd; } -.tooltip.bottom.align-center::before { - left: 50%; - transform: translateX(-50%); +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; } -.tooltip.top::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-bottom-width: 0; - border-color: #0a0a0a transparent transparent; - top: 100%; - bottom: auto; +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; } -.tooltip.top.align-center::before { - left: 50%; - transform: translateX(-50%); +.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { + color: #777777; + cursor: not-allowed; + background-color: #eeeeee; } -.tooltip.left::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #0a0a0a; - left: 100%; +.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { + color: inherit; } -.tooltip.left.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); +.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { + color: #777777; } -.tooltip.right::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #0a0a0a transparent transparent; - right: 100%; - left: auto; +.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7; } -.tooltip.right.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); +.list-group-item.active .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; } -.tooltip.align-top::before { - bottom: auto; - top: 10%; +.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { + color: #c7ddef; } -.tooltip.align-bottom::before { - bottom: 10%; - top: auto; + +a.list-group-item, +button.list-group-item { + color: #555; } -.tooltip.align-left::before { - left: 10%; - right: auto; +a.list-group-item .list-group-item-heading, +button.list-group-item .list-group-item-heading { + color: #333; } -.tooltip.align-right::before { - left: auto; - right: 10%; +a.list-group-item:hover, a.list-group-item:focus, +button.list-group-item:hover, +button.list-group-item:focus { + color: #555; + text-decoration: none; + background-color: #f5f5f5; } -.accordion { - margin-left: 0; - background: #fefefe; - list-style-type: none; -} -.accordion[disabled] .accordion-title { - cursor: not-allowed; +button.list-group-item { + width: 100%; + text-align: left; } -.accordion-item:first-child > :first-child { - border-radius: 0 0 0 0; -} -.accordion-item:last-child > :last-child { - border-radius: 0 0 0 0; +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; } -.accordion-title { - position: relative; - display: block; - padding: 1.25rem 1rem; - border: 1px solid #e6e6e6; - border-bottom: 0; - font-size: 0.75rem; - line-height: 1; - color: #1779ba; -} -:last-child:not(.is-active) > .accordion-title { - border-bottom: 1px solid #e6e6e6; - border-radius: 0 0 0 0; +a.list-group-item-success, +button.list-group-item-success { + color: #3c763d; } -.accordion-title:hover, .accordion-title:focus { - background-color: #e6e6e6; +a.list-group-item-success .list-group-item-heading, +button.list-group-item-success .list-group-item-heading { + color: inherit; } -.accordion-title::before { - position: absolute; - top: 50%; - right: 1rem; - margin-top: -0.5rem; - content: \\"+\\"; +a.list-group-item-success:hover, a.list-group-item-success:focus, +button.list-group-item-success:hover, +button.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; } -.is-active > .accordion-title::before { - content: \\"–\\"; +a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, +button.list-group-item-success.active, +button.list-group-item-success.active:hover, +button.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; } -.accordion-content { - display: none; - padding: 1rem; - border: 1px solid #e6e6e6; - border-bottom: 0; - background-color: #fefefe; - color: #0a0a0a; -} -:last-child > .accordion-content:last-child { - border-bottom: 1px solid #e6e6e6; +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; } -.media-object { - display: flex; - margin-bottom: 1rem; - flex-wrap: nowrap; +a.list-group-item-info, +button.list-group-item-info { + color: #31708f; } -.media-object img { - max-width: none; +a.list-group-item-info .list-group-item-heading, +button.list-group-item-info .list-group-item-heading { + color: inherit; } -@media print, screen and (max-width: 39.99875em) { - .media-object.stack-for-small { - flex-wrap: wrap; - } +a.list-group-item-info:hover, a.list-group-item-info:focus, +button.list-group-item-info:hover, +button.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; } - -.media-object-section { - flex: 0 1 auto; +a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, +button.list-group-item-info.active, +button.list-group-item-info.active:hover, +button.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; } -.media-object-section:first-child { - padding-right: 1rem; + +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; } -.media-object-section:last-child:not(:nth-child(2)) { - padding-left: 1rem; + +a.list-group-item-warning, +button.list-group-item-warning { + color: #8a6d3b; } -.media-object-section > :last-child { - margin-bottom: 0; +a.list-group-item-warning .list-group-item-heading, +button.list-group-item-warning .list-group-item-heading { + color: inherit; } -@media print, screen and (max-width: 39.99875em) { - .stack-for-small .media-object-section { - padding: 0; - padding-bottom: 1rem; - flex-basis: 100%; - max-width: 100%; - } - .stack-for-small .media-object-section img { - width: 100%; - } +a.list-group-item-warning:hover, a.list-group-item-warning:focus, +button.list-group-item-warning:hover, +button.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; } -.media-object-section.main-section { - flex: 1 1 0px; +a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, +button.list-group-item-warning.active, +button.list-group-item-warning.active:hover, +button.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; } -.orbit { - position: relative; +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; } -.orbit-container { - position: relative; - height: 0; - margin: 0; - list-style: none; - overflow: hidden; +a.list-group-item-danger, +button.list-group-item-danger { + color: #a94442; } - -.orbit-slide { - width: 100%; - position: absolute; +a.list-group-item-danger .list-group-item-heading, +button.list-group-item-danger .list-group-item-heading { + color: inherit; } -.orbit-slide.no-motionui.is-active { - top: 0; - left: 0; +a.list-group-item-danger:hover, a.list-group-item-danger:focus, +button.list-group-item-danger:hover, +button.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; } - -.orbit-figure { - margin: 0; +a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, +button.list-group-item-danger.active, +button.list-group-item-danger.active:hover, +button.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; } -.orbit-image { - width: 100%; - max-width: 100%; - margin: 0; +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; } -.orbit-caption { - position: absolute; - bottom: 0; - width: 100%; +.list-group-item-text { margin-bottom: 0; - padding: 1rem; - background-color: rgba(10, 10, 10, 0.5); - color: #fefefe; + line-height: 1.3; } -.orbit-next, .orbit-previous { - position: absolute; - top: 50%; - transform: translateY(-50%); - z-index: 10; - padding: 1rem; - color: #fefefe; -} -[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous { - outline: 0; -} -.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus { - background-color: rgba(10, 10, 10, 0.5); +.panel { + margin-bottom: 20px; + background-color: #fff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } -.orbit-previous { - left: 0; +.panel-body { + padding: 15px; } - -.orbit-next { - left: auto; - right: 0; +.panel-body:before, .panel-body:after { + display: table; + content: \\" \\"; } - -.orbit-bullets { - position: relative; - margin-top: 0.8rem; - margin-bottom: 0.8rem; - text-align: center; +.panel-body:after { + clear: both; } -[data-whatinput=mouse] .orbit-bullets { - outline: 0; + +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -.orbit-bullets button { - width: 1.2rem; - height: 1.2rem; - margin: 0.1rem; - border-radius: 50%; - background-color: #cacaca; +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; } -.orbit-bullets button:hover { - background-color: #8a8a8a; + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; } -.orbit-bullets button.is-active { - background-color: #8a8a8a; +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; } -.responsive-embed, -.flex-video { - position: relative; - height: 0; - margin-bottom: 1rem; - padding-bottom: 75%; - overflow: hidden; +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } -.responsive-embed iframe, -.responsive-embed object, -.responsive-embed embed, -.responsive-embed video, -.flex-video iframe, -.flex-video object, -.flex-video embed, -.flex-video video { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; + +.panel > .list-group, +.panel > .panel-collapse > .list-group { + margin-bottom: 0; } -.responsive-embed.widescreen, -.flex-video.widescreen { - padding-bottom: 56.25%; +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; } - -.tabs { - margin: 0; - border: 1px solid #e6e6e6; - background: #fefefe; - list-style-type: none; +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -.tabs::before, .tabs::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } -.tabs::after { - clear: both; +.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; } -.tabs.vertical > li { - display: block; - float: none; - width: auto; +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; } -.tabs.simple > li > a { - padding: 0; -} -.tabs.simple > li > a:hover { - background: transparent; +.list-group + .panel-footer { + border-top-width: 0; } -.tabs.primary { - background: #1779ba; -} -.tabs.primary > li > a { - color: #fefefe; -} -.tabs.primary > li > a:hover, .tabs.primary > li > a:focus { - background: #1673b1; +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; } - -.tabs-title { - float: left; +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; } -.tabs-title > a { - display: block; - padding: 1.25rem 1.5rem; - font-size: 0.75rem; - line-height: 1; - color: #1779ba; +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -[data-whatinput=mouse] .tabs-title > a { - outline: 0; +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } -.tabs-title > a:hover { - background: #fefefe; - color: #1468a0; +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; } -.tabs-title > a:focus, .tabs-title > a[aria-selected=true] { - background: #e6e6e6; - color: #1779ba; +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; } - -.tabs-content { - border: 1px solid #e6e6e6; - border-top: 0; - background: #fefefe; - color: #0a0a0a; - transition: all 0.5s ease; +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } - -.tabs-content.vertical { - border: 1px solid #e6e6e6; - border-left: 0; +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } - -.tabs-panel { - display: none; - padding: 1rem; +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; } -.tabs-panel.is-active { - display: block; +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; } - -.thumbnail { - display: inline-block; - max-width: 100%; - margin-bottom: 1rem; - border: 4px solid #fefefe; - border-radius: 0; - box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2); - line-height: 0; +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { + border-top: 1px solid #ddd; } - -a.thumbnail { - transition: box-shadow 200ms ease-out; +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; } -a.thumbnail:hover, a.thumbnail:focus { - box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; } -a.thumbnail image { - box-shadow: none; +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; } - -.menu { - padding: 0; - margin: 0; - list-style: none; - position: relative; - display: flex; - flex-wrap: wrap; +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; } -[data-whatinput=mouse] .menu li { - outline: 0; +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; } -.menu a, -.menu .button { - line-height: 1; - text-decoration: none; - display: block; - padding: 0.7rem 1rem; +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; } -.menu input, -.menu select, -.menu a, -.menu button { +.panel > .table-responsive { margin-bottom: 0; + border: 0; } -.menu input { - display: inline-block; -} -.menu, .menu.horizontal { - flex-wrap: wrap; - flex-direction: row; -} -.menu.vertical { - flex-wrap: nowrap; - flex-direction: column; + +.panel-group { + margin-bottom: 20px; } -.menu.vertical.icon-top li a img, -.menu.vertical.icon-top li a i, -.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img, -.menu.vertical.icon-bottom li a i, -.menu.vertical.icon-bottom li a svg { - text-align: left; +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; } -.menu.expanded li { - flex: 1 1 0px; +.panel-group .panel + .panel { + margin-top: 5px; } -.menu.expanded.icon-top li a img, -.menu.expanded.icon-top li a i, -.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img, -.menu.expanded.icon-bottom li a i, -.menu.expanded.icon-bottom li a svg { - text-align: left; +.panel-group .panel-heading { + border-bottom: 0; } -.menu.simple { - align-items: center; +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #ddd; } -.menu.simple li + li { - margin-left: 1rem; +.panel-group .panel-footer { + border-top: 0; } -.menu.simple a { - padding: 0; +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; } -@media print, screen and (min-width: 40em) { - .menu.medium-horizontal { - flex-wrap: wrap; - flex-direction: row; - } - .menu.medium-vertical { - flex-wrap: nowrap; - flex-direction: column; - } - .menu.medium-expanded li { - flex: 1 1 0px; - } - .menu.medium-simple li { - flex: 1 1 0px; - } + +.panel-default { + border-color: #ddd; } -@media print, screen and (min-width: 64em) { - .menu.large-horizontal { - flex-wrap: wrap; - flex-direction: row; - } - .menu.large-vertical { - flex-wrap: nowrap; - flex-direction: column; - } - .menu.large-expanded li { - flex: 1 1 0px; - } - .menu.large-simple li { - flex: 1 1 0px; - } +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #ddd; } -.menu.nested { - margin-right: 0; - margin-left: 1rem; +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; } -.menu.icons a { - display: flex; +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333333; } -.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { - display: flex; +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; } -.menu.icon-left li a, .menu.nested.icon-left li a { - flex-flow: row nowrap; + +.panel-primary { + border-color: #337ab7; } -.menu.icon-left li a img, -.menu.icon-left li a i, -.menu.icon-left li a svg, .menu.nested.icon-left li a img, -.menu.nested.icon-left li a i, -.menu.nested.icon-left li a svg { - margin-right: 0.25rem; +.panel-primary > .panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7; } -.menu.icon-right li a, .menu.nested.icon-right li a { - flex-flow: row nowrap; +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; } -.menu.icon-right li a img, -.menu.icon-right li a i, -.menu.icon-right li a svg, .menu.nested.icon-right li a img, -.menu.nested.icon-right li a i, -.menu.nested.icon-right li a svg { - margin-left: 0.25rem; +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #fff; } -.menu.icon-top li a, .menu.nested.icon-top li a { - flex-flow: column nowrap; +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; } -.menu.icon-top li a img, -.menu.icon-top li a i, -.menu.icon-top li a svg, .menu.nested.icon-top li a img, -.menu.nested.icon-top li a i, -.menu.nested.icon-top li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; + +.panel-success { + border-color: #d6e9c6; } -.menu.icon-bottom li a, .menu.nested.icon-bottom li a { - flex-flow: column nowrap; +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; } -.menu.icon-bottom li a img, -.menu.icon-bottom li a i, -.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img, -.menu.nested.icon-bottom li a i, -.menu.nested.icon-bottom li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; } -.menu .is-active > a { - background: #1779ba; - color: #fefefe; +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; } -.menu .active > a { - background: #1779ba; - color: #fefefe; +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; } -.menu.align-left { - justify-content: flex-start; + +.panel-info { + border-color: #bce8f1; } -.menu.align-right li { - display: flex; - justify-content: flex-end; +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; } -.menu.align-right li .submenu li { - justify-content: flex-start; +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; } -.menu.align-right.vertical li { - display: block; - text-align: right; +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; } -.menu.align-right.vertical li .submenu li { - text-align: right; +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; } -.menu.align-right.icon-top li a img, -.menu.align-right.icon-top li a i, -.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img, -.menu.align-right.icon-bottom li a i, -.menu.align-right.icon-bottom li a svg { - text-align: right; + +.panel-warning { + border-color: #faebcc; } -.menu.align-right .nested { - margin-right: 1rem; - margin-left: 0; +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; } -.menu.align-center li { - display: flex; - justify-content: center; +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; } -.menu.align-center li .submenu li { - justify-content: flex-start; +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; } -.menu .menu-text { - padding: 0.7rem 1rem; - font-weight: bold; - line-height: 1; - color: inherit; +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; } -.menu-centered > .menu { - justify-content: center; +.panel-danger { + border-color: #ebccd1; } -.menu-centered > .menu li { - display: flex; - justify-content: center; +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; } -.menu-centered > .menu li .submenu li { - justify-content: flex-start; +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; } - -.no-js [data-responsive-menu] ul { - display: none; +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; } -.menu-icon { +.embed-responsive { position: relative; - display: inline-block; - vertical-align: middle; - width: 20px; - height: 16px; - cursor: pointer; + display: block; + height: 0; + padding: 0; + overflow: hidden; } -.menu-icon::after { +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { position: absolute; top: 0; + bottom: 0; left: 0; - display: block; width: 100%; - height: 2px; - background: #fefefe; - box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; - content: \\"\\"; + height: 100%; + border: 0; } -.menu-icon:hover::after { - background: #cacaca; - box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; + +.embed-responsive-16by9 { + padding-bottom: 56.25%; } -.menu-icon.dark { - position: relative; - display: inline-block; - vertical-align: middle; - width: 20px; - height: 16px; - cursor: pointer; +.embed-responsive-4by3 { + padding-bottom: 75%; } -.menu-icon.dark::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 2px; - background: #0a0a0a; - box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; - content: \\"\\"; + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } -.menu-icon.dark:hover::after { - background: #8a8a8a; - box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); } -.accordion-menu li { - width: 100%; +.well-lg { + padding: 24px; + border-radius: 6px; } -.accordion-menu a { - padding: 0.7rem 1rem; + +.well-sm { + padding: 9px; + border-radius: 3px; } -.accordion-menu .is-accordion-submenu a { - padding: 0.7rem 1rem; + +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + filter: alpha(opacity=20); + opacity: 0.2; } -.accordion-menu .nested.is-accordion-submenu { - margin-right: 0; - margin-left: 1rem; +.close:hover, .close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: 0.5; } -.accordion-menu.align-right .nested.is-accordion-submenu { - margin-right: 1rem; - margin-left: 0; + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; + appearance: none; } -.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a { - position: relative; + +.modal-open { + overflow: hidden; } -.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - position: absolute; - top: 50%; - margin-top: -3px; - right: 1rem; + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0; } -.accordion-menu.align-left .is-accordion-submenu-parent > a::after { - right: 1rem; - left: auto; +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; } -.accordion-menu.align-right .is-accordion-submenu-parent > a::after { - right: auto; - left: 1rem; +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); } -.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after { - transform: rotate(180deg); - transform-origin: 50% 50%; + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } -.is-accordion-submenu-parent { +.modal-dialog { position: relative; + width: auto; + margin: 10px; } -.has-submenu-toggle > a { - margin-right: 40px; +.modal-content { + position: relative; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + outline: 0; } -.submenu-toggle { - position: absolute; +.modal-backdrop { + position: fixed; top: 0; right: 0; - width: 40px; - height: 40px; - cursor: pointer; -} -.submenu-toggle::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - top: 0; bottom: 0; - margin: auto; + left: 0; + z-index: 1040; + background-color: #000; } - -.submenu-toggle[aria-expanded=true]::after { - transform: scaleY(-1); - transform-origin: 50% 50%; +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0; } - -.submenu-toggle-text { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: 0.5; } -.is-drilldown { - position: relative; - overflow: hidden; +.modal-header { + padding: 15px; + border-bottom: 1px solid #e5e5e5; } -.is-drilldown li { - display: block; +.modal-header:before, .modal-header:after { + display: table; + content: \\" \\"; } -.is-drilldown.animate-height { - transition: height 0.5s; +.modal-header:after { + clear: both; } -.drilldown a { - padding: 0.7rem 1rem; - background: #fefefe; +.modal-header .close { + margin-top: -2px; } -.drilldown .is-drilldown-submenu { - position: absolute; - top: 0; - left: 100%; - z-index: -1; - width: 100%; - background: #fefefe; - transition: transform 0.15s linear; + +.modal-title { + margin: 0; + line-height: 1.428571429; } -.drilldown .is-drilldown-submenu.is-active { - z-index: 1; - display: block; - transform: translateX(-100%); + +.modal-body { + position: relative; + padding: 15px; } -.drilldown .is-drilldown-submenu.is-closing { - transform: translateX(100%); + +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; } -.drilldown .is-drilldown-submenu a { - padding: 0.7rem 1rem; +.modal-footer:before, .modal-footer:after { + display: table; + content: \\" \\"; } -.drilldown .nested.is-drilldown-submenu { - margin-right: 0; - margin-left: 0; +.modal-footer:after { + clear: both; } -.drilldown .drilldown-submenu-cover-previous { - min-height: 100%; +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; } -.drilldown .is-drilldown-submenu-parent > a { - position: relative; +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; } -.drilldown .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} + +.modal-scrollbar-measure { position: absolute; - top: 50%; - margin-top: -6px; - right: 1rem; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } -.drilldown.align-left .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - right: 1rem; - left: auto; + +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } + + .modal-sm { + width: 300px; + } } -.drilldown.align-right .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 1rem; +@media (min-width: 992px) { + .modal-lg { + width: 900px; + } } -.drilldown .js-drilldown-back > a::before { +.tooltip { + position: absolute; + z-index: 1070; display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - display: inline-block; - vertical-align: middle; - margin-right: 0.75rem; + font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.428571429; + line-break: auto; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + font-size: 12px; + filter: alpha(opacity=0); + opacity: 0; } - -.dropdown.menu > li.opens-left > .is-dropdown-submenu { - top: 100%; - right: 0; - left: auto; +.tooltip.in { + filter: alpha(opacity=90); + opacity: 0.9; } -.dropdown.menu > li.opens-right > .is-dropdown-submenu { - top: 100%; - right: auto; - left: 0; +.tooltip.top { + padding: 5px 0; + margin-top: -3px; } -.dropdown.menu > li.is-dropdown-submenu-parent > a { - position: relative; - padding-right: 1.5rem; +.tooltip.right { + padding: 0 5px; + margin-left: 3px; } -.dropdown.menu > li.is-dropdown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - right: 5px; - left: auto; - margin-top: -3px; +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; } -[data-whatinput=mouse] .dropdown.menu a { - outline: 0; +.tooltip.left { + padding: 0 5px; + margin-left: -3px; } -.dropdown.menu > li > a { - padding: 0.7rem 1rem; +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; } -.dropdown.menu > li.is-active > a { - background: transparent; - color: #1779ba; +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; } -.no-js .dropdown.menu ul { - display: none; +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; } -.dropdown.menu .nested.is-dropdown-submenu { - margin-right: 0; - margin-left: 0; +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000; } -.dropdown.menu.vertical > li .is-dropdown-submenu { - top: 0; +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000; } -.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu { +.tooltip.bottom .tooltip-arrow { top: 0; - right: 100%; - left: auto; -} -.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; } -.dropdown.menu.vertical > li > a::after { - right: 14px; +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; } -.dropdown.menu.vertical > li.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; +.tooltip.bottom-right .tooltip-arrow { + top: 0; left: 5px; -} -.dropdown.menu.vertical > li.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; -} -@media print, screen and (min-width: 40em) { - .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu { - top: 100%; - right: 0; - left: auto; - } - .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu { - top: 100%; - right: auto; - left: 0; - } - .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a { - position: relative; - padding-right: 1.5rem; - } - .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - right: 5px; - left: auto; - margin-top: -3px; - } - .dropdown.menu.medium-vertical > li .is-dropdown-submenu { - top: 0; - } - .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu { - top: 0; - right: 100%; - left: auto; - } - .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; - } - .dropdown.menu.medium-vertical > li > a::after { - right: 14px; - } - .dropdown.menu.medium-vertical > li.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; - } - .dropdown.menu.medium-vertical > li.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - } -} -@media print, screen and (min-width: 64em) { - .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu { - top: 100%; - right: 0; - left: auto; - } - .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu { - top: 100%; - right: auto; - left: 0; - } - .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a { - position: relative; - padding-right: 1.5rem; - } - .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - right: 5px; - left: auto; - margin-top: -3px; - } - .dropdown.menu.large-vertical > li .is-dropdown-submenu { - top: 0; - } - .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu { - top: 0; - right: 100%; - left: auto; - } - .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; - } - .dropdown.menu.large-vertical > li > a::after { - right: 14px; - } - .dropdown.menu.large-vertical > li.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; - } - .dropdown.menu.large-vertical > li.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - } -} -.dropdown.menu.align-right .is-dropdown-submenu.first-sub { - top: 100%; - right: 0; - left: auto; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; } -.is-dropdown-menu.vertical { - width: 100px; -} -.is-dropdown-menu.vertical.align-right { - float: right; +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 4px; } -.is-dropdown-submenu-parent { - position: relative; -} -.is-dropdown-submenu-parent a::after { +.tooltip-arrow { position: absolute; - top: 50%; - right: 5px; - left: auto; - margin-top: -6px; -} -.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { - top: 100%; - left: auto; -} -.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { - right: 100%; - left: auto; -} -.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } -.is-dropdown-submenu { +.popover { position: absolute; top: 0; - left: 100%; - z-index: 1; + left: 0; + z-index: 1060; display: none; - min-width: 200px; - border: 1px solid #cacaca; - background: #fefefe; + max-width: 276px; + padding: 1px; + font-family: \\"Helvetica Neue\\", Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.428571429; + line-break: auto; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + font-size: 14px; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } -.dropdown .is-dropdown-submenu a { - padding: 0.7rem 1rem; +.popover.top { + margin-top: -10px; } -.is-dropdown-submenu .is-dropdown-submenu-parent > a::after { - right: 14px; +.popover.right { + margin-left: 10px; } -.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: \\"\\"; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; +.popover.bottom { + margin-top: 10px; } -.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { +.popover.left { + margin-left: -10px; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow, .popover > .arrow:after { + position: absolute; display: block; width: 0; height: 0; + border-color: transparent; border-style: solid; - border-width: 6px; - content: \\"\\"; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } -.is-dropdown-submenu .is-dropdown-submenu { - margin-top: -1px; +.popover > .arrow:after { + content: \\"\\"; + border-width: 10px; } -.is-dropdown-submenu > li { - width: 100%; +.popover.top > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; } -.is-dropdown-submenu.js-dropdown-active { - display: block; +.popover.top > .arrow:after { + bottom: 1px; + margin-left: -10px; + content: \\" \\"; + border-top-color: #fff; + border-bottom-width: 0; } - -.is-off-canvas-open { - overflow: hidden; +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; } - -.js-off-canvas-overlay { - position: absolute; - top: 0; - left: 0; - z-index: 11; - width: 100%; - height: 100%; - transition: opacity 0.5s ease, visibility 0.5s ease; - background: rgba(254, 254, 254, 0.25); - opacity: 0; - visibility: hidden; - overflow: hidden; +.popover.right > .arrow:after { + bottom: -10px; + left: 1px; + content: \\" \\"; + border-right-color: #fff; + border-left-width: 0; } -.js-off-canvas-overlay.is-visible { - opacity: 1; - visibility: visible; +.popover.bottom > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); } -.js-off-canvas-overlay.is-closable { - cursor: pointer; +.popover.bottom > .arrow:after { + top: 1px; + margin-left: -10px; + content: \\" \\"; + border-top-width: 0; + border-bottom-color: #fff; } -.js-off-canvas-overlay.is-overlay-absolute { - position: absolute; +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); } -.js-off-canvas-overlay.is-overlay-fixed { - position: fixed; +.popover.left > .arrow:after { + right: 1px; + bottom: -10px; + content: \\" \\"; + border-right-width: 0; + border-left-color: #fff; } -.off-canvas-wrapper { - position: relative; - overflow: hidden; +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; } -.off-canvas { - position: fixed; - z-index: 12; - transition: transform 0.5s ease; - backface-visibility: hidden; - background: #e6e6e6; -} -[data-whatinput=mouse] .off-canvas { - outline: 0; -} -.off-canvas.is-transition-push { - z-index: 12; -} -.off-canvas.is-closed { - visibility: hidden; -} -.off-canvas.is-transition-overlap { - z-index: 13; -} -.off-canvas.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); -} -.off-canvas.is-open { - transform: translate(0, 0); +.popover-content { + padding: 9px 14px; } -.off-canvas-absolute { - position: absolute; - z-index: 12; - transition: transform 0.5s ease; - backface-visibility: hidden; - background: #e6e6e6; -} -[data-whatinput=mouse] .off-canvas-absolute { - outline: 0; -} -.off-canvas-absolute.is-transition-push { - z-index: 12; -} -.off-canvas-absolute.is-closed { - visibility: hidden; -} -.off-canvas-absolute.is-transition-overlap { - z-index: 13; -} -.off-canvas-absolute.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); -} -.off-canvas-absolute.is-open { - transform: translate(0, 0); +.carousel { + position: relative; } -.position-left { - top: 0; - left: 0; - height: 100%; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - width: 250px; - transform: translateX(-250px); +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } -.off-canvas-content .off-canvas.position-left { - transform: translateX(-250px); +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; } -.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open { - transform: translate(0, 0); +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner > .item { + -webkit-transition: -webkit-transform 0.6s ease-in-out; + -moz-transition: -moz-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + -moz-perspective: 1000px; + perspective: 1000px; + } + .carousel-inner > .item.next, .carousel-inner > .item.active.right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + left: 0; + } + .carousel-inner > .item.prev, .carousel-inner > .item.active.left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + left: 0; + } + .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + left: 0; + } } - -.off-canvas-content.is-open-left.has-transition-push { - transform: translateX(250px); +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; } - -.position-left.is-transition-push { - box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25); +.carousel-inner > .active { + left: 0; } - -.position-right { +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; top: 0; - right: 0; - height: 100%; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - width: 250px; - transform: translateX(250px); + width: 100%; } -.off-canvas-content .off-canvas.position-right { - transform: translateX(250px); +.carousel-inner > .next { + left: 100%; } -.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open { - transform: translate(0, 0); +.carousel-inner > .prev { + left: -100%; } - -.off-canvas-content.is-open-right.has-transition-push { - transform: translateX(-250px); +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; } - -.position-right.is-transition-push { - box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25); +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; } -.position-top { +.carousel-control { + position: absolute; top: 0; + bottom: 0; left: 0; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - height: 250px; - transform: translateY(-250px); + width: 15%; + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + background-color: rgba(0, 0, 0, 0); + filter: alpha(opacity=50); + opacity: 0.5; } -.off-canvas-content .off-canvas.position-top { - transform: translateY(-250px); +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#80000000\\", endColorstr=\\"#00000000\\", GradientType=1); + background-repeat: repeat-x; } -.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open { - transform: translate(0, 0); +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\\"#00000000\\", endColorstr=\\"#80000000\\", GradientType=1); + background-repeat: repeat-x; } - -.off-canvas-content.is-open-top.has-transition-push { - transform: translateY(250px); +.carousel-control:hover, .carousel-control:focus { + color: #fff; + text-decoration: none; + outline: 0; + filter: alpha(opacity=90); + opacity: 0.9; } - -.position-top.is-transition-push { - box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25); +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; + margin-top: -10px; } - -.position-bottom { - bottom: 0; - left: 0; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - height: 250px; - transform: translateY(250px); +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; } -.off-canvas-content .off-canvas.position-bottom { - transform: translateY(250px); +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; } -.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open { - transform: translate(0, 0); +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + font-family: serif; + line-height: 1; } - -.off-canvas-content.is-open-bottom.has-transition-push { - transform: translateY(-250px); +.carousel-control .icon-prev:before { + content: \\"‹\\"; } - -.position-bottom.is-transition-push { - box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25); +.carousel-control .icon-next:before { + content: \\"›\\"; } -.off-canvas-content { - transform: none; - backface-visibility: hidden; -} -.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push { - transition: transform 0.5s ease; +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; } -.off-canvas-content.has-transition-push { - transform: translate(0, 0); +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \\\\9 ; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; } -.off-canvas-content .off-canvas.is-open { - transform: translate(0, 0); +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #fff; } -@media print, screen and (min-width: 40em) { - .position-left.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-left.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-left.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-left { - margin-left: 250px; - } - - .position-left.reveal-for-medium ~ .off-canvas-content { - margin-left: 250px; - } - - .position-right.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-right.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-right.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-right { - margin-right: 250px; - } - - .position-right.reveal-for-medium ~ .off-canvas-content { - margin-right: 250px; - } - - .position-top.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-top.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-top.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-top { - margin-top: 250px; - } - - .position-top.reveal-for-medium ~ .off-canvas-content { - margin-top: 250px; - } - - .position-bottom.reveal-for-medium { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-bottom.reveal-for-medium .close-button { - display: none; - } - .off-canvas-content .position-bottom.reveal-for-medium { - transform: none; - } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; - } - - .position-bottom.reveal-for-medium ~ .off-canvas-content { - margin-bottom: 250px; - } +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.carousel-caption .btn { + text-shadow: none; } -@media print, screen and (min-width: 64em) { - .position-left.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-left.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-left.reveal-for-large { - transform: none; - } - .off-canvas-content.has-reveal-left { - margin-left: 250px; - } - - .position-left.reveal-for-large ~ .off-canvas-content { - margin-left: 250px; - } - - .position-right.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-right.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-right.reveal-for-large { - transform: none; - } - .off-canvas-content.has-reveal-right { - margin-right: 250px; - } - - .position-right.reveal-for-large ~ .off-canvas-content { - margin-right: 250px; - } - .position-top.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-top.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-top.reveal-for-large { - transform: none; +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right, +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -10px; + font-size: 30px; } - .off-canvas-content.has-reveal-top { - margin-top: 250px; + .carousel-control .glyphicon-chevron-left, +.carousel-control .icon-prev { + margin-left: -10px; } - - .position-top.reveal-for-large ~ .off-canvas-content { - margin-top: 250px; + .carousel-control .glyphicon-chevron-right, +.carousel-control .icon-next { + margin-right: -10px; } - .position-bottom.reveal-for-large { - transform: none; - z-index: 12; - transition: none; - visibility: visible; - } - .position-bottom.reveal-for-large .close-button { - display: none; - } - .off-canvas-content .position-bottom.reveal-for-large { - transform: none; - } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; } - .position-bottom.reveal-for-large ~ .off-canvas-content { - margin-bottom: 250px; - } -} -@media print, screen and (min-width: 40em) { - .off-canvas.in-canvas-for-medium { - visibility: visible; - height: auto; - position: static; - background: none; - width: auto; - overflow: visible; - transition: none; - } - .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom { - box-shadow: none; - transform: none; - } - .off-canvas.in-canvas-for-medium .close-button { - display: none; - } -} -@media print, screen and (min-width: 64em) { - .off-canvas.in-canvas-for-large { - visibility: visible; - height: auto; - position: static; - background: none; - width: auto; - overflow: visible; - transition: none; - } - .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom { - box-shadow: none; - transform: none; - } - .off-canvas.in-canvas-for-large .close-button { - display: none; + .carousel-indicators { + bottom: 20px; } } -html.is-reveal-open { - position: fixed; - width: 100%; - overflow-y: hidden; -} -html.is-reveal-open.zf-has-scroll { - overflow-y: scroll; - -webkit-overflow-scrolling: touch; -} -html.is-reveal-open body { - overflow-y: hidden; +.clearfix:before, .clearfix:after { + display: table; + content: \\" \\"; } - -.reveal-overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1005; - display: none; - background-color: rgba(10, 10, 10, 0.45); - overflow-y: auto; - -webkit-overflow-scrolling: touch; +.clearfix:after { + clear: both; } -.reveal { - z-index: 1006; - backface-visibility: hidden; - display: none; - padding: 1rem; - border: 1px solid #cacaca; - border-radius: 0; - background-color: #fefefe; - position: relative; - top: 100px; +.center-block { + display: block; margin-right: auto; margin-left: auto; - overflow-y: auto; - -webkit-overflow-scrolling: touch; -} -[data-whatinput=mouse] .reveal { - outline: 0; -} -@media print, screen and (min-width: 40em) { - .reveal { - min-height: 0; - } -} -.reveal .column { - min-width: 0; -} -.reveal > :last-child { - margin-bottom: 0; -} -@media print, screen and (min-width: 40em) { - .reveal { - width: 600px; - max-width: 75rem; - } -} -.reveal.collapse { - padding: 0; -} -@media print, screen and (min-width: 40em) { - .reveal.tiny { - width: 30%; - max-width: 75rem; - } } -@media print, screen and (min-width: 40em) { - .reveal.small { - width: 50%; - max-width: 75rem; - } + +.pull-right { + float: right !important; } -@media print, screen and (min-width: 40em) { - .reveal.large { - width: 90%; - max-width: 75rem; - } + +.pull-left { + float: left !important; } -.reveal.full { - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - max-width: none; - height: 100%; - min-height: 100%; - margin-left: 0; - border: 0; - border-radius: 0; + +.hide { + display: none !important; } -@media print, screen and (max-width: 39.99875em) { - .reveal { - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - max-width: none; - height: 100%; - min-height: 100%; - margin-left: 0; - border: 0; - border-radius: 0; - } + +.show { + display: block !important; } -.reveal.without-overlay { - position: fixed; + +.invisible { + visibility: hidden; } -.sticky-container { - position: relative; +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } -.sticky { - position: relative; - z-index: 0; - transform: translate3d(0, 0, 0); +.hidden { + display: none !important; } -.sticky.is-stuck { +.affix { position: fixed; - z-index: 5; - width: 100%; -} -.sticky.is-stuck.is-at-top { - top: 0; -} -.sticky.is-stuck.is-at-bottom { - bottom: 0; } -.sticky.is-anchored { - position: relative; - right: auto; - left: auto; +@-ms-viewport { + width: device-width; } -.sticky.is-anchored.is-at-bottom { - bottom: 0; +.visible-xs { + display: none !important; } -.title-bar { - padding: 0.5rem; - background: #0a0a0a; - color: #fefefe; - display: flex; - justify-content: flex-start; - align-items: center; -} -.title-bar .menu-icon { - margin-left: 0.25rem; - margin-right: 0.25rem; +.visible-sm { + display: none !important; } -.title-bar-left, -.title-bar-right { - flex: 1 1 0px; +.visible-md { + display: none !important; } -.title-bar-right { - text-align: right; +.visible-lg { + display: none !important; } -.title-bar-title { - display: inline-block; - vertical-align: middle; - font-weight: bold; +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; } -.top-bar { - display: flex; - flex-wrap: nowrap; - justify-content: space-between; - align-items: center; - padding: 0.5rem; - flex-wrap: wrap; -} -.top-bar, -.top-bar ul { - background-color: #e6e6e6; -} -.top-bar input { - max-width: 200px; - margin-right: 1rem; -} -.top-bar .input-group-field { - width: 100%; - margin-right: 0; -} -.top-bar input.button { - width: auto; -} -.top-bar .top-bar-left, -.top-bar .top-bar-right { - flex: 0 0 100%; - max-width: 100%; -} -@media print, screen and (min-width: 40em) { - .top-bar { - flex-wrap: nowrap; - } - .top-bar .top-bar-left { - flex: 1 1 auto; - margin-right: auto; +@media (max-width: 767px) { + .visible-xs { + display: block !important; } - .top-bar .top-bar-right { - flex: 0 1 auto; - margin-left: auto; + + table.visible-xs { + display: table !important; } -} -@media print, screen and (max-width: 63.99875em) { - .top-bar.stacked-for-medium { - flex-wrap: wrap; + + tr.visible-xs { + display: table-row !important; } - .top-bar.stacked-for-medium .top-bar-left, -.top-bar.stacked-for-medium .top-bar-right { - flex: 0 0 100%; - max-width: 100%; + + th.visible-xs, +td.visible-xs { + display: table-cell !important; } } -@media print, screen and (max-width: 74.99875em) { - .top-bar.stacked-for-large { - flex-wrap: wrap; - } - .top-bar.stacked-for-large .top-bar-left, -.top-bar.stacked-for-large .top-bar-right { - flex: 0 0 100%; - max-width: 100%; +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; } } -.top-bar-title { - flex: 0 0 auto; - margin: 0.5rem 1rem 0.5rem 0; +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } } -.top-bar-left, -.top-bar-right { - flex: 0 0 auto; +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } } -.float-left { - float: left !important; -} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } -.float-right { - float: right !important; -} + table.visible-sm { + display: table !important; + } -.float-center { - display: block; - margin-right: auto; - margin-left: auto; -} + tr.visible-sm { + display: table-row !important; + } -.clearfix::before, .clearfix::after { - display: table; - content: \\" \\"; - flex-basis: 0; - order: 1; + th.visible-sm, +td.visible-sm { + display: table-cell !important; + } } -.clearfix::after { - clear: both; +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } } -.hide { - display: none !important; +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } } -.invisible { - visibility: hidden; +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } } -.visible { - visibility: visible; -} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } -@media print, screen and (max-width: 39.99875em) { - .hide-for-small-only { - display: none !important; + table.visible-md { + display: table !important; } -} -@media screen and (max-width: 0em), screen and (min-width: 40em) { - .show-for-small-only { - display: none !important; + tr.visible-md { + display: table-row !important; } -} -@media print, screen and (min-width: 40em) { - .hide-for-medium { - display: none !important; + th.visible-md, +td.visible-md { + display: table-cell !important; } } - -@media screen and (max-width: 39.99875em) { - .show-for-medium { - display: none !important; +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; } } -@media print, screen and (min-width: 40em) and (max-width: 63.99875em) { - .hide-for-medium-only { - display: none !important; +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; } } -@media screen and (max-width: 39.99875em), screen and (min-width: 64em) { - .show-for-medium-only { - display: none !important; +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; } } -@media print, screen and (min-width: 64em) { - .hide-for-large { - display: none !important; +@media (min-width: 1200px) { + .visible-lg { + display: block !important; } -} -@media screen and (max-width: 63.99875em) { - .show-for-large { - display: none !important; + table.visible-lg { + display: table !important; } -} -@media print, screen and (min-width: 64em) and (max-width: 74.99875em) { - .hide-for-large-only { - display: none !important; + tr.visible-lg { + display: table-row !important; } -} -@media screen and (max-width: 63.99875em), screen and (min-width: 75em) { - .show-for-large-only { - display: none !important; + th.visible-lg, +td.visible-lg { + display: table-cell !important; } } - -.show-for-sr, -.show-on-focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border: 0 !important; +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } } -.show-on-focus:active, .show-on-focus:focus { - position: static !important; - width: auto !important; - height: auto !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } } -.show-for-landscape, -.hide-for-portrait { - display: block !important; -} -@media screen and (orientation: landscape) { - .show-for-landscape, -.hide-for-portrait { - display: block !important; +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; } } -@media screen and (orientation: portrait) { - .show-for-landscape, -.hide-for-portrait { + +@media (max-width: 767px) { + .hidden-xs { display: none !important; } } - -.hide-for-landscape, -.show-for-portrait { - display: none !important; -} -@media screen and (orientation: landscape) { - .hide-for-landscape, -.show-for-portrait { +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { display: none !important; } } -@media screen and (orientation: portrait) { - .hide-for-landscape, -.show-for-portrait { - display: block !important; +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; } } - -.show-for-dark-mode { - display: none; +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } } - -.hide-for-dark-mode { - display: block; +.visible-print { + display: none !important; } -@media screen and (prefers-color-scheme: dark) { - .show-for-dark-mode { +@media print { + .visible-print { display: block !important; } - .hide-for-dark-mode { - display: none !important; + table.visible-print { + display: table !important; + } + + tr.visible-print { + display: table-row !important; + } + + th.visible-print, +td.visible-print { + display: table-cell !important; } } -.show-for-ie { - display: none; +.visible-print-block { + display: none !important; } - -@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { - .show-for-ie { +@media print { + .visible-print-block { display: block !important; } +} - .hide-for-ie { - display: none !important; - } +.visible-print-inline { + display: none !important; } -.show-for-sticky { - display: none; +@media print { + .visible-print-inline { + display: inline !important; + } } -.is-stuck .show-for-sticky { - display: block; +.visible-print-inline-block { + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } } -.is-stuck .hide-for-sticky { - display: none; +@media print { + .hidden-print { + display: none !important; + } }" `; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (scss): errors 1`] = `Array []`; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work with the "bootstrap-sass" package, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (node-sass) (sass): css 1`] = ` +exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; /** * Foundation for Sites @@ -257977,67 +191586,82 @@ exports[`loader should work with the "foundation-sites" package, adjusting CSS o * Licensed under MIT Open Source */ @media print, screen and (min-width: 40em) { - .reveal, .reveal.tiny, .reveal.small, .reveal.large { + .reveal.large, .reveal.small, .reveal.tiny, .reveal { right: auto; left: auto; - margin: 0 auto; } } - + margin: 0 auto; + } +} /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ html { line-height: 1.15; - -webkit-text-size-adjust: 100%; } + -webkit-text-size-adjust: 100%; +} body { - margin: 0; } + margin: 0; +} h1 { font-size: 2em; - margin: 0.67em 0; } + margin: 0.67em 0; +} hr { box-sizing: content-box; height: 0; - overflow: visible; } + overflow: visible; +} pre { font-family: monospace, monospace; - font-size: 1em; } + font-size: 1em; +} a { - background-color: transparent; } + background-color: transparent; +} abbr[title] { border-bottom: 0; - text-decoration: underline dotted; } + text-decoration: underline dotted; +} b, strong { - font-weight: bolder; } + font-weight: bolder; +} code, kbd, samp { font-family: monospace, monospace; - font-size: 1em; } + font-size: 1em; +} small { - font-size: 80%; } + font-size: 80%; +} sub, sup { font-size: 75%; line-height: 0; position: relative; - vertical-align: baseline; } + vertical-align: baseline; +} sub { - bottom: -0.25em; } + bottom: -0.25em; +} sup { - top: -0.5em; } + top: -0.5em; +} img { - border-style: none; } + border-style: none; +} button, input, @@ -258047,37 +191671,44 @@ textarea { font-family: inherit; font-size: 100%; line-height: 1.15; - margin: 0; } + margin: 0; +} button, input { - overflow: visible; } + overflow: visible; +} button, select { - text-transform: none; } + text-transform: none; +} button, -[type=\\"button\\"], -[type=\\"reset\\"], -[type=\\"submit\\"] { - -webkit-appearance: button; } +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} button::-moz-focus-inner, -[type=\\"button\\"]::-moz-focus-inner, -[type=\\"reset\\"]::-moz-focus-inner, -[type=\\"submit\\"]::-moz-focus-inner { +[type=button]::-moz-focus-inner, +[type=reset]::-moz-focus-inner, +[type=submit]::-moz-focus-inner { border-style: none; - padding: 0; } + padding: 0; +} button:-moz-focusring, -[type=\\"button\\"]:-moz-focusring, -[type=\\"reset\\"]:-moz-focusring, -[type=\\"submit\\"]:-moz-focusring { - outline: 1px dotted ButtonText; } +[type=button]:-moz-focusring, +[type=reset]:-moz-focusring, +[type=submit]:-moz-focusring { + outline: 1px dotted ButtonText; +} fieldset { - padding: 0.35em 0.75em 0.625em; } + padding: 0.35em 0.75em 0.625em; +} legend { box-sizing: border-box; @@ -258085,70 +191716,87 @@ legend { display: table; max-width: 100%; padding: 0; - white-space: normal; } + white-space: normal; +} progress { - vertical-align: baseline; } + vertical-align: baseline; +} textarea { - overflow: auto; } + overflow: auto; +} -[type=\\"checkbox\\"], -[type=\\"radio\\"] { +[type=checkbox], +[type=radio] { box-sizing: border-box; - padding: 0; } + padding: 0; +} -[type=\\"number\\"]::-webkit-inner-spin-button, -[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } +[type=number]::-webkit-inner-spin-button, +[type=number]::-webkit-outer-spin-button { + height: auto; +} -[type=\\"search\\"] { +[type=search] { -webkit-appearance: textfield; - outline-offset: -2px; } + outline-offset: -2px; +} -[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } +[type=search]::-webkit-search-decoration { + -webkit-appearance: none; +} ::-webkit-file-upload-button { -webkit-appearance: button; - font: inherit; } + font: inherit; +} details { - display: block; } + display: block; +} summary { - display: list-item; } + display: list-item; +} template { - display: none; } + display: none; +} [hidden] { - display: none; } + display: none; +} -[data-whatintent=\\"mouse\\"] *, [data-whatintent=\\"mouse\\"] *:focus, -[data-whatintent=\\"touch\\"] *, -[data-whatintent=\\"touch\\"] *:focus, -[data-whatinput=\\"mouse\\"] *, -[data-whatinput=\\"mouse\\"] *:focus, -[data-whatinput=\\"touch\\"] *, -[data-whatinput=\\"touch\\"] *:focus { - outline: none; } +[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus, +[data-whatintent=touch] *, +[data-whatintent=touch] *:focus, +[data-whatinput=mouse] *, +[data-whatinput=mouse] *:focus, +[data-whatinput=touch] *, +[data-whatinput=touch] *:focus { + outline: none; +} [draggable=false] { -webkit-touch-callout: none; - -webkit-user-select: none; } + -webkit-user-select: none; +} .foundation-mq { - font-family: \\"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em\\"; } + font-family: \\"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em\\"; +} html { box-sizing: border-box; - font-size: 100%; } + font-size: 100%; +} *, *::before, *::after { - box-sizing: inherit; } + box-sizing: inherit; +} body { margin: 0; @@ -258159,24 +191807,28 @@ body { line-height: 1.5; color: #0a0a0a; -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } + -moz-osx-font-smoothing: grayscale; +} img { display: inline-block; vertical-align: middle; max-width: 100%; height: auto; - -ms-interpolation-mode: bicubic; } + -ms-interpolation-mode: bicubic; +} textarea { height: auto; min-height: 50px; - border-radius: 0; } + border-radius: 0; +} select { box-sizing: border-box; width: 100%; - border-radius: 0; } + border-radius: 0; +} .map_canvas img, .map_canvas embed, @@ -258184,7 +191836,8 @@ select { .mqa-display img, .mqa-display embed, .mqa-display object { - max-width: none !important; } + max-width: none !important; +} button { padding: 0; @@ -258193,28 +191846,34 @@ button { border-radius: 0; background: transparent; line-height: 1; - cursor: auto; } - [data-whatinput='mouse'] button { - outline: 0; } + cursor: auto; +} +[data-whatinput=mouse] button { + outline: 0; +} pre { overflow: auto; - -webkit-overflow-scrolling: touch; } + -webkit-overflow-scrolling: touch; +} button, input, optgroup, select, textarea { - font-family: inherit; } + font-family: inherit; +} .is-visible { - display: block !important; } + display: block !important; +} .is-hidden { - display: none !important; } + display: none !important; +} -[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], +[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color], textarea { display: block; box-sizing: border-box; @@ -258232,59 +191891,72 @@ textarea { line-height: 1.5; color: #0a0a0a; transition: box-shadow 0.5s, border-color 0.25s ease-in-out; - appearance: none; } - [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, - textarea:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } + appearance: none; +} +[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus, +textarea:focus { + outline: none; + border: 1px solid #8a8a8a; + background-color: #fefefe; + box-shadow: 0 0 5px #cacaca; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +} textarea { - max-width: 100%; } - textarea[rows] { - height: auto; } + max-width: 100%; +} +textarea[rows] { + height: auto; +} input:disabled, input[readonly], textarea:disabled, textarea[readonly] { background-color: #e6e6e6; - cursor: not-allowed; } + cursor: not-allowed; +} -[type='submit'], -[type='button'] { +[type=submit], +[type=button] { appearance: none; - border-radius: 0; } + border-radius: 0; +} -input[type='search'] { - box-sizing: border-box; } +input[type=search] { + box-sizing: border-box; +} ::placeholder { - color: #cacaca; } + color: #cacaca; +} -[type='file'], -[type='checkbox'], -[type='radio'] { - margin: 0 0 1rem; } +[type=file], +[type=checkbox], +[type=radio] { + margin: 0 0 1rem; +} -[type='checkbox'] + label, -[type='radio'] + label { +[type=checkbox] + label, +[type=radio] + label { display: inline-block; vertical-align: baseline; margin-left: 0.5rem; margin-right: 1rem; - margin-bottom: 0; } - [type='checkbox'] + label[for], - [type='radio'] + label[for] { - cursor: pointer; } + margin-bottom: 0; +} +[type=checkbox] + label[for], +[type=radio] + label[for] { + cursor: pointer; +} -label > [type='checkbox'], -label > [type='radio'] { - margin-right: 0.5rem; } +label > [type=checkbox], +label > [type=radio] { + margin-right: 0.5rem; +} -[type='file'] { - width: 100%; } +[type=file] { + width: 100%; +} label { display: block; @@ -258292,34 +191964,41 @@ label { font-size: 0.875rem; font-weight: normal; line-height: 1.8; - color: #0a0a0a; } - label.middle { - margin: 0 0 1rem; - line-height: 1.5; - padding: 0.5625rem 0; } + color: #0a0a0a; +} +label.middle { + margin: 0 0 1rem; + line-height: 1.5; + padding: 0.5625rem 0; +} .help-text { margin-top: -0.5rem; font-size: 0.8125rem; font-style: italic; - color: #0a0a0a; } + color: #0a0a0a; +} .input-group { display: flex; width: 100%; margin-bottom: 1rem; - align-items: stretch; } - .input-group > :first-child, .input-group > :first-child.input-group-button > * { - border-radius: 0 0 0 0; } - .input-group > :last-child, .input-group > :last-child.input-group-button > * { - border-radius: 0 0 0 0; } + align-items: stretch; +} +.input-group > :first-child, .input-group > :first-child.input-group-button > * { + border-radius: 0 0 0 0; +} +.input-group > :last-child, .input-group > :last-child.input-group-button > * { + border-radius: 0 0 0 0; +} -.input-group-label, .input-group-field, .input-group-button, .input-group-button a, +.input-group-button a, .input-group-button input, .input-group-button button, -.input-group-button label { +.input-group-button label, .input-group-button, .input-group-field, .input-group-label { margin: 0; - white-space: nowrap; } + white-space: nowrap; +} .input-group-label { padding: 0 1rem; @@ -258330,50 +192009,60 @@ label { white-space: nowrap; display: flex; flex: 0 0 auto; - align-items: center; } - .input-group-label:first-child { - border-right: 0; } - .input-group-label:last-child { - border-left: 0; } + align-items: center; +} +.input-group-label:first-child { + border-right: 0; +} +.input-group-label:last-child { + border-left: 0; +} .input-group-field { border-radius: 0; flex: 1 1 0px; - min-width: 0; } + min-width: 0; +} .input-group-button { padding-top: 0; padding-bottom: 0; text-align: center; display: flex; - flex: 0 0 auto; } - .input-group-button a, - .input-group-button input, - .input-group-button button, - .input-group-button label { - align-self: stretch; - height: auto; - padding-top: 0; - padding-bottom: 0; - font-size: 1rem; } + flex: 0 0 auto; +} +.input-group-button a, +.input-group-button input, +.input-group-button button, +.input-group-button label { + align-self: stretch; + height: auto; + padding-top: 0; + padding-bottom: 0; + font-size: 1rem; +} fieldset { margin: 0; padding: 0; - border: 0; } + border: 0; +} legend { max-width: 100%; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} .fieldset { margin: 1.125rem 0; padding: 1.25rem; - border: 1px solid #cacaca; } - .fieldset legend { - margin: 0; - margin-left: -0.1875rem; - padding: 0 0.1875rem; } + border: 1px solid #cacaca; +} +.fieldset legend { + margin: 0; + margin-left: -0.1875rem; + padding: 0 0.1875rem; +} select { height: 2.4375rem; @@ -258394,36 +192083,47 @@ select { background-repeat: no-repeat; background-size: 9px 6px; padding-right: 1.5rem; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } - @media screen and (min-width: 0\\\\0) { - select { - background-image: url(\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==\\"); } } - select:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } - select:disabled { - background-color: #e6e6e6; - cursor: not-allowed; } - select::-ms-expand { - display: none; } - select[multiple] { - height: auto; - background-image: none; } - select:not([multiple]) { - padding-top: 0; - padding-bottom: 0; } + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +} +@media screen and (min-width: 0\\\\0 ) { + select { + background-image: url(\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==\\"); + } +} +select:focus { + outline: none; + border: 1px solid #8a8a8a; + background-color: #fefefe; + box-shadow: 0 0 5px #cacaca; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +} +select:disabled { + background-color: #e6e6e6; + cursor: not-allowed; +} +select::-ms-expand { + display: none; +} +select[multiple] { + height: auto; + background-image: none; +} +select:not([multiple]) { + padding-top: 0; + padding-bottom: 0; +} .is-invalid-input:not(:focus) { border-color: #cc4b37; - background-color: #f9ecea; } - .is-invalid-input:not(:focus)::placeholder { - color: #cc4b37; } + background-color: #f9ecea; +} +.is-invalid-input:not(:focus)::placeholder { + color: #cc4b37; +} .is-invalid-label { - color: #cc4b37; } + color: #cc4b37; +} .form-error { display: none; @@ -258431,9 +192131,11 @@ select { margin-bottom: 1rem; font-size: 0.75rem; font-weight: bold; - color: #cc4b37; } - .form-error.is-visible { - display: block; } + color: #cc4b37; +} +.form-error.is-visible { + display: block; +} div, dl, @@ -258455,27 +192157,32 @@ blockquote, th, td { margin: 0; - padding: 0; } + padding: 0; +} p { margin-bottom: 1rem; font-size: inherit; line-height: 1.6; - text-rendering: optimizeLegibility; } + text-rendering: optimizeLegibility; +} em, i { font-style: italic; - line-height: inherit; } + line-height: inherit; +} strong, b { font-weight: bold; - line-height: inherit; } + line-height: inherit; +} small { font-size: 80%; - line-height: inherit; } + line-height: inherit; +} h1, .h1, h2, .h2, @@ -258487,75 +192194,97 @@ h6, .h6 { font-style: normal; font-weight: normal; color: inherit; - text-rendering: optimizeLegibility; } - h1 small, .h1 small, - h2 small, .h2 small, - h3 small, .h3 small, - h4 small, .h4 small, - h5 small, .h5 small, - h6 small, .h6 small { - line-height: 0; - color: #cacaca; } + text-rendering: optimizeLegibility; +} +h1 small, .h1 small, +h2 small, .h2 small, +h3 small, .h3 small, +h4 small, .h4 small, +h5 small, .h5 small, +h6 small, .h6 small { + line-height: 0; + color: #cacaca; +} h1, .h1 { font-size: 1.5rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h2, .h2 { font-size: 1.25rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h3, .h3 { font-size: 1.1875rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h4, .h4 { font-size: 1.125rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h5, .h5 { font-size: 1.0625rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h6, .h6 { font-size: 1rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} @media print, screen and (min-width: 40em) { h1, .h1 { - font-size: 3rem; } + font-size: 3rem; + } + h2, .h2 { - font-size: 2.5rem; } + font-size: 2.5rem; + } + h3, .h3 { - font-size: 1.9375rem; } + font-size: 1.9375rem; + } + h4, .h4 { - font-size: 1.5625rem; } + font-size: 1.5625rem; + } + h5, .h5 { - font-size: 1.25rem; } - h6, .h6 { - font-size: 1rem; } } + font-size: 1.25rem; + } + h6, .h6 { + font-size: 1rem; + } +} a { line-height: inherit; color: #1779ba; text-decoration: none; - cursor: pointer; } - a:hover, a:focus { - color: #1468a0; } - a img { - border: 0; } + cursor: pointer; +} +a:hover, a:focus { + color: #1468a0; +} +a img { + border: 0; +} hr { clear: both; @@ -258565,87 +192294,107 @@ hr { border-top: 0; border-right: 0; border-bottom: 1px solid #cacaca; - border-left: 0; } + border-left: 0; +} ul, ol, dl { margin-bottom: 1rem; list-style-position: outside; - line-height: 1.6; } + line-height: 1.6; +} li { - font-size: inherit; } + font-size: inherit; +} ul { margin-left: 1.25rem; - list-style-type: disc; } + list-style-type: disc; +} ol { - margin-left: 1.25rem; } + margin-left: 1.25rem; +} -ul ul, ol ul, ul ol, ol ol { +ul ul, ul ol, ol ul, ol ol { margin-left: 1.25rem; - margin-bottom: 0; } + margin-bottom: 0; +} dl { - margin-bottom: 1rem; } - dl dt { - margin-bottom: 0.3rem; - font-weight: bold; } + margin-bottom: 1rem; +} +dl dt { + margin-bottom: 0.3rem; + font-weight: bold; +} blockquote { margin: 0 0 1rem; padding: 0.5625rem 1.25rem 0 1.1875rem; - border-left: 1px solid #cacaca; } - blockquote, blockquote p { - line-height: 1.6; - color: #8a8a8a; } + border-left: 1px solid #cacaca; +} +blockquote, blockquote p { + line-height: 1.6; + color: #8a8a8a; +} abbr, abbr[title] { border-bottom: 1px dotted #0a0a0a; cursor: help; - text-decoration: none; } + text-decoration: none; +} figure { - margin: 0; } + margin: 0; +} kbd { margin: 0; padding: 0.125rem 0.25rem 0; background-color: #e6e6e6; font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - color: #0a0a0a; } + color: #0a0a0a; +} .subheader { margin-top: 0.2rem; margin-bottom: 0.5rem; font-weight: normal; line-height: 1.4; - color: #8a8a8a; } + color: #8a8a8a; +} .lead { font-size: 125%; - line-height: 1.6; } + line-height: 1.6; +} .stat { font-size: 2.5rem; - line-height: 1; } - p + .stat { - margin-top: -1rem; } + line-height: 1; +} +p + .stat { + margin-top: -1rem; +} ul.no-bullet, ol.no-bullet { margin-left: 0; - list-style: none; } + list-style: none; +} -cite, .cite-block { +.cite-block, cite { display: block; color: #8a8a8a; - font-size: 0.8125rem; } - cite:before, .cite-block:before { - content: \\"— \\"; } + font-size: 0.8125rem; +} +.cite-block:before, cite:before { + content: \\"— \\"; +} -code, .code-inline { +.code-inline, code { border: 1px solid #cacaca; background-color: #e6e6e6; font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; @@ -258654,7 +192403,8 @@ code, .code-inline { display: inline; max-width: 100%; word-wrap: break-word; - padding: 0.125rem 0.3125rem 0.0625rem; } + padding: 0.125rem 0.3125rem 0.0625rem; +} .code-block { border: 1px solid #cacaca; @@ -258666,42 +192416,62 @@ code, .code-inline { overflow: auto; white-space: pre; padding: 1rem; - margin-bottom: 1.5rem; } + margin-bottom: 1.5rem; +} .text-left { - text-align: left; } + text-align: left; +} .text-right { - text-align: right; } + text-align: right; +} .text-center { - text-align: center; } + text-align: center; +} .text-justify { - text-align: justify; } + text-align: justify; +} @media print, screen and (min-width: 40em) { .medium-text-left { - text-align: left; } + text-align: left; + } + .medium-text-right { - text-align: right; } + text-align: right; + } + .medium-text-center { - text-align: center; } - .medium-text-justify { - text-align: justify; } } + text-align: center; + } + .medium-text-justify { + text-align: justify; + } +} @media print, screen and (min-width: 64em) { .large-text-left { - text-align: left; } + text-align: left; + } + .large-text-right { - text-align: right; } + text-align: right; + } + .large-text-center { - text-align: center; } - .large-text-justify { - text-align: justify; } } + text-align: center; + } + .large-text-justify { + text-align: justify; + } +} .show-for-print { - display: none !important; } + display: none !important; +} @media print { * { @@ -258709,1252 +192479,1916 @@ code, .code-inline { color: black !important; color-adjust: economy; box-shadow: none !important; - text-shadow: none !important; } + text-shadow: none !important; + } + .show-for-print { - display: block !important; } + display: block !important; + } + .hide-for-print { - display: none !important; } + display: none !important; + } + table.show-for-print { - display: table !important; } + display: table !important; + } + thead.show-for-print { - display: table-header-group !important; } + display: table-header-group !important; + } + tbody.show-for-print { - display: table-row-group !important; } + display: table-row-group !important; + } + tr.show-for-print { - display: table-row !important; } + display: table-row !important; + } + td.show-for-print { - display: table-cell !important; } + display: table-cell !important; + } + th.show-for-print { - display: table-cell !important; } + display: table-cell !important; + } + a, - a:visited { - text-decoration: underline; } +a:visited { + text-decoration: underline; + } + a[href]:after { - content: \\" (\\" attr(href) \\")\\"; } + content: \\" (\\" attr(href) \\")\\"; + } + .ir a:after, - a[href^='javascript:']:after, - a[href^='#']:after { - content: ''; } +a[href^=\\"javascript:\\"]:after, +a[href^=\\"#\\"]:after { + content: \\"\\"; + } + abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; } + content: \\" (\\" attr(title) \\")\\"; + } + pre, - blockquote { +blockquote { border: 1px solid #8a8a8a; - page-break-inside: avoid; } + page-break-inside: avoid; + } + thead { - display: table-header-group; } + display: table-header-group; + } + tr, +img { + page-break-inside: avoid; + } + img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } + max-width: 100% !important; + } + @page { - margin: 0.5cm; } + margin: 0.5cm; + } p, - h2, - h3 { +h2, +h3 { orphans: 3; - widows: 3; } + widows: 3; + } + h2, - h3 { - page-break-after: avoid; } - .print-break-inside { - page-break-inside: auto; } } +h3 { + page-break-after: avoid; + } + .print-break-inside { + page-break-inside: auto; + } +} .grid-container { padding-right: 0.625rem; padding-left: 0.625rem; max-width: 75rem; margin-left: auto; - margin-right: auto; } - @media print, screen and (min-width: 40em) { - .grid-container { - padding-right: 0.9375rem; - padding-left: 0.9375rem; } } + margin-right: auto; +} +@media print, screen and (min-width: 40em) { + .grid-container { + padding-right: 0.9375rem; + padding-left: 0.9375rem; + } +} +.grid-container.fluid { + padding-right: 0.625rem; + padding-left: 0.625rem; + max-width: 100%; + margin-left: auto; + margin-right: auto; +} +@media print, screen and (min-width: 40em) { .grid-container.fluid { - padding-right: 0.625rem; - padding-left: 0.625rem; - max-width: 100%; - margin-left: auto; - margin-right: auto; } - @media print, screen and (min-width: 40em) { - .grid-container.fluid { - padding-right: 0.9375rem; - padding-left: 0.9375rem; } } - .grid-container.full { - padding-right: 0; - padding-left: 0; - max-width: 100%; - margin-left: auto; - margin-right: auto; } + padding-right: 0.9375rem; + padding-left: 0.9375rem; + } +} +.grid-container.full { + padding-right: 0; + padding-left: 0; + max-width: 100%; + margin-left: auto; + margin-right: auto; +} .grid-x { display: flex; - flex-flow: row wrap; } + flex-flow: row wrap; +} .cell { flex: 0 0 auto; min-height: 0; min-width: 0; - width: 100%; } - .cell.auto { - flex: 1 1 0; } - .cell.shrink { - flex: 0 0 auto; } + width: 100%; +} +.cell.auto { + flex: 1 1 0; +} +.cell.shrink { + flex: 0 0 auto; +} .grid-x > .auto { - width: auto; } - + width: auto; +} .grid-x > .shrink { - width: auto; } + width: auto; +} .grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { - flex-basis: auto; } + flex-basis: auto; +} @media print, screen and (min-width: 40em) { .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { - flex-basis: auto; } } - + flex-basis: auto; + } +} @media print, screen and (min-width: 64em) { .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { - flex-basis: auto; } } - -.grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { - flex: 0 0 auto; } + flex-basis: auto; + } +} +.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 { + flex: 0 0 auto; +} .grid-x > .small-1 { - width: 8.33333%; } + width: 8.3333333333%; +} .grid-x > .small-2 { - width: 16.66667%; } + width: 16.6666666667%; +} .grid-x > .small-3 { - width: 25%; } + width: 25%; +} .grid-x > .small-4 { - width: 33.33333%; } + width: 33.3333333333%; +} .grid-x > .small-5 { - width: 41.66667%; } + width: 41.6666666667%; +} .grid-x > .small-6 { - width: 50%; } + width: 50%; +} .grid-x > .small-7 { - width: 58.33333%; } + width: 58.3333333333%; +} .grid-x > .small-8 { - width: 66.66667%; } + width: 66.6666666667%; +} .grid-x > .small-9 { - width: 75%; } + width: 75%; +} .grid-x > .small-10 { - width: 83.33333%; } + width: 83.3333333333%; +} .grid-x > .small-11 { - width: 91.66667%; } + width: 91.6666666667%; +} .grid-x > .small-12 { - width: 100%; } + width: 100%; +} @media print, screen and (min-width: 40em) { .grid-x > .medium-auto { flex: 1 1 0; - width: auto; } - .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { - flex: 0 0 auto; } + width: auto; + } + + .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink { + flex: 0 0 auto; + } + .grid-x > .medium-shrink { - width: auto; } + width: auto; + } + .grid-x > .medium-1 { - width: 8.33333%; } + width: 8.3333333333%; + } + .grid-x > .medium-2 { - width: 16.66667%; } + width: 16.6666666667%; + } + .grid-x > .medium-3 { - width: 25%; } + width: 25%; + } + .grid-x > .medium-4 { - width: 33.33333%; } + width: 33.3333333333%; + } + .grid-x > .medium-5 { - width: 41.66667%; } + width: 41.6666666667%; + } + .grid-x > .medium-6 { - width: 50%; } + width: 50%; + } + .grid-x > .medium-7 { - width: 58.33333%; } + width: 58.3333333333%; + } + .grid-x > .medium-8 { - width: 66.66667%; } + width: 66.6666666667%; + } + .grid-x > .medium-9 { - width: 75%; } + width: 75%; + } + .grid-x > .medium-10 { - width: 83.33333%; } + width: 83.3333333333%; + } + .grid-x > .medium-11 { - width: 91.66667%; } - .grid-x > .medium-12 { - width: 100%; } } + width: 91.6666666667%; + } + .grid-x > .medium-12 { + width: 100%; + } +} @media print, screen and (min-width: 64em) { .grid-x > .large-auto { flex: 1 1 0; - width: auto; } - .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { - flex: 0 0 auto; } + width: auto; + } + + .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink { + flex: 0 0 auto; + } + .grid-x > .large-shrink { - width: auto; } + width: auto; + } + .grid-x > .large-1 { - width: 8.33333%; } + width: 8.3333333333%; + } + .grid-x > .large-2 { - width: 16.66667%; } + width: 16.6666666667%; + } + .grid-x > .large-3 { - width: 25%; } + width: 25%; + } + .grid-x > .large-4 { - width: 33.33333%; } + width: 33.3333333333%; + } + .grid-x > .large-5 { - width: 41.66667%; } + width: 41.6666666667%; + } + .grid-x > .large-6 { - width: 50%; } + width: 50%; + } + .grid-x > .large-7 { - width: 58.33333%; } + width: 58.3333333333%; + } + .grid-x > .large-8 { - width: 66.66667%; } + width: 66.6666666667%; + } + .grid-x > .large-9 { - width: 75%; } + width: 75%; + } + .grid-x > .large-10 { - width: 83.33333%; } + width: 83.3333333333%; + } + .grid-x > .large-11 { - width: 91.66667%; } - .grid-x > .large-12 { - width: 100%; } } + width: 91.6666666667%; + } + .grid-x > .large-12 { + width: 100%; + } +} .grid-margin-x:not(.grid-x) > .cell { - width: auto; } + width: auto; +} .grid-margin-y:not(.grid-y) > .cell { - height: auto; } + height: auto; +} .grid-margin-x { margin-left: -0.625rem; - margin-right: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-x { - margin-left: -0.9375rem; - margin-right: -0.9375rem; } } + margin-right: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-margin-x { + margin-left: -0.9375rem; + margin-right: -0.9375rem; + } +} +.grid-margin-x > .cell { + width: calc(100% - 1.25rem); + margin-left: 0.625rem; + margin-right: 0.625rem; +} +@media print, screen and (min-width: 40em) { .grid-margin-x > .cell { - width: calc(100% - 1.25rem); - margin-left: 0.625rem; - margin-right: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-x > .cell { - width: calc(100% - 1.875rem); - margin-left: 0.9375rem; - margin-right: 0.9375rem; } } + width: calc(100% - 1.875rem); + margin-left: 0.9375rem; + margin-right: 0.9375rem; + } +} +.grid-margin-x > .auto { + width: auto; +} +.grid-margin-x > .shrink { + width: auto; +} +.grid-margin-x > .small-1 { + width: calc(8.3333333333% - 1.25rem); +} +.grid-margin-x > .small-2 { + width: calc(16.6666666667% - 1.25rem); +} +.grid-margin-x > .small-3 { + width: calc(25% - 1.25rem); +} +.grid-margin-x > .small-4 { + width: calc(33.3333333333% - 1.25rem); +} +.grid-margin-x > .small-5 { + width: calc(41.6666666667% - 1.25rem); +} +.grid-margin-x > .small-6 { + width: calc(50% - 1.25rem); +} +.grid-margin-x > .small-7 { + width: calc(58.3333333333% - 1.25rem); +} +.grid-margin-x > .small-8 { + width: calc(66.6666666667% - 1.25rem); +} +.grid-margin-x > .small-9 { + width: calc(75% - 1.25rem); +} +.grid-margin-x > .small-10 { + width: calc(83.3333333333% - 1.25rem); +} +.grid-margin-x > .small-11 { + width: calc(91.6666666667% - 1.25rem); +} +.grid-margin-x > .small-12 { + width: calc(100% - 1.25rem); +} +@media print, screen and (min-width: 40em) { .grid-margin-x > .auto { - width: auto; } + width: auto; + } .grid-margin-x > .shrink { - width: auto; } + width: auto; + } .grid-margin-x > .small-1 { - width: calc(8.33333% - 1.25rem); } + width: calc(8.3333333333% - 1.875rem); + } .grid-margin-x > .small-2 { - width: calc(16.66667% - 1.25rem); } + width: calc(16.6666666667% - 1.875rem); + } .grid-margin-x > .small-3 { - width: calc(25% - 1.25rem); } + width: calc(25% - 1.875rem); + } .grid-margin-x > .small-4 { - width: calc(33.33333% - 1.25rem); } + width: calc(33.3333333333% - 1.875rem); + } .grid-margin-x > .small-5 { - width: calc(41.66667% - 1.25rem); } + width: calc(41.6666666667% - 1.875rem); + } .grid-margin-x > .small-6 { - width: calc(50% - 1.25rem); } + width: calc(50% - 1.875rem); + } .grid-margin-x > .small-7 { - width: calc(58.33333% - 1.25rem); } + width: calc(58.3333333333% - 1.875rem); + } .grid-margin-x > .small-8 { - width: calc(66.66667% - 1.25rem); } + width: calc(66.6666666667% - 1.875rem); + } .grid-margin-x > .small-9 { - width: calc(75% - 1.25rem); } + width: calc(75% - 1.875rem); + } .grid-margin-x > .small-10 { - width: calc(83.33333% - 1.25rem); } + width: calc(83.3333333333% - 1.875rem); + } .grid-margin-x > .small-11 { - width: calc(91.66667% - 1.25rem); } + width: calc(91.6666666667% - 1.875rem); + } .grid-margin-x > .small-12 { - width: calc(100% - 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-margin-x > .auto { - width: auto; } - .grid-margin-x > .shrink { - width: auto; } - .grid-margin-x > .small-1 { - width: calc(8.33333% - 1.875rem); } - .grid-margin-x > .small-2 { - width: calc(16.66667% - 1.875rem); } - .grid-margin-x > .small-3 { - width: calc(25% - 1.875rem); } - .grid-margin-x > .small-4 { - width: calc(33.33333% - 1.875rem); } - .grid-margin-x > .small-5 { - width: calc(41.66667% - 1.875rem); } - .grid-margin-x > .small-6 { - width: calc(50% - 1.875rem); } - .grid-margin-x > .small-7 { - width: calc(58.33333% - 1.875rem); } - .grid-margin-x > .small-8 { - width: calc(66.66667% - 1.875rem); } - .grid-margin-x > .small-9 { - width: calc(75% - 1.875rem); } - .grid-margin-x > .small-10 { - width: calc(83.33333% - 1.875rem); } - .grid-margin-x > .small-11 { - width: calc(91.66667% - 1.875rem); } - .grid-margin-x > .small-12 { - width: calc(100% - 1.875rem); } - .grid-margin-x > .medium-auto { - width: auto; } - .grid-margin-x > .medium-shrink { - width: auto; } - .grid-margin-x > .medium-1 { - width: calc(8.33333% - 1.875rem); } - .grid-margin-x > .medium-2 { - width: calc(16.66667% - 1.875rem); } - .grid-margin-x > .medium-3 { - width: calc(25% - 1.875rem); } - .grid-margin-x > .medium-4 { - width: calc(33.33333% - 1.875rem); } - .grid-margin-x > .medium-5 { - width: calc(41.66667% - 1.875rem); } - .grid-margin-x > .medium-6 { - width: calc(50% - 1.875rem); } - .grid-margin-x > .medium-7 { - width: calc(58.33333% - 1.875rem); } - .grid-margin-x > .medium-8 { - width: calc(66.66667% - 1.875rem); } - .grid-margin-x > .medium-9 { - width: calc(75% - 1.875rem); } - .grid-margin-x > .medium-10 { - width: calc(83.33333% - 1.875rem); } - .grid-margin-x > .medium-11 { - width: calc(91.66667% - 1.875rem); } - .grid-margin-x > .medium-12 { - width: calc(100% - 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-margin-x > .large-auto { - width: auto; } - .grid-margin-x > .large-shrink { - width: auto; } - .grid-margin-x > .large-1 { - width: calc(8.33333% - 1.875rem); } - .grid-margin-x > .large-2 { - width: calc(16.66667% - 1.875rem); } - .grid-margin-x > .large-3 { - width: calc(25% - 1.875rem); } - .grid-margin-x > .large-4 { - width: calc(33.33333% - 1.875rem); } - .grid-margin-x > .large-5 { - width: calc(41.66667% - 1.875rem); } - .grid-margin-x > .large-6 { - width: calc(50% - 1.875rem); } - .grid-margin-x > .large-7 { - width: calc(58.33333% - 1.875rem); } - .grid-margin-x > .large-8 { - width: calc(66.66667% - 1.875rem); } - .grid-margin-x > .large-9 { - width: calc(75% - 1.875rem); } - .grid-margin-x > .large-10 { - width: calc(83.33333% - 1.875rem); } - .grid-margin-x > .large-11 { - width: calc(91.66667% - 1.875rem); } - .grid-margin-x > .large-12 { - width: calc(100% - 1.875rem); } } + width: calc(100% - 1.875rem); + } + .grid-margin-x > .medium-auto { + width: auto; + } + .grid-margin-x > .medium-shrink { + width: auto; + } + .grid-margin-x > .medium-1 { + width: calc(8.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-2 { + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-3 { + width: calc(25% - 1.875rem); + } + .grid-margin-x > .medium-4 { + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-5 { + width: calc(41.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-6 { + width: calc(50% - 1.875rem); + } + .grid-margin-x > .medium-7 { + width: calc(58.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-8 { + width: calc(66.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-9 { + width: calc(75% - 1.875rem); + } + .grid-margin-x > .medium-10 { + width: calc(83.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-11 { + width: calc(91.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-12 { + width: calc(100% - 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-margin-x > .large-auto { + width: auto; + } + .grid-margin-x > .large-shrink { + width: auto; + } + .grid-margin-x > .large-1 { + width: calc(8.3333333333% - 1.875rem); + } + .grid-margin-x > .large-2 { + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x > .large-3 { + width: calc(25% - 1.875rem); + } + .grid-margin-x > .large-4 { + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x > .large-5 { + width: calc(41.6666666667% - 1.875rem); + } + .grid-margin-x > .large-6 { + width: calc(50% - 1.875rem); + } + .grid-margin-x > .large-7 { + width: calc(58.3333333333% - 1.875rem); + } + .grid-margin-x > .large-8 { + width: calc(66.6666666667% - 1.875rem); + } + .grid-margin-x > .large-9 { + width: calc(75% - 1.875rem); + } + .grid-margin-x > .large-10 { + width: calc(83.3333333333% - 1.875rem); + } + .grid-margin-x > .large-11 { + width: calc(91.6666666667% - 1.875rem); + } + .grid-margin-x > .large-12 { + width: calc(100% - 1.875rem); + } +} .grid-padding-x .grid-padding-x { margin-right: -0.625rem; - margin-left: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-x .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; } } - + margin-left: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-x .grid-padding-x { + margin-right: -0.9375rem; + margin-left: -0.9375rem; + } +} .grid-container:not(.full) > .grid-padding-x { margin-right: -0.625rem; - margin-left: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-container:not(.full) > .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; } } - + margin-left: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-container:not(.full) > .grid-padding-x { + margin-right: -0.9375rem; + margin-left: -0.9375rem; + } +} .grid-padding-x > .cell { padding-right: 0.625rem; - padding-left: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-x > .cell { - padding-right: 0.9375rem; - padding-left: 0.9375rem; } } + padding-left: 0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-x > .cell { + padding-right: 0.9375rem; + padding-left: 0.9375rem; + } +} .small-up-1 > .cell { - width: 100%; } + width: 100%; +} .small-up-2 > .cell { - width: 50%; } + width: 50%; +} .small-up-3 > .cell { - width: 33.33333%; } + width: 33.3333333333%; +} .small-up-4 > .cell { - width: 25%; } + width: 25%; +} .small-up-5 > .cell { - width: 20%; } + width: 20%; +} .small-up-6 > .cell { - width: 16.66667%; } + width: 16.6666666667%; +} .small-up-7 > .cell { - width: 14.28571%; } + width: 14.2857142857%; +} .small-up-8 > .cell { - width: 12.5%; } + width: 12.5%; +} @media print, screen and (min-width: 40em) { .medium-up-1 > .cell { - width: 100%; } + width: 100%; + } + .medium-up-2 > .cell { - width: 50%; } + width: 50%; + } + .medium-up-3 > .cell { - width: 33.33333%; } + width: 33.3333333333%; + } + .medium-up-4 > .cell { - width: 25%; } + width: 25%; + } + .medium-up-5 > .cell { - width: 20%; } + width: 20%; + } + .medium-up-6 > .cell { - width: 16.66667%; } + width: 16.6666666667%; + } + .medium-up-7 > .cell { - width: 14.28571%; } - .medium-up-8 > .cell { - width: 12.5%; } } + width: 14.2857142857%; + } + .medium-up-8 > .cell { + width: 12.5%; + } +} @media print, screen and (min-width: 64em) { .large-up-1 > .cell { - width: 100%; } + width: 100%; + } + .large-up-2 > .cell { - width: 50%; } + width: 50%; + } + .large-up-3 > .cell { - width: 33.33333%; } + width: 33.3333333333%; + } + .large-up-4 > .cell { - width: 25%; } + width: 25%; + } + .large-up-5 > .cell { - width: 20%; } + width: 20%; + } + .large-up-6 > .cell { - width: 16.66667%; } + width: 16.6666666667%; + } + .large-up-7 > .cell { - width: 14.28571%; } - .large-up-8 > .cell { - width: 12.5%; } } + width: 14.2857142857%; + } + .large-up-8 > .cell { + width: 12.5%; + } +} .grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.25rem); } + width: calc(100% - 1.25rem); +} .grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.25rem); } + width: calc(50% - 1.25rem); +} .grid-margin-x.small-up-3 > .cell { - width: calc(33.33333% - 1.25rem); } + width: calc(33.3333333333% - 1.25rem); +} .grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.25rem); } + width: calc(25% - 1.25rem); +} .grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.25rem); } + width: calc(20% - 1.25rem); +} .grid-margin-x.small-up-6 > .cell { - width: calc(16.66667% - 1.25rem); } + width: calc(16.6666666667% - 1.25rem); +} .grid-margin-x.small-up-7 > .cell { - width: calc(14.28571% - 1.25rem); } + width: calc(14.2857142857% - 1.25rem); +} .grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.25rem); } + width: calc(12.5% - 1.25rem); +} @media print, screen and (min-width: 40em) { .grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.875rem); } + width: calc(100% - 1.875rem); + } + .grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.875rem); } + width: calc(50% - 1.875rem); + } + .grid-margin-x.small-up-3 > .cell { - width: calc(33.33333% - 1.875rem); } + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.875rem); } + width: calc(25% - 1.875rem); + } + .grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.875rem); } + width: calc(20% - 1.875rem); + } + .grid-margin-x.small-up-6 > .cell { - width: calc(16.66667% - 1.875rem); } + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x.small-up-7 > .cell { - width: calc(14.28571% - 1.875rem); } + width: calc(14.2857142857% - 1.875rem); + } + .grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.875rem); } + width: calc(12.5% - 1.875rem); + } + .grid-margin-x.medium-up-1 > .cell { - width: calc(100% - 1.875rem); } + width: calc(100% - 1.875rem); + } + .grid-margin-x.medium-up-2 > .cell { - width: calc(50% - 1.875rem); } + width: calc(50% - 1.875rem); + } + .grid-margin-x.medium-up-3 > .cell { - width: calc(33.33333% - 1.875rem); } + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x.medium-up-4 > .cell { - width: calc(25% - 1.875rem); } + width: calc(25% - 1.875rem); + } + .grid-margin-x.medium-up-5 > .cell { - width: calc(20% - 1.875rem); } + width: calc(20% - 1.875rem); + } + .grid-margin-x.medium-up-6 > .cell { - width: calc(16.66667% - 1.875rem); } + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x.medium-up-7 > .cell { - width: calc(14.28571% - 1.875rem); } - .grid-margin-x.medium-up-8 > .cell { - width: calc(12.5% - 1.875rem); } } + width: calc(14.2857142857% - 1.875rem); + } + .grid-margin-x.medium-up-8 > .cell { + width: calc(12.5% - 1.875rem); + } +} @media print, screen and (min-width: 64em) { .grid-margin-x.large-up-1 > .cell { - width: calc(100% - 1.875rem); } + width: calc(100% - 1.875rem); + } + .grid-margin-x.large-up-2 > .cell { - width: calc(50% - 1.875rem); } + width: calc(50% - 1.875rem); + } + .grid-margin-x.large-up-3 > .cell { - width: calc(33.33333% - 1.875rem); } + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x.large-up-4 > .cell { - width: calc(25% - 1.875rem); } + width: calc(25% - 1.875rem); + } + .grid-margin-x.large-up-5 > .cell { - width: calc(20% - 1.875rem); } + width: calc(20% - 1.875rem); + } + .grid-margin-x.large-up-6 > .cell { - width: calc(16.66667% - 1.875rem); } + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x.large-up-7 > .cell { - width: calc(14.28571% - 1.875rem); } - .grid-margin-x.large-up-8 > .cell { - width: calc(12.5% - 1.875rem); } } + width: calc(14.2857142857% - 1.875rem); + } + .grid-margin-x.large-up-8 > .cell { + width: calc(12.5% - 1.875rem); + } +} .small-margin-collapse { margin-right: 0; - margin-left: 0; } - .small-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; } - .small-margin-collapse > .small-1 { - width: 8.33333%; } - .small-margin-collapse > .small-2 { - width: 16.66667%; } - .small-margin-collapse > .small-3 { - width: 25%; } - .small-margin-collapse > .small-4 { - width: 33.33333%; } - .small-margin-collapse > .small-5 { - width: 41.66667%; } - .small-margin-collapse > .small-6 { - width: 50%; } - .small-margin-collapse > .small-7 { - width: 58.33333%; } - .small-margin-collapse > .small-8 { - width: 66.66667%; } - .small-margin-collapse > .small-9 { - width: 75%; } - .small-margin-collapse > .small-10 { - width: 83.33333%; } - .small-margin-collapse > .small-11 { - width: 91.66667%; } - .small-margin-collapse > .small-12 { - width: 100%; } - @media print, screen and (min-width: 40em) { - .small-margin-collapse > .medium-1 { - width: 8.33333%; } - .small-margin-collapse > .medium-2 { - width: 16.66667%; } - .small-margin-collapse > .medium-3 { - width: 25%; } - .small-margin-collapse > .medium-4 { - width: 33.33333%; } - .small-margin-collapse > .medium-5 { - width: 41.66667%; } - .small-margin-collapse > .medium-6 { - width: 50%; } - .small-margin-collapse > .medium-7 { - width: 58.33333%; } - .small-margin-collapse > .medium-8 { - width: 66.66667%; } - .small-margin-collapse > .medium-9 { - width: 75%; } - .small-margin-collapse > .medium-10 { - width: 83.33333%; } - .small-margin-collapse > .medium-11 { - width: 91.66667%; } - .small-margin-collapse > .medium-12 { - width: 100%; } } - @media print, screen and (min-width: 64em) { - .small-margin-collapse > .large-1 { - width: 8.33333%; } - .small-margin-collapse > .large-2 { - width: 16.66667%; } - .small-margin-collapse > .large-3 { - width: 25%; } - .small-margin-collapse > .large-4 { - width: 33.33333%; } - .small-margin-collapse > .large-5 { - width: 41.66667%; } - .small-margin-collapse > .large-6 { - width: 50%; } - .small-margin-collapse > .large-7 { - width: 58.33333%; } - .small-margin-collapse > .large-8 { - width: 66.66667%; } - .small-margin-collapse > .large-9 { - width: 75%; } - .small-margin-collapse > .large-10 { - width: 83.33333%; } - .small-margin-collapse > .large-11 { - width: 91.66667%; } - .small-margin-collapse > .large-12 { - width: 100%; } } + margin-left: 0; +} +.small-margin-collapse > .cell { + margin-right: 0; + margin-left: 0; +} +.small-margin-collapse > .small-1 { + width: 8.3333333333%; +} +.small-margin-collapse > .small-2 { + width: 16.6666666667%; +} +.small-margin-collapse > .small-3 { + width: 25%; +} +.small-margin-collapse > .small-4 { + width: 33.3333333333%; +} +.small-margin-collapse > .small-5 { + width: 41.6666666667%; +} +.small-margin-collapse > .small-6 { + width: 50%; +} +.small-margin-collapse > .small-7 { + width: 58.3333333333%; +} +.small-margin-collapse > .small-8 { + width: 66.6666666667%; +} +.small-margin-collapse > .small-9 { + width: 75%; +} +.small-margin-collapse > .small-10 { + width: 83.3333333333%; +} +.small-margin-collapse > .small-11 { + width: 91.6666666667%; +} +.small-margin-collapse > .small-12 { + width: 100%; +} +@media print, screen and (min-width: 40em) { + .small-margin-collapse > .medium-1 { + width: 8.3333333333%; + } + .small-margin-collapse > .medium-2 { + width: 16.6666666667%; + } + .small-margin-collapse > .medium-3 { + width: 25%; + } + .small-margin-collapse > .medium-4 { + width: 33.3333333333%; + } + .small-margin-collapse > .medium-5 { + width: 41.6666666667%; + } + .small-margin-collapse > .medium-6 { + width: 50%; + } + .small-margin-collapse > .medium-7 { + width: 58.3333333333%; + } + .small-margin-collapse > .medium-8 { + width: 66.6666666667%; + } + .small-margin-collapse > .medium-9 { + width: 75%; + } + .small-margin-collapse > .medium-10 { + width: 83.3333333333%; + } + .small-margin-collapse > .medium-11 { + width: 91.6666666667%; + } + .small-margin-collapse > .medium-12 { + width: 100%; + } +} +@media print, screen and (min-width: 64em) { + .small-margin-collapse > .large-1 { + width: 8.3333333333%; + } + .small-margin-collapse > .large-2 { + width: 16.6666666667%; + } + .small-margin-collapse > .large-3 { + width: 25%; + } + .small-margin-collapse > .large-4 { + width: 33.3333333333%; + } + .small-margin-collapse > .large-5 { + width: 41.6666666667%; + } + .small-margin-collapse > .large-6 { + width: 50%; + } + .small-margin-collapse > .large-7 { + width: 58.3333333333%; + } + .small-margin-collapse > .large-8 { + width: 66.6666666667%; + } + .small-margin-collapse > .large-9 { + width: 75%; + } + .small-margin-collapse > .large-10 { + width: 83.3333333333%; + } + .small-margin-collapse > .large-11 { + width: 91.6666666667%; + } + .small-margin-collapse > .large-12 { + width: 100%; + } +} .small-padding-collapse { margin-right: 0; - margin-left: 0; } - .small-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; } + margin-left: 0; +} +.small-padding-collapse > .cell { + padding-right: 0; + padding-left: 0; +} @media print, screen and (min-width: 40em) { .medium-margin-collapse { margin-right: 0; - margin-left: 0; } - .medium-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; } } - + margin-left: 0; + } + .medium-margin-collapse > .cell { + margin-right: 0; + margin-left: 0; + } +} @media print, screen and (min-width: 40em) { .medium-margin-collapse > .small-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .medium-margin-collapse > .small-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .medium-margin-collapse > .small-3 { - width: 25%; } + width: 25%; + } .medium-margin-collapse > .small-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .medium-margin-collapse > .small-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .medium-margin-collapse > .small-6 { - width: 50%; } + width: 50%; + } .medium-margin-collapse > .small-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .medium-margin-collapse > .small-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .medium-margin-collapse > .small-9 { - width: 75%; } + width: 75%; + } .medium-margin-collapse > .small-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .medium-margin-collapse > .small-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .medium-margin-collapse > .small-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 40em) { .medium-margin-collapse > .medium-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .medium-margin-collapse > .medium-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .medium-margin-collapse > .medium-3 { - width: 25%; } + width: 25%; + } .medium-margin-collapse > .medium-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .medium-margin-collapse > .medium-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .medium-margin-collapse > .medium-6 { - width: 50%; } + width: 50%; + } .medium-margin-collapse > .medium-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .medium-margin-collapse > .medium-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .medium-margin-collapse > .medium-9 { - width: 75%; } + width: 75%; + } .medium-margin-collapse > .medium-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .medium-margin-collapse > .medium-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .medium-margin-collapse > .medium-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 64em) { .medium-margin-collapse > .large-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .medium-margin-collapse > .large-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .medium-margin-collapse > .large-3 { - width: 25%; } + width: 25%; + } .medium-margin-collapse > .large-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .medium-margin-collapse > .large-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .medium-margin-collapse > .large-6 { - width: 50%; } + width: 50%; + } .medium-margin-collapse > .large-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .medium-margin-collapse > .large-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .medium-margin-collapse > .large-9 { - width: 75%; } + width: 75%; + } .medium-margin-collapse > .large-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .medium-margin-collapse > .large-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .medium-margin-collapse > .large-12 { - width: 100%; } } + width: 100%; + } +} @media print, screen and (min-width: 40em) { .medium-padding-collapse { margin-right: 0; - margin-left: 0; } - .medium-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; } } + margin-left: 0; + } + .medium-padding-collapse > .cell { + padding-right: 0; + padding-left: 0; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse { margin-right: 0; - margin-left: 0; } - .large-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; } } - + margin-left: 0; + } + .large-margin-collapse > .cell { + margin-right: 0; + margin-left: 0; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse > .small-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .large-margin-collapse > .small-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .large-margin-collapse > .small-3 { - width: 25%; } + width: 25%; + } .large-margin-collapse > .small-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .large-margin-collapse > .small-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .large-margin-collapse > .small-6 { - width: 50%; } + width: 50%; + } .large-margin-collapse > .small-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .large-margin-collapse > .small-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .large-margin-collapse > .small-9 { - width: 75%; } + width: 75%; + } .large-margin-collapse > .small-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .large-margin-collapse > .small-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .large-margin-collapse > .small-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse > .medium-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .large-margin-collapse > .medium-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .large-margin-collapse > .medium-3 { - width: 25%; } + width: 25%; + } .large-margin-collapse > .medium-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .large-margin-collapse > .medium-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .large-margin-collapse > .medium-6 { - width: 50%; } + width: 50%; + } .large-margin-collapse > .medium-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .large-margin-collapse > .medium-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .large-margin-collapse > .medium-9 { - width: 75%; } + width: 75%; + } .large-margin-collapse > .medium-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .large-margin-collapse > .medium-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .large-margin-collapse > .medium-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse > .large-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .large-margin-collapse > .large-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .large-margin-collapse > .large-3 { - width: 25%; } + width: 25%; + } .large-margin-collapse > .large-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .large-margin-collapse > .large-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .large-margin-collapse > .large-6 { - width: 50%; } + width: 50%; + } .large-margin-collapse > .large-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .large-margin-collapse > .large-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .large-margin-collapse > .large-9 { - width: 75%; } + width: 75%; + } .large-margin-collapse > .large-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .large-margin-collapse > .large-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .large-margin-collapse > .large-12 { - width: 100%; } } + width: 100%; + } +} @media print, screen and (min-width: 64em) { .large-padding-collapse { margin-right: 0; - margin-left: 0; } - .large-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; } } + margin-left: 0; + } + .large-padding-collapse > .cell { + padding-right: 0; + padding-left: 0; + } +} .small-offset-0 { - margin-left: 0%; } + margin-left: 0%; +} .grid-margin-x > .small-offset-0 { - margin-left: calc(0% + 1.25rem / 2); } + margin-left: calc(0% + 1.25rem / 2); +} .small-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; +} .grid-margin-x > .small-offset-1 { - margin-left: calc(8.33333% + 1.25rem / 2); } + margin-left: calc(8.3333333333% + 1.25rem / 2); +} .small-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; +} .grid-margin-x > .small-offset-2 { - margin-left: calc(16.66667% + 1.25rem / 2); } + margin-left: calc(16.6666666667% + 1.25rem / 2); +} .small-offset-3 { - margin-left: 25%; } + margin-left: 25%; +} .grid-margin-x > .small-offset-3 { - margin-left: calc(25% + 1.25rem / 2); } + margin-left: calc(25% + 1.25rem / 2); +} .small-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; +} .grid-margin-x > .small-offset-4 { - margin-left: calc(33.33333% + 1.25rem / 2); } + margin-left: calc(33.3333333333% + 1.25rem / 2); +} .small-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; +} .grid-margin-x > .small-offset-5 { - margin-left: calc(41.66667% + 1.25rem / 2); } + margin-left: calc(41.6666666667% + 1.25rem / 2); +} .small-offset-6 { - margin-left: 50%; } + margin-left: 50%; +} .grid-margin-x > .small-offset-6 { - margin-left: calc(50% + 1.25rem / 2); } + margin-left: calc(50% + 1.25rem / 2); +} .small-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; +} .grid-margin-x > .small-offset-7 { - margin-left: calc(58.33333% + 1.25rem / 2); } + margin-left: calc(58.3333333333% + 1.25rem / 2); +} .small-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; +} .grid-margin-x > .small-offset-8 { - margin-left: calc(66.66667% + 1.25rem / 2); } + margin-left: calc(66.6666666667% + 1.25rem / 2); +} .small-offset-9 { - margin-left: 75%; } + margin-left: 75%; +} .grid-margin-x > .small-offset-9 { - margin-left: calc(75% + 1.25rem / 2); } + margin-left: calc(75% + 1.25rem / 2); +} .small-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; +} .grid-margin-x > .small-offset-10 { - margin-left: calc(83.33333% + 1.25rem / 2); } + margin-left: calc(83.3333333333% + 1.25rem / 2); +} .small-offset-11 { - margin-left: 91.66667%; } + margin-left: 91.6666666667%; +} .grid-margin-x > .small-offset-11 { - margin-left: calc(91.66667% + 1.25rem / 2); } + margin-left: calc(91.6666666667% + 1.25rem / 2); +} @media print, screen and (min-width: 40em) { .medium-offset-0 { - margin-left: 0%; } + margin-left: 0%; + } + .grid-margin-x > .medium-offset-0 { - margin-left: calc(0% + 1.875rem / 2); } + margin-left: calc(0% + 1.875rem / 2); + } + .medium-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; + } + .grid-margin-x > .medium-offset-1 { - margin-left: calc(8.33333% + 1.875rem / 2); } + margin-left: calc(8.3333333333% + 1.875rem / 2); + } + .medium-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; + } + .grid-margin-x > .medium-offset-2 { - margin-left: calc(16.66667% + 1.875rem / 2); } + margin-left: calc(16.6666666667% + 1.875rem / 2); + } + .medium-offset-3 { - margin-left: 25%; } + margin-left: 25%; + } + .grid-margin-x > .medium-offset-3 { - margin-left: calc(25% + 1.875rem / 2); } + margin-left: calc(25% + 1.875rem / 2); + } + .medium-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; + } + .grid-margin-x > .medium-offset-4 { - margin-left: calc(33.33333% + 1.875rem / 2); } + margin-left: calc(33.3333333333% + 1.875rem / 2); + } + .medium-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; + } + .grid-margin-x > .medium-offset-5 { - margin-left: calc(41.66667% + 1.875rem / 2); } + margin-left: calc(41.6666666667% + 1.875rem / 2); + } + .medium-offset-6 { - margin-left: 50%; } + margin-left: 50%; + } + .grid-margin-x > .medium-offset-6 { - margin-left: calc(50% + 1.875rem / 2); } + margin-left: calc(50% + 1.875rem / 2); + } + .medium-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; + } + .grid-margin-x > .medium-offset-7 { - margin-left: calc(58.33333% + 1.875rem / 2); } + margin-left: calc(58.3333333333% + 1.875rem / 2); + } + .medium-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; + } + .grid-margin-x > .medium-offset-8 { - margin-left: calc(66.66667% + 1.875rem / 2); } + margin-left: calc(66.6666666667% + 1.875rem / 2); + } + .medium-offset-9 { - margin-left: 75%; } + margin-left: 75%; + } + .grid-margin-x > .medium-offset-9 { - margin-left: calc(75% + 1.875rem / 2); } + margin-left: calc(75% + 1.875rem / 2); + } + .medium-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; + } + .grid-margin-x > .medium-offset-10 { - margin-left: calc(83.33333% + 1.875rem / 2); } + margin-left: calc(83.3333333333% + 1.875rem / 2); + } + .medium-offset-11 { - margin-left: 91.66667%; } - .grid-margin-x > .medium-offset-11 { - margin-left: calc(91.66667% + 1.875rem / 2); } } + margin-left: 91.6666666667%; + } + .grid-margin-x > .medium-offset-11 { + margin-left: calc(91.6666666667% + 1.875rem / 2); + } +} @media print, screen and (min-width: 64em) { .large-offset-0 { - margin-left: 0%; } + margin-left: 0%; + } + .grid-margin-x > .large-offset-0 { - margin-left: calc(0% + 1.875rem / 2); } + margin-left: calc(0% + 1.875rem / 2); + } + .large-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; + } + .grid-margin-x > .large-offset-1 { - margin-left: calc(8.33333% + 1.875rem / 2); } + margin-left: calc(8.3333333333% + 1.875rem / 2); + } + .large-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; + } + .grid-margin-x > .large-offset-2 { - margin-left: calc(16.66667% + 1.875rem / 2); } + margin-left: calc(16.6666666667% + 1.875rem / 2); + } + .large-offset-3 { - margin-left: 25%; } + margin-left: 25%; + } + .grid-margin-x > .large-offset-3 { - margin-left: calc(25% + 1.875rem / 2); } + margin-left: calc(25% + 1.875rem / 2); + } + .large-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; + } + .grid-margin-x > .large-offset-4 { - margin-left: calc(33.33333% + 1.875rem / 2); } + margin-left: calc(33.3333333333% + 1.875rem / 2); + } + .large-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; + } + .grid-margin-x > .large-offset-5 { - margin-left: calc(41.66667% + 1.875rem / 2); } + margin-left: calc(41.6666666667% + 1.875rem / 2); + } + .large-offset-6 { - margin-left: 50%; } + margin-left: 50%; + } + .grid-margin-x > .large-offset-6 { - margin-left: calc(50% + 1.875rem / 2); } + margin-left: calc(50% + 1.875rem / 2); + } + .large-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; + } + .grid-margin-x > .large-offset-7 { - margin-left: calc(58.33333% + 1.875rem / 2); } + margin-left: calc(58.3333333333% + 1.875rem / 2); + } + .large-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; + } + .grid-margin-x > .large-offset-8 { - margin-left: calc(66.66667% + 1.875rem / 2); } + margin-left: calc(66.6666666667% + 1.875rem / 2); + } + .large-offset-9 { - margin-left: 75%; } + margin-left: 75%; + } + .grid-margin-x > .large-offset-9 { - margin-left: calc(75% + 1.875rem / 2); } + margin-left: calc(75% + 1.875rem / 2); + } + .large-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; + } + .grid-margin-x > .large-offset-10 { - margin-left: calc(83.33333% + 1.875rem / 2); } + margin-left: calc(83.3333333333% + 1.875rem / 2); + } + .large-offset-11 { - margin-left: 91.66667%; } - .grid-margin-x > .large-offset-11 { - margin-left: calc(91.66667% + 1.875rem / 2); } } + margin-left: 91.6666666667%; + } + .grid-margin-x > .large-offset-11 { + margin-left: calc(91.6666666667% + 1.875rem / 2); + } +} .grid-y { display: flex; - flex-flow: column nowrap; } - .grid-y > .cell { + flex-flow: column nowrap; +} +.grid-y > .cell { + height: auto; + max-height: none; +} +.grid-y > .auto { + height: auto; +} +.grid-y > .shrink { + height: auto; +} +.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { + flex-basis: auto; +} +@media print, screen and (min-width: 40em) { + .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { + flex-basis: auto; + } +} +@media print, screen and (min-width: 64em) { + .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { + flex-basis: auto; + } +} +.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 { + flex: 0 0 auto; +} +.grid-y > .small-1 { + height: 8.3333333333%; +} +.grid-y > .small-2 { + height: 16.6666666667%; +} +.grid-y > .small-3 { + height: 25%; +} +.grid-y > .small-4 { + height: 33.3333333333%; +} +.grid-y > .small-5 { + height: 41.6666666667%; +} +.grid-y > .small-6 { + height: 50%; +} +.grid-y > .small-7 { + height: 58.3333333333%; +} +.grid-y > .small-8 { + height: 66.6666666667%; +} +.grid-y > .small-9 { + height: 75%; +} +.grid-y > .small-10 { + height: 83.3333333333%; +} +.grid-y > .small-11 { + height: 91.6666666667%; +} +.grid-y > .small-12 { + height: 100%; +} +@media print, screen and (min-width: 40em) { + .grid-y > .medium-auto { + flex: 1 1 0; + height: auto; + } + .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink { + flex: 0 0 auto; + } + .grid-y > .medium-shrink { + height: auto; + } + .grid-y > .medium-1 { + height: 8.3333333333%; + } + .grid-y > .medium-2 { + height: 16.6666666667%; + } + .grid-y > .medium-3 { + height: 25%; + } + .grid-y > .medium-4 { + height: 33.3333333333%; + } + .grid-y > .medium-5 { + height: 41.6666666667%; + } + .grid-y > .medium-6 { + height: 50%; + } + .grid-y > .medium-7 { + height: 58.3333333333%; + } + .grid-y > .medium-8 { + height: 66.6666666667%; + } + .grid-y > .medium-9 { + height: 75%; + } + .grid-y > .medium-10 { + height: 83.3333333333%; + } + .grid-y > .medium-11 { + height: 91.6666666667%; + } + .grid-y > .medium-12 { + height: 100%; + } +} +@media print, screen and (min-width: 64em) { + .grid-y > .large-auto { + flex: 1 1 0; + height: auto; + } + .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink { + flex: 0 0 auto; + } + .grid-y > .large-shrink { height: auto; - max-height: none; } - .grid-y > .auto { - height: auto; } - .grid-y > .shrink { - height: auto; } - .grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { - flex-basis: auto; } - @media print, screen and (min-width: 40em) { - .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { - flex-basis: auto; } } - @media print, screen and (min-width: 64em) { - .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { - flex-basis: auto; } } - .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { - flex: 0 0 auto; } - .grid-y > .small-1 { - height: 8.33333%; } - .grid-y > .small-2 { - height: 16.66667%; } - .grid-y > .small-3 { - height: 25%; } - .grid-y > .small-4 { - height: 33.33333%; } - .grid-y > .small-5 { - height: 41.66667%; } - .grid-y > .small-6 { - height: 50%; } - .grid-y > .small-7 { - height: 58.33333%; } - .grid-y > .small-8 { - height: 66.66667%; } - .grid-y > .small-9 { - height: 75%; } - .grid-y > .small-10 { - height: 83.33333%; } - .grid-y > .small-11 { - height: 91.66667%; } - .grid-y > .small-12 { - height: 100%; } - @media print, screen and (min-width: 40em) { - .grid-y > .medium-auto { - flex: 1 1 0; - height: auto; } - .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { - flex: 0 0 auto; } - .grid-y > .medium-shrink { - height: auto; } - .grid-y > .medium-1 { - height: 8.33333%; } - .grid-y > .medium-2 { - height: 16.66667%; } - .grid-y > .medium-3 { - height: 25%; } - .grid-y > .medium-4 { - height: 33.33333%; } - .grid-y > .medium-5 { - height: 41.66667%; } - .grid-y > .medium-6 { - height: 50%; } - .grid-y > .medium-7 { - height: 58.33333%; } - .grid-y > .medium-8 { - height: 66.66667%; } - .grid-y > .medium-9 { - height: 75%; } - .grid-y > .medium-10 { - height: 83.33333%; } - .grid-y > .medium-11 { - height: 91.66667%; } - .grid-y > .medium-12 { - height: 100%; } } - @media print, screen and (min-width: 64em) { - .grid-y > .large-auto { - flex: 1 1 0; - height: auto; } - .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { - flex: 0 0 auto; } - .grid-y > .large-shrink { - height: auto; } - .grid-y > .large-1 { - height: 8.33333%; } - .grid-y > .large-2 { - height: 16.66667%; } - .grid-y > .large-3 { - height: 25%; } - .grid-y > .large-4 { - height: 33.33333%; } - .grid-y > .large-5 { - height: 41.66667%; } - .grid-y > .large-6 { - height: 50%; } - .grid-y > .large-7 { - height: 58.33333%; } - .grid-y > .large-8 { - height: 66.66667%; } - .grid-y > .large-9 { - height: 75%; } - .grid-y > .large-10 { - height: 83.33333%; } - .grid-y > .large-11 { - height: 91.66667%; } - .grid-y > .large-12 { - height: 100%; } } + } + .grid-y > .large-1 { + height: 8.3333333333%; + } + .grid-y > .large-2 { + height: 16.6666666667%; + } + .grid-y > .large-3 { + height: 25%; + } + .grid-y > .large-4 { + height: 33.3333333333%; + } + .grid-y > .large-5 { + height: 41.6666666667%; + } + .grid-y > .large-6 { + height: 50%; + } + .grid-y > .large-7 { + height: 58.3333333333%; + } + .grid-y > .large-8 { + height: 66.6666666667%; + } + .grid-y > .large-9 { + height: 75%; + } + .grid-y > .large-10 { + height: 83.3333333333%; + } + .grid-y > .large-11 { + height: 91.6666666667%; + } + .grid-y > .large-12 { + height: 100%; + } +} .grid-padding-y .grid-padding-y { margin-top: -0.625rem; - margin-bottom: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-y .grid-padding-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; } } - + margin-bottom: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-y .grid-padding-y { + margin-top: -0.9375rem; + margin-bottom: -0.9375rem; + } +} .grid-padding-y > .cell { padding-top: 0.625rem; - padding-bottom: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-y > .cell { - padding-top: 0.9375rem; - padding-bottom: 0.9375rem; } } + padding-bottom: 0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-y > .cell { + padding-top: 0.9375rem; + padding-bottom: 0.9375rem; + } +} .grid-margin-y { margin-top: -0.625rem; - margin-bottom: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; } } + margin-bottom: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-margin-y { + margin-top: -0.9375rem; + margin-bottom: -0.9375rem; + } +} +.grid-margin-y > .cell { + height: calc(100% - 1.25rem); + margin-top: 0.625rem; + margin-bottom: 0.625rem; +} +@media print, screen and (min-width: 40em) { .grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; } } + height: calc(100% - 1.875rem); + margin-top: 0.9375rem; + margin-bottom: 0.9375rem; + } +} +.grid-margin-y > .auto { + height: auto; +} +.grid-margin-y > .shrink { + height: auto; +} +.grid-margin-y > .small-1 { + height: calc(8.3333333333% - 1.25rem); +} +.grid-margin-y > .small-2 { + height: calc(16.6666666667% - 1.25rem); +} +.grid-margin-y > .small-3 { + height: calc(25% - 1.25rem); +} +.grid-margin-y > .small-4 { + height: calc(33.3333333333% - 1.25rem); +} +.grid-margin-y > .small-5 { + height: calc(41.6666666667% - 1.25rem); +} +.grid-margin-y > .small-6 { + height: calc(50% - 1.25rem); +} +.grid-margin-y > .small-7 { + height: calc(58.3333333333% - 1.25rem); +} +.grid-margin-y > .small-8 { + height: calc(66.6666666667% - 1.25rem); +} +.grid-margin-y > .small-9 { + height: calc(75% - 1.25rem); +} +.grid-margin-y > .small-10 { + height: calc(83.3333333333% - 1.25rem); +} +.grid-margin-y > .small-11 { + height: calc(91.6666666667% - 1.25rem); +} +.grid-margin-y > .small-12 { + height: calc(100% - 1.25rem); +} +@media print, screen and (min-width: 40em) { .grid-margin-y > .auto { - height: auto; } + height: auto; + } .grid-margin-y > .shrink { - height: auto; } + height: auto; + } .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.25rem); } + height: calc(8.3333333333% - 1.875rem); + } .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.25rem); } + height: calc(16.6666666667% - 1.875rem); + } .grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); } + height: calc(25% - 1.875rem); + } .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.25rem); } + height: calc(33.3333333333% - 1.875rem); + } .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.25rem); } + height: calc(41.6666666667% - 1.875rem); + } .grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); } + height: calc(50% - 1.875rem); + } .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.25rem); } + height: calc(58.3333333333% - 1.875rem); + } .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.25rem); } + height: calc(66.6666666667% - 1.875rem); + } .grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); } + height: calc(75% - 1.875rem); + } .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.25rem); } + height: calc(83.3333333333% - 1.875rem); + } .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.25rem); } + height: calc(91.6666666667% - 1.875rem); + } .grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; } - .grid-margin-y > .shrink { - height: auto; } - .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); } - .grid-margin-y > .medium-auto { - height: auto; } - .grid-margin-y > .medium-shrink { - height: auto; } - .grid-margin-y > .medium-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .medium-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .medium-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .medium-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .medium-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .medium-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .medium-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .medium-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; } - .grid-margin-y > .large-shrink { - height: auto; } - .grid-margin-y > .large-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .large-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .large-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .large-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .large-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .large-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .large-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .large-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); } } + height: calc(100% - 1.875rem); + } + .grid-margin-y > .medium-auto { + height: auto; + } + .grid-margin-y > .medium-shrink { + height: auto; + } + .grid-margin-y > .medium-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .medium-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .medium-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .medium-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-12 { + height: calc(100% - 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-margin-y > .large-auto { + height: auto; + } + .grid-margin-y > .large-shrink { + height: auto; + } + .grid-margin-y > .large-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .large-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .large-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .large-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .large-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .large-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .large-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .large-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .large-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .large-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .large-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .large-12 { + height: calc(100% - 1.875rem); + } +} .grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; - width: 100vw; } + width: 100vw; +} .cell .grid-frame { - width: 100%; } + width: 100%; +} .cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; +} .cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; +} .cell-block-container { display: flex; flex-direction: column; - max-height: 100%; } - .cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; } + max-height: 100%; +} +.cell-block-container > .grid-x { + max-height: 100%; + flex-wrap: nowrap; +} @media print, screen and (min-width: 40em) { .medium-grid-frame { @@ -259962,64 +194396,84 @@ code, .code-inline { position: relative; flex-wrap: nowrap; align-items: stretch; - width: 100vw; } + width: 100vw; + } + .cell .medium-grid-frame { - width: 100%; } + width: 100%; + } + .medium-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .medium-cell-block-container { display: flex; flex-direction: column; - max-height: 100%; } - .medium-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; } + max-height: 100%; + } + .medium-cell-block-container > .grid-x { + max-height: 100%; + flex-wrap: nowrap; + } + .medium-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } } - + -ms-overflow-style: -ms-autohiding-scrollbar; + } +} @media print, screen and (min-width: 64em) { .large-grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; - width: 100vw; } + width: 100vw; + } + .cell .large-grid-frame { - width: 100%; } + width: 100%; + } + .large-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .large-cell-block-container { display: flex; flex-direction: column; - max-height: 100%; } - .large-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; } + max-height: 100%; + } + .large-cell-block-container > .grid-x { + max-height: 100%; + flex-wrap: nowrap; + } + .large-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } } - + -ms-overflow-style: -ms-autohiding-scrollbar; + } +} .grid-y.grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; - width: auto; } - + width: auto; +} @media print, screen and (min-width: 40em) { .grid-y.medium-grid-frame { overflow: hidden; @@ -260027,8 +194481,9 @@ code, .code-inline { flex-wrap: nowrap; align-items: stretch; height: 100vh; - width: auto; } } - + width: auto; + } +} @media print, screen and (min-width: 64em) { .grid-y.large-grid-frame { overflow: hidden; @@ -260036,167 +194491,243 @@ code, .code-inline { flex-wrap: nowrap; align-items: stretch; height: 100vh; - width: auto; } } + width: auto; + } +} .cell .grid-y.grid-frame { - height: 100%; } + height: 100%; +} +@media print, screen and (min-width: 40em) { + .cell .grid-y.medium-grid-frame { + height: 100%; + } +} +@media print, screen and (min-width: 64em) { + .cell .grid-y.large-grid-frame { + height: 100%; + } +} + +.grid-margin-y { + margin-top: -0.625rem; + margin-bottom: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-margin-y { + margin-top: -0.9375rem; + margin-bottom: -0.9375rem; + } +} +.grid-margin-y > .cell { + height: calc(100% - 1.25rem); + margin-top: 0.625rem; + margin-bottom: 0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-margin-y > .cell { + height: calc(100% - 1.875rem); + margin-top: 0.9375rem; + margin-bottom: 0.9375rem; + } +} +.grid-margin-y > .auto { + height: auto; +} +.grid-margin-y > .shrink { + height: auto; +} +.grid-margin-y > .small-1 { + height: calc(8.3333333333% - 1.25rem); +} +.grid-margin-y > .small-2 { + height: calc(16.6666666667% - 1.25rem); +} +.grid-margin-y > .small-3 { + height: calc(25% - 1.25rem); +} +.grid-margin-y > .small-4 { + height: calc(33.3333333333% - 1.25rem); +} +.grid-margin-y > .small-5 { + height: calc(41.6666666667% - 1.25rem); +} +.grid-margin-y > .small-6 { + height: calc(50% - 1.25rem); +} +.grid-margin-y > .small-7 { + height: calc(58.3333333333% - 1.25rem); +} +.grid-margin-y > .small-8 { + height: calc(66.6666666667% - 1.25rem); +} +.grid-margin-y > .small-9 { + height: calc(75% - 1.25rem); +} +.grid-margin-y > .small-10 { + height: calc(83.3333333333% - 1.25rem); +} +.grid-margin-y > .small-11 { + height: calc(91.6666666667% - 1.25rem); +} +.grid-margin-y > .small-12 { + height: calc(100% - 1.25rem); +} +@media print, screen and (min-width: 40em) { + .grid-margin-y > .auto { + height: auto; + } + .grid-margin-y > .shrink { + height: auto; + } + .grid-margin-y > .small-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .small-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .small-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .small-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .small-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .small-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .small-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .small-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .small-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .small-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .small-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .small-12 { + height: calc(100% - 1.875rem); + } + .grid-margin-y > .medium-auto { + height: auto; + } + .grid-margin-y > .medium-shrink { + height: auto; + } + .grid-margin-y > .medium-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .medium-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .medium-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .medium-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-12 { + height: calc(100% - 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-margin-y > .large-auto { + height: auto; + } + .grid-margin-y > .large-shrink { + height: auto; + } + .grid-margin-y > .large-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .large-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .large-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .large-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .large-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .large-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .large-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .large-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .large-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .large-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .large-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .large-12 { + height: calc(100% - 1.875rem); + } +} +.grid-frame.grid-margin-y { + height: calc(100vh + 1.25rem); +} @media print, screen and (min-width: 40em) { - .cell .grid-y.medium-grid-frame { - height: 100%; } } - + .grid-frame.grid-margin-y { + height: calc(100vh + 1.875rem); + } +} @media print, screen and (min-width: 64em) { - .cell .grid-y.large-grid-frame { - height: 100%; } } - -.grid-margin-y { - margin-top: -0.625rem; - margin-bottom: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; } } - .grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; } } - .grid-margin-y > .auto { - height: auto; } - .grid-margin-y > .shrink { - height: auto; } - .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.25rem); } - .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.25rem); } - .grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); } - .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.25rem); } - .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.25rem); } - .grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); } - .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.25rem); } - .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.25rem); } - .grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); } - .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.25rem); } - .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.25rem); } - .grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; } - .grid-margin-y > .shrink { - height: auto; } - .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); } - .grid-margin-y > .medium-auto { - height: auto; } - .grid-margin-y > .medium-shrink { - height: auto; } - .grid-margin-y > .medium-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .medium-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .medium-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .medium-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .medium-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .medium-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .medium-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .medium-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; } - .grid-margin-y > .large-shrink { - height: auto; } - .grid-margin-y > .large-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .large-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .large-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .large-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .large-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .large-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .large-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .large-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); } } - -.grid-frame.grid-margin-y { - height: calc(100vh + 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); } } + .grid-frame.grid-margin-y { + height: calc(100vh + 1.875rem); + } +} @media print, screen and (min-width: 40em) { .grid-margin-y.medium-grid-frame { - height: calc(100vh + 1.875rem); } } - + height: calc(100vh + 1.875rem); + } +} @media print, screen and (min-width: 64em) { .grid-margin-y.large-grid-frame { - height: calc(100vh + 1.875rem); } } - + height: calc(100vh + 1.875rem); + } +} .button { display: inline-block; vertical-align: middle; @@ -260210,336 +194741,458 @@ code, .code-inline { -webkit-appearance: none; line-height: 1; text-align: center; - cursor: pointer; } - [data-whatinput='mouse'] .button { - outline: 0; } - .button.tiny { - font-size: 0.6rem; } - .button.small { - font-size: 0.75rem; } - .button.large { - font-size: 1.25rem; } - .button.expanded { - display: block; - width: 100%; - margin-right: 0; - margin-left: 0; } - .button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; } - .button:hover, .button:focus { - background-color: #14679e; - color: #fefefe; } - .button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus { - background-color: #1779ba; - color: #fefefe; } - .button.primary:hover, .button.primary:focus { - background-color: #126195; - color: #fefefe; } - .button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus { - background-color: #767676; - color: #fefefe; } - .button.secondary:hover, .button.secondary:focus { - background-color: #5e5e5e; - color: #fefefe; } - .button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; } - .button.success:hover, .button.success:focus { - background-color: #22bb5b; - color: #0a0a0a; } - .button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; } - .button.warning:hover, .button.warning:focus { - background-color: #cc8b00; - color: #0a0a0a; } - .button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; } - .button.alert:hover, .button.alert:focus { - background-color: #a53b2a; - color: #fefefe; } - .button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus { - background-color: transparent; } - .button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button.hollow:hover, .button.hollow:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button.hollow.primary:hover, .button.hollow.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; } - .button.hollow.secondary:hover, .button.hollow.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; } - .button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; } - .button.hollow.success:hover, .button.hollow.success:focus { - border-color: #157539; - color: #157539; } - .button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; } - .button.hollow.warning:hover, .button.hollow.warning:focus { - border-color: #805700; - color: #805700; } - .button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; } - .button.hollow.alert:hover, .button.hollow.alert:focus { - border-color: #67251a; - color: #67251a; } - .button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus { - border-color: transparent; - background-color: transparent; } - .button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus { - color: #1779ba; } - .button.clear:hover, .button.clear:focus { - color: #0c3d5d; } - .button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus { - color: #1779ba; } - .button.clear.primary:hover, .button.clear.primary:focus { - color: #0c3d5d; } - .button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus { - color: #767676; } - .button.clear.secondary:hover, .button.clear.secondary:focus { - color: #3b3b3b; } - .button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus { - color: #3adb76; } - .button.clear.success:hover, .button.clear.success:focus { - color: #157539; } - .button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus { - color: #ffae00; } - .button.clear.warning:hover, .button.clear.warning:focus { - color: #805700; } - .button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus { - color: #cc4b37; } - .button.clear.alert:hover, .button.clear.alert:focus { - color: #67251a; } - .button.disabled, .button[disabled] { - opacity: 0.25; - cursor: not-allowed; } - .button.dropdown::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.4em; - content: ''; - border-bottom-width: 0; - border-color: #fefefe transparent transparent; - position: relative; - top: 0.4em; - display: inline-block; - float: right; - margin-left: 1em; } - .button.dropdown.hollow::after, .button.dropdown.clear::after { - border-top-color: #1779ba; } - .button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after { - border-top-color: #1779ba; } - .button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after { - border-top-color: #767676; } - .button.dropdown.hollow.success::after, .button.dropdown.clear.success::after { - border-top-color: #3adb76; } - .button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after { - border-top-color: #ffae00; } - .button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after { - border-top-color: #cc4b37; } - .button.arrow-only::after { - top: -0.1em; - float: none; - margin-left: 0; } + cursor: pointer; +} +[data-whatinput=mouse] .button { + outline: 0; +} +.button.tiny { + font-size: 0.6rem; +} +.button.small { + font-size: 0.75rem; +} +.button.large { + font-size: 1.25rem; +} +.button.expanded { + display: block; + width: 100%; + margin-right: 0; + margin-left: 0; +} +.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus { + background-color: #1779ba; + color: #fefefe; +} +.button:hover, .button:focus { + background-color: #14679e; + color: #fefefe; +} +.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus { + background-color: #1779ba; + color: #fefefe; +} +.button.primary:hover, .button.primary:focus { + background-color: #126195; + color: #fefefe; +} +.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus { + background-color: #767676; + color: #fefefe; +} +.button.secondary:hover, .button.secondary:focus { + background-color: #5e5e5e; + color: #fefefe; +} +.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus { + background-color: #3adb76; + color: #0a0a0a; +} +.button.success:hover, .button.success:focus { + background-color: #22bb5b; + color: #0a0a0a; +} +.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus { + background-color: #ffae00; + color: #0a0a0a; +} +.button.warning:hover, .button.warning:focus { + background-color: #cc8b00; + color: #0a0a0a; +} +.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus { + background-color: #cc4b37; + color: #fefefe; +} +.button.alert:hover, .button.alert:focus { + background-color: #a53b2a; + color: #fefefe; +} +.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus { + background-color: transparent; +} +.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button.hollow:hover, .button.hollow:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button.hollow.primary:hover, .button.hollow.primary:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus { + border: 1px solid #767676; + color: #767676; +} +.button.hollow.secondary:hover, .button.hollow.secondary:focus { + border-color: #3b3b3b; + color: #3b3b3b; +} +.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus { + border: 1px solid #3adb76; + color: #3adb76; +} +.button.hollow.success:hover, .button.hollow.success:focus { + border-color: #157539; + color: #157539; +} +.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus { + border: 1px solid #ffae00; + color: #ffae00; +} +.button.hollow.warning:hover, .button.hollow.warning:focus { + border-color: #805700; + color: #805700; +} +.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus { + border: 1px solid #cc4b37; + color: #cc4b37; +} +.button.hollow.alert:hover, .button.hollow.alert:focus { + border-color: #67251a; + color: #67251a; +} +.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus { + border-color: transparent; + background-color: transparent; +} +.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus { + color: #1779ba; +} +.button.clear:hover, .button.clear:focus { + color: #0c3d5d; +} +.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus { + color: #1779ba; +} +.button.clear.primary:hover, .button.clear.primary:focus { + color: #0c3d5d; +} +.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus { + color: #767676; +} +.button.clear.secondary:hover, .button.clear.secondary:focus { + color: #3b3b3b; +} +.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus { + color: #3adb76; +} +.button.clear.success:hover, .button.clear.success:focus { + color: #157539; +} +.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus { + color: #ffae00; +} +.button.clear.warning:hover, .button.clear.warning:focus { + color: #805700; +} +.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus { + color: #cc4b37; +} +.button.clear.alert:hover, .button.clear.alert:focus { + color: #67251a; +} +.button.disabled, .button[disabled] { + opacity: 0.25; + cursor: not-allowed; +} +.button.dropdown::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.4em; + content: \\"\\"; + border-bottom-width: 0; + border-color: #fefefe transparent transparent; + position: relative; + top: 0.4em; + display: inline-block; + float: right; + margin-left: 1em; +} +.button.dropdown.hollow::after, .button.dropdown.clear::after { + border-top-color: #1779ba; +} +.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after { + border-top-color: #1779ba; +} +.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after { + border-top-color: #767676; +} +.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after { + border-top-color: #3adb76; +} +.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after { + border-top-color: #ffae00; +} +.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after { + border-top-color: #cc4b37; +} +.button.arrow-only::after { + top: -0.1em; + float: none; + margin-left: 0; +} a.button:hover, a.button:focus { - text-decoration: none; } + text-decoration: none; +} .button-group { margin-bottom: 1rem; display: flex; flex-wrap: wrap; align-items: stretch; - flex-grow: 1; } - .button-group::before, .button-group::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .button-group::after { - clear: both; } - .button-group::before, .button-group::after { - display: none; } - .button-group .button { - margin: 0; - margin-right: 1px; - margin-bottom: 1px; - font-size: 0.9rem; - flex: 0 0 auto; } - .button-group .button:last-child { - margin-right: 0; } - .button-group.tiny .button { - font-size: 0.6rem; } - .button-group.small .button { - font-size: 0.75rem; } - .button-group.large .button { - font-size: 1.25rem; } - .button-group.expanded .button { - flex: 1 1 0px; } - .button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; } - .button-group.primary .button:hover, .button-group.primary .button:focus { - background-color: #126195; - color: #fefefe; } - .button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus { - background-color: #767676; - color: #fefefe; } - .button-group.secondary .button:hover, .button-group.secondary .button:focus { - background-color: #5e5e5e; - color: #fefefe; } - .button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; } - .button-group.success .button:hover, .button-group.success .button:focus { - background-color: #22bb5b; - color: #0a0a0a; } - .button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; } - .button-group.warning .button:hover, .button-group.warning .button:focus { - background-color: #cc8b00; - color: #0a0a0a; } - .button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; } - .button-group.alert .button:hover, .button-group.alert .button:focus { - background-color: #a53b2a; - color: #fefefe; } - .button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus { - background-color: transparent; } - .button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button-group.hollow .button:hover, .button-group.hollow .button:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; } - .button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; } - .button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; } - .button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus { - border-color: #157539; - color: #157539; } - .button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; } - .button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus { - border-color: #805700; - color: #805700; } - .button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; } - .button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus { - border-color: #67251a; - color: #67251a; } - .button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus { - border-color: transparent; - background-color: transparent; } - .button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus { - color: #1779ba; } - .button-group.clear .button:hover, .button-group.clear .button:focus { - color: #0c3d5d; } - .button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus { - color: #1779ba; } - .button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus { - color: #0c3d5d; } - .button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus { - color: #767676; } - .button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus { - color: #3b3b3b; } - .button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus { - color: #3adb76; } - .button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus { - color: #157539; } - .button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus { - color: #ffae00; } - .button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus { - color: #805700; } - .button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus { - color: #cc4b37; } - .button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus { - color: #67251a; } - .button-group.no-gaps .button { - margin-right: -0.0625rem; } - .button-group.no-gaps .button + .button { - border-left-color: transparent; } - .button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium { - flex-wrap: wrap; } - .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { - flex: 0 0 100%; } - .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { - margin-bottom: 0; } - .button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button { - flex: 1 1 0px; } - @media print, screen and (min-width: 40em) { - .button-group.stacked-for-small .button { - flex: 0 0 auto; - margin-bottom: 0; } } - @media print, screen and (min-width: 64em) { - .button-group.stacked-for-medium .button { - flex: 0 0 auto; - margin-bottom: 0; } } - @media print, screen and (max-width: 39.99875em) { - .button-group.stacked-for-small.expanded { - display: block; } - .button-group.stacked-for-small.expanded .button { - display: block; - margin-right: 0; } } - @media print, screen and (max-width: 63.99875em) { - .button-group.stacked-for-medium.expanded { - display: block; } - .button-group.stacked-for-medium.expanded .button { - display: block; - margin-right: 0; } } + flex-grow: 1; +} +.button-group::before, .button-group::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.button-group::after { + clear: both; +} +.button-group::before, .button-group::after { + display: none; +} +.button-group .button { + margin: 0; + margin-right: 1px; + margin-bottom: 1px; + font-size: 0.9rem; + flex: 0 0 auto; +} +.button-group .button:last-child { + margin-right: 0; +} +.button-group.tiny .button { + font-size: 0.6rem; +} +.button-group.small .button { + font-size: 0.75rem; +} +.button-group.large .button { + font-size: 1.25rem; +} +.button-group.expanded .button { + flex: 1 1 0px; +} +.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus { + background-color: #1779ba; + color: #fefefe; +} +.button-group.primary .button:hover, .button-group.primary .button:focus { + background-color: #126195; + color: #fefefe; +} +.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus { + background-color: #767676; + color: #fefefe; +} +.button-group.secondary .button:hover, .button-group.secondary .button:focus { + background-color: #5e5e5e; + color: #fefefe; +} +.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus { + background-color: #3adb76; + color: #0a0a0a; +} +.button-group.success .button:hover, .button-group.success .button:focus { + background-color: #22bb5b; + color: #0a0a0a; +} +.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus { + background-color: #ffae00; + color: #0a0a0a; +} +.button-group.warning .button:hover, .button-group.warning .button:focus { + background-color: #cc8b00; + color: #0a0a0a; +} +.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus { + background-color: #cc4b37; + color: #fefefe; +} +.button-group.alert .button:hover, .button-group.alert .button:focus { + background-color: #a53b2a; + color: #fefefe; +} +.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus { + background-color: transparent; +} +.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button-group.hollow .button:hover, .button-group.hollow .button:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus { + border: 1px solid #767676; + color: #767676; +} +.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus { + border-color: #3b3b3b; + color: #3b3b3b; +} +.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus { + border: 1px solid #3adb76; + color: #3adb76; +} +.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus { + border-color: #157539; + color: #157539; +} +.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus { + border: 1px solid #ffae00; + color: #ffae00; +} +.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus { + border-color: #805700; + color: #805700; +} +.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus { + border: 1px solid #cc4b37; + color: #cc4b37; +} +.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus { + border-color: #67251a; + color: #67251a; +} +.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus { + border-color: transparent; + background-color: transparent; +} +.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus { + color: #1779ba; +} +.button-group.clear .button:hover, .button-group.clear .button:focus { + color: #0c3d5d; +} +.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus { + color: #1779ba; +} +.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus { + color: #0c3d5d; +} +.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus { + color: #767676; +} +.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus { + color: #3b3b3b; +} +.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus { + color: #3adb76; +} +.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus { + color: #157539; +} +.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus { + color: #ffae00; +} +.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus { + color: #805700; +} +.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus { + color: #cc4b37; +} +.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus { + color: #67251a; +} +.button-group.no-gaps .button { + margin-right: -0.0625rem; +} +.button-group.no-gaps .button + .button { + border-left-color: transparent; +} +.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium { + flex-wrap: wrap; +} +.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { + flex: 0 0 100%; +} +.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { + margin-bottom: 0; +} +.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button { + flex: 1 1 0px; +} +@media print, screen and (min-width: 40em) { + .button-group.stacked-for-small .button { + flex: 0 0 auto; + margin-bottom: 0; + } +} +@media print, screen and (min-width: 64em) { + .button-group.stacked-for-medium .button { + flex: 0 0 auto; + margin-bottom: 0; + } +} +@media print, screen and (max-width: 39.99875em) { + .button-group.stacked-for-small.expanded { + display: block; + } + .button-group.stacked-for-small.expanded .button { + display: block; + margin-right: 0; + } +} +@media print, screen and (max-width: 63.99875em) { + .button-group.stacked-for-medium.expanded { + display: block; + } + .button-group.stacked-for-medium.expanded .button { + display: block; + margin-right: 0; + } +} .close-button { position: absolute; z-index: 10; color: #8a8a8a; - cursor: pointer; } - [data-whatinput='mouse'] .close-button { - outline: 0; } - .close-button:hover, .close-button:focus { - color: #0a0a0a; } - .close-button.small { - right: 0.66rem; - top: 0.33em; - font-size: 1.5em; - line-height: 1; } - .close-button, .close-button.medium { - right: 1rem; - top: 0.5rem; - font-size: 2em; - line-height: 1; } + cursor: pointer; +} +[data-whatinput=mouse] .close-button { + outline: 0; +} +.close-button:hover, .close-button:focus { + color: #0a0a0a; +} +.close-button.small { + right: 0.66rem; + top: 0.33em; + font-size: 1.5em; + line-height: 1; +} + +.close-button.medium, .close-button { + right: 1rem; + top: 0.5rem; + font-size: 2em; + line-height: 1; +} .label { display: inline-block; @@ -260550,45 +195203,58 @@ a.button:hover, a.button:focus { white-space: nowrap; cursor: default; background: #1779ba; - color: #fefefe; } - .label.primary { - background: #1779ba; - color: #fefefe; } - .label.secondary { - background: #767676; - color: #fefefe; } - .label.success { - background: #3adb76; - color: #0a0a0a; } - .label.warning { - background: #ffae00; - color: #0a0a0a; } - .label.alert { - background: #cc4b37; - color: #fefefe; } + color: #fefefe; +} +.label.primary { + background: #1779ba; + color: #fefefe; +} +.label.secondary { + background: #767676; + color: #fefefe; +} +.label.success { + background: #3adb76; + color: #0a0a0a; +} +.label.warning { + background: #ffae00; + color: #0a0a0a; +} +.label.alert { + background: #cc4b37; + color: #fefefe; +} .progress { height: 1rem; margin-bottom: 1rem; border-radius: 0; - background-color: #cacaca; } - .progress.primary .progress-meter { - background-color: #1779ba; } - .progress.secondary .progress-meter { - background-color: #767676; } - .progress.success .progress-meter { - background-color: #3adb76; } - .progress.warning .progress-meter { - background-color: #ffae00; } - .progress.alert .progress-meter { - background-color: #cc4b37; } + background-color: #cacaca; +} +.progress.primary .progress-meter { + background-color: #1779ba; +} +.progress.secondary .progress-meter { + background-color: #767676; +} +.progress.success .progress-meter { + background-color: #3adb76; +} +.progress.warning .progress-meter { + background-color: #ffae00; +} +.progress.alert .progress-meter { + background-color: #cc4b37; +} .progress-meter { position: relative; display: block; width: 0%; height: 100%; - background-color: #1779ba; } + background-color: #1779ba; +} .progress-meter-text { position: absolute; @@ -260599,7 +195265,8 @@ a.button:hover, a.button:focus { font-size: 0.75rem; font-weight: bold; color: #fefefe; - white-space: nowrap; } + white-space: nowrap; +} .slider { position: relative; @@ -260609,7 +195276,8 @@ a.button:hover, a.button:focus { background-color: #e6e6e6; cursor: pointer; user-select: none; - touch-action: none; } + touch-action: none; +} .slider-fill { position: absolute; @@ -260619,9 +195287,11 @@ a.button:hover, a.button:focus { max-width: 100%; height: 0.5rem; background-color: #cacaca; - transition: all 0.2s ease-in-out; } - .slider-fill.is-dragging { - transition: all 0s linear; } + transition: all 0.2s ease-in-out; +} +.slider-fill.is-dragging { + transition: all 0s linear; +} .slider-handle { position: absolute; @@ -260636,37 +195306,45 @@ a.button:hover, a.button:focus { border-radius: 0; background-color: #1779ba; transition: all 0.2s ease-in-out; - touch-action: manipulation; } - [data-whatinput='mouse'] .slider-handle { - outline: 0; } - .slider-handle:hover { - background-color: #14679e; } - .slider-handle.is-dragging { - transition: all 0s linear; - cursor: grabbing; } + touch-action: manipulation; +} +[data-whatinput=mouse] .slider-handle { + outline: 0; +} +.slider-handle:hover { + background-color: #14679e; +} +.slider-handle.is-dragging { + transition: all 0s linear; + cursor: grabbing; +} .slider.disabled, .slider[disabled] { opacity: 0.25; - cursor: not-allowed; } + cursor: not-allowed; +} .slider.vertical { display: inline-block; width: 0.5rem; height: 12.5rem; margin: 0 1.25rem; - transform: scale(1, -1); } - .slider.vertical .slider-fill { - top: 0; - width: 0.5rem; - max-height: 100%; } - .slider.vertical .slider-handle { - position: absolute; - top: 0; - left: 50%; - width: 1.4rem; - height: 1.4rem; - transform: translateX(-50%); } + transform: scale(1, -1); +} +.slider.vertical .slider-fill { + top: 0; + width: 0.5rem; + max-height: 100%; +} +.slider.vertical .slider-handle { + position: absolute; + top: 0; + left: 50%; + width: 1.4rem; + height: 1.4rem; + transform: translateX(-50%); +} .switch { position: relative; @@ -260676,12 +195354,14 @@ a.button:hover, a.button:focus { font-weight: bold; color: #fefefe; user-select: none; - height: 2rem; } + height: 2rem; +} .switch-input { position: absolute; margin-bottom: 0; - opacity: 0; } + opacity: 0; +} .switch-paddle { position: relative; @@ -260693,161 +195373,211 @@ a.button:hover, a.button:focus { transition: all 0.25s ease-out; font-weight: inherit; color: inherit; - cursor: pointer; } - input + .switch-paddle { - margin: 0; } - .switch-paddle::after { - position: absolute; - top: 0.25rem; - left: 0.25rem; - display: block; - width: 1.5rem; - height: 1.5rem; - transform: translate3d(0, 0, 0); - border-radius: 0; - background: #fefefe; - transition: all 0.25s ease-out; - content: ''; } - input:checked ~ .switch-paddle { - background: #1779ba; } - input:checked ~ .switch-paddle::after { - left: 2.25rem; } - input:disabled ~ .switch-paddle { - cursor: not-allowed; - opacity: 0.5; } - [data-whatinput='mouse'] input:focus ~ .switch-paddle { - outline: 0; } - -.switch-active, .switch-inactive { + cursor: pointer; +} +input + .switch-paddle { + margin: 0; +} +.switch-paddle::after { + position: absolute; + top: 0.25rem; + left: 0.25rem; + display: block; + width: 1.5rem; + height: 1.5rem; + transform: translate3d(0, 0, 0); + border-radius: 0; + background: #fefefe; + transition: all 0.25s ease-out; + content: \\"\\"; +} +input:checked ~ .switch-paddle { + background: #1779ba; +} +input:checked ~ .switch-paddle::after { + left: 2.25rem; +} +input:disabled ~ .switch-paddle { + cursor: not-allowed; + opacity: 0.5; +} +[data-whatinput=mouse] input:focus ~ .switch-paddle { + outline: 0; +} + +.switch-inactive, .switch-active { position: absolute; top: 50%; - transform: translateY(-50%); } + transform: translateY(-50%); +} .switch-active { left: 8%; - display: none; } - input:checked + label > .switch-active { - display: block; } + display: none; +} +input:checked + label > .switch-active { + display: block; +} .switch-inactive { - right: 15%; } - input:checked + label > .switch-inactive { - display: none; } + right: 15%; +} +input:checked + label > .switch-inactive { + display: none; +} .switch.tiny { - height: 1.5rem; } - .switch.tiny .switch-paddle { - width: 3rem; - height: 1.5rem; - font-size: 0.625rem; } - .switch.tiny .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1rem; - height: 1rem; } - .switch.tiny input:checked ~ .switch-paddle::after { - left: 1.75rem; } + height: 1.5rem; +} +.switch.tiny .switch-paddle { + width: 3rem; + height: 1.5rem; + font-size: 0.625rem; +} +.switch.tiny .switch-paddle::after { + top: 0.25rem; + left: 0.25rem; + width: 1rem; + height: 1rem; +} +.switch.tiny input:checked ~ .switch-paddle::after { + left: 1.75rem; +} .switch.small { - height: 1.75rem; } - .switch.small .switch-paddle { - width: 3.5rem; - height: 1.75rem; - font-size: 0.75rem; } - .switch.small .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1.25rem; - height: 1.25rem; } - .switch.small input:checked ~ .switch-paddle::after { - left: 2rem; } + height: 1.75rem; +} +.switch.small .switch-paddle { + width: 3.5rem; + height: 1.75rem; + font-size: 0.75rem; +} +.switch.small .switch-paddle::after { + top: 0.25rem; + left: 0.25rem; + width: 1.25rem; + height: 1.25rem; +} +.switch.small input:checked ~ .switch-paddle::after { + left: 2rem; +} .switch.large { - height: 2.5rem; } - .switch.large .switch-paddle { - width: 5rem; - height: 2.5rem; - font-size: 1rem; } - .switch.large .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 2rem; - height: 2rem; } - .switch.large input:checked ~ .switch-paddle::after { - left: 2.75rem; } + height: 2.5rem; +} +.switch.large .switch-paddle { + width: 5rem; + height: 2.5rem; + font-size: 1rem; +} +.switch.large .switch-paddle::after { + top: 0.25rem; + left: 0.25rem; + width: 2rem; + height: 2rem; +} +.switch.large input:checked ~ .switch-paddle::after { + left: 2.75rem; +} table { border-collapse: collapse; width: 100%; margin-bottom: 1rem; - border-radius: 0; } - thead, - tbody, - tfoot { - border: 1px solid #f1f1f1; - background-color: #fefefe; } - caption { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; } - thead { - background: #f8f8f8; - color: #0a0a0a; } - tfoot { - background: #f1f1f1; - color: #0a0a0a; } - thead tr, - tfoot tr { - background: transparent; } - thead th, - thead td, - tfoot th, - tfoot td { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; - text-align: left; } - tbody th, - tbody td { - padding: 0.5rem 0.625rem 0.625rem; } - tbody tr:nth-child(even) { - border-bottom: 0; - background-color: #f1f1f1; } - table.unstriped tbody { - background-color: #fefefe; } - table.unstriped tbody tr { - border-bottom: 1px solid #f1f1f1; - background-color: #fefefe; } + border-radius: 0; +} +thead, +tbody, +tfoot { + border: 1px solid #f1f1f1; + background-color: #fefefe; +} + +caption { + padding: 0.5rem 0.625rem 0.625rem; + font-weight: bold; +} + +thead { + background: #f8f8f8; + color: #0a0a0a; +} + +tfoot { + background: #f1f1f1; + color: #0a0a0a; +} + +thead tr, +tfoot tr { + background: transparent; +} +thead th, +thead td, +tfoot th, +tfoot td { + padding: 0.5rem 0.625rem 0.625rem; + font-weight: bold; + text-align: left; +} + +tbody th, +tbody td { + padding: 0.5rem 0.625rem 0.625rem; +} + +tbody tr:nth-child(even) { + border-bottom: 0; + background-color: #f1f1f1; +} + +table.unstriped tbody { + background-color: #fefefe; +} +table.unstriped tbody tr { + border-bottom: 1px solid #f1f1f1; + background-color: #fefefe; +} @media print, screen and (max-width: 63.99875em) { table.stack thead { - display: none; } + display: none; + } table.stack tfoot { - display: none; } + display: none; + } table.stack tr, - table.stack th, - table.stack td { - display: block; } +table.stack th, +table.stack td { + display: block; + } table.stack td { - border-top: 0; } } + border-top: 0; + } +} table.scroll { display: block; width: 100%; - overflow-x: auto; } + overflow-x: auto; +} table.hover thead tr:hover { - background-color: #f3f3f3; } - + background-color: #f3f3f3; +} table.hover tfoot tr:hover { - background-color: #ececec; } - + background-color: #ececec; +} table.hover tbody tr:hover { - background-color: #f9f9f9; } - + background-color: #f9f9f9; +} table.hover:not(.unstriped) tr:nth-of-type(even):hover { - background-color: #ececec; } + background-color: #ececec; +} .table-scroll { - overflow-x: auto; } + overflow-x: auto; +} .badge { display: inline-block; @@ -260857,52 +195587,66 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { font-size: 0.6rem; text-align: center; background: #1779ba; - color: #fefefe; } - .badge.primary { - background: #1779ba; - color: #fefefe; } - .badge.secondary { - background: #767676; - color: #fefefe; } - .badge.success { - background: #3adb76; - color: #0a0a0a; } - .badge.warning { - background: #ffae00; - color: #0a0a0a; } - .badge.alert { - background: #cc4b37; - color: #fefefe; } + color: #fefefe; +} +.badge.primary { + background: #1779ba; + color: #fefefe; +} +.badge.secondary { + background: #767676; + color: #fefefe; +} +.badge.success { + background: #3adb76; + color: #0a0a0a; +} +.badge.warning { + background: #ffae00; + color: #0a0a0a; +} +.badge.alert { + background: #cc4b37; + color: #fefefe; +} .breadcrumbs { margin: 0 0 1rem 0; - list-style: none; } - .breadcrumbs::before, .breadcrumbs::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .breadcrumbs::after { - clear: both; } - .breadcrumbs li { - float: left; - font-size: 0.6875rem; - color: #0a0a0a; - cursor: default; - text-transform: uppercase; } - .breadcrumbs li:not(:last-child)::after { - position: relative; - margin: 0 0.75rem; - opacity: 1; - content: \\"/\\"; - color: #cacaca; } - .breadcrumbs a { - color: #1779ba; } - .breadcrumbs a:hover { - text-decoration: underline; } - .breadcrumbs .disabled { - color: #cacaca; - cursor: not-allowed; } + list-style: none; +} +.breadcrumbs::before, .breadcrumbs::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.breadcrumbs::after { + clear: both; +} +.breadcrumbs li { + float: left; + font-size: 0.6875rem; + color: #0a0a0a; + cursor: default; + text-transform: uppercase; +} +.breadcrumbs li:not(:last-child)::after { + position: relative; + margin: 0 0.75rem; + opacity: 1; + content: \\"/\\"; + color: #cacaca; +} +.breadcrumbs a { + color: #1779ba; +} +.breadcrumbs a:hover { + text-decoration: underline; +} +.breadcrumbs .disabled { + color: #cacaca; + cursor: not-allowed; +} .callout { position: relative; @@ -260911,36 +195655,46 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 1px solid rgba(10, 10, 10, 0.25); border-radius: 0; background-color: white; - color: #0a0a0a; } - .callout > :first-child { - margin-top: 0; } - .callout > :last-child { - margin-bottom: 0; } - .callout.primary { - background-color: #d7ecfa; - color: #0a0a0a; } - .callout.secondary { - background-color: #eaeaea; - color: #0a0a0a; } - .callout.success { - background-color: #e1faea; - color: #0a0a0a; } - .callout.warning { - background-color: #fff3d9; - color: #0a0a0a; } - .callout.alert { - background-color: #f7e4e1; - color: #0a0a0a; } - .callout.small { - padding-top: 0.5rem; - padding-right: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 0.5rem; } - .callout.large { - padding-top: 3rem; - padding-right: 3rem; - padding-bottom: 3rem; - padding-left: 3rem; } + color: #0a0a0a; +} +.callout > :first-child { + margin-top: 0; +} +.callout > :last-child { + margin-bottom: 0; +} +.callout.primary { + background-color: #d7ecfa; + color: #0a0a0a; +} +.callout.secondary { + background-color: #eaeaea; + color: #0a0a0a; +} +.callout.success { + background-color: #e1faea; + color: #0a0a0a; +} +.callout.warning { + background-color: #fff3d9; + color: #0a0a0a; +} +.callout.alert { + background-color: #f7e4e1; + color: #0a0a0a; +} +.callout.small { + padding-top: 0.5rem; + padding-right: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 0.5rem; +} +.callout.large { + padding-top: 3rem; + padding-right: 3rem; + padding-bottom: 3rem; + padding-left: 3rem; +} .card { display: flex; @@ -260952,26 +195706,33 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { background: #fefefe; box-shadow: none; overflow: hidden; - color: #0a0a0a; } - .card > :last-child { - margin-bottom: 0; } + color: #0a0a0a; +} +.card > :last-child { + margin-bottom: 0; +} .card-divider { display: flex; flex: 0 1 auto; padding: 1rem; - background: #e6e6e6; } - .card-divider > :last-child { - margin-bottom: 0; } + background: #e6e6e6; +} +.card-divider > :last-child { + margin-bottom: 0; +} .card-section { flex: 1 0 auto; - padding: 1rem; } - .card-section > :last-child { - margin-bottom: 0; } + padding: 1rem; +} +.card-section > :last-child { + margin-bottom: 0; +} .card-image { - min-height: 1px; } + min-height: 1px; +} .dropdown-pane { position: absolute; @@ -260983,85 +195744,107 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 1px solid #cacaca; border-radius: 0; background-color: #fefefe; - font-size: 1rem; } - .dropdown-pane.is-opening { - display: block; } - .dropdown-pane.is-open { - display: block; - visibility: visible; } + font-size: 1rem; +} +.dropdown-pane.is-opening { + display: block; +} +.dropdown-pane.is-open { + display: block; + visibility: visible; +} .dropdown-pane.tiny { - width: 100px; } + width: 100px; +} .dropdown-pane.small { - width: 200px; } + width: 200px; +} .dropdown-pane.large { - width: 400px; } + width: 400px; +} .pagination { margin-left: 0; - margin-bottom: 1rem; } - .pagination::before, .pagination::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .pagination::after { - clear: both; } + margin-bottom: 1rem; +} +.pagination::before, .pagination::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.pagination::after { + clear: both; +} +.pagination li { + margin-right: 0.0625rem; + border-radius: 0; + font-size: 0.875rem; + display: none; +} +.pagination li:last-child, .pagination li:first-child { + display: inline-block; +} +@media print, screen and (min-width: 40em) { .pagination li { - margin-right: 0.0625rem; - border-radius: 0; - font-size: 0.875rem; - display: none; } - .pagination li:last-child, .pagination li:first-child { - display: inline-block; } - @media print, screen and (min-width: 40em) { - .pagination li { - display: inline-block; } } - .pagination a, - .pagination button { - display: block; - padding: 0.1875rem 0.625rem; - border-radius: 0; - color: #0a0a0a; } - .pagination a:hover, - .pagination button:hover { - background: #e6e6e6; } - .pagination .current { - padding: 0.1875rem 0.625rem; - background: #1779ba; - color: #fefefe; - cursor: default; } - .pagination .disabled { - padding: 0.1875rem 0.625rem; - color: #cacaca; - cursor: not-allowed; } - .pagination .disabled:hover { - background: transparent; } - .pagination .ellipsis::after { - padding: 0.1875rem 0.625rem; - content: '\\\\2026'; - color: #0a0a0a; } + display: inline-block; + } +} +.pagination a, +.pagination button { + display: block; + padding: 0.1875rem 0.625rem; + border-radius: 0; + color: #0a0a0a; +} +.pagination a:hover, +.pagination button:hover { + background: #e6e6e6; +} +.pagination .current { + padding: 0.1875rem 0.625rem; + background: #1779ba; + color: #fefefe; + cursor: default; +} +.pagination .disabled { + padding: 0.1875rem 0.625rem; + color: #cacaca; + cursor: not-allowed; +} +.pagination .disabled:hover { + background: transparent; +} +.pagination .ellipsis::after { + padding: 0.1875rem 0.625rem; + content: \\"…\\"; + color: #0a0a0a; +} .pagination-previous a::before, .pagination-previous.disabled::before { display: inline-block; margin-right: 0.5rem; - content: \\"«\\"; } + content: \\"«\\"; +} .pagination-next a::after, .pagination-next.disabled::after { display: inline-block; margin-left: 0.5rem; - content: \\"»\\"; } + content: \\"»\\"; +} .has-tip { position: relative; display: inline-block; border-bottom: dotted 1px #8a8a8a; font-weight: bold; - cursor: help; } + cursor: help; +} .tooltip { position: absolute; @@ -261072,90 +195855,107 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border-radius: 0; background-color: #0a0a0a; font-size: 80%; - color: #fefefe; } - .tooltip::before { - position: absolute; } - .tooltip.bottom::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-top-width: 0; - border-color: transparent transparent #0a0a0a; - bottom: 100%; } - .tooltip.bottom.align-center::before { - left: 50%; - transform: translateX(-50%); } - .tooltip.top::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-bottom-width: 0; - border-color: #0a0a0a transparent transparent; - top: 100%; - bottom: auto; } - .tooltip.top.align-center::before { - left: 50%; - transform: translateX(-50%); } - .tooltip.left::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-right-width: 0; - border-color: transparent transparent transparent #0a0a0a; - left: 100%; } - .tooltip.left.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); } - .tooltip.right::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-left-width: 0; - border-color: transparent #0a0a0a transparent transparent; - right: 100%; - left: auto; } - .tooltip.right.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); } - .tooltip.align-top::before { - bottom: auto; - top: 10%; } - .tooltip.align-bottom::before { - bottom: 10%; - top: auto; } - .tooltip.align-left::before { - left: 10%; - right: auto; } - .tooltip.align-right::before { - left: auto; - right: 10%; } + color: #fefefe; +} +.tooltip::before { + position: absolute; +} +.tooltip.bottom::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-top-width: 0; + border-color: transparent transparent #0a0a0a; + bottom: 100%; +} +.tooltip.bottom.align-center::before { + left: 50%; + transform: translateX(-50%); +} +.tooltip.top::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-bottom-width: 0; + border-color: #0a0a0a transparent transparent; + top: 100%; + bottom: auto; +} +.tooltip.top.align-center::before { + left: 50%; + transform: translateX(-50%); +} +.tooltip.left::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-right-width: 0; + border-color: transparent transparent transparent #0a0a0a; + left: 100%; +} +.tooltip.left.align-center::before { + bottom: auto; + top: 50%; + transform: translateY(-50%); +} +.tooltip.right::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-left-width: 0; + border-color: transparent #0a0a0a transparent transparent; + right: 100%; + left: auto; +} +.tooltip.right.align-center::before { + bottom: auto; + top: 50%; + transform: translateY(-50%); +} +.tooltip.align-top::before { + bottom: auto; + top: 10%; +} +.tooltip.align-bottom::before { + bottom: 10%; + top: auto; +} +.tooltip.align-left::before { + left: 10%; + right: auto; +} +.tooltip.align-right::before { + left: auto; + right: 10%; +} .accordion { margin-left: 0; background: #fefefe; - list-style-type: none; } - .accordion[disabled] .accordion-title { - cursor: not-allowed; } + list-style-type: none; +} +.accordion[disabled] .accordion-title { + cursor: not-allowed; +} .accordion-item:first-child > :first-child { - border-radius: 0 0 0 0; } - + border-radius: 0 0 0 0; +} .accordion-item:last-child > :last-child { - border-radius: 0 0 0 0; } + border-radius: 0 0 0 0; +} .accordion-title { position: relative; @@ -261165,20 +195965,25 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border-bottom: 0; font-size: 0.75rem; line-height: 1; - color: #1779ba; } - :last-child:not(.is-active) > .accordion-title { - border-bottom: 1px solid #e6e6e6; - border-radius: 0 0 0 0; } - .accordion-title:hover, .accordion-title:focus { - background-color: #e6e6e6; } - .accordion-title::before { - position: absolute; - top: 50%; - right: 1rem; - margin-top: -0.5rem; - content: \\"+\\"; } - .is-active > .accordion-title::before { - content: \\"–\\"; } + color: #1779ba; +} +:last-child:not(.is-active) > .accordion-title { + border-bottom: 1px solid #e6e6e6; + border-radius: 0 0 0 0; +} +.accordion-title:hover, .accordion-title:focus { + background-color: #e6e6e6; +} +.accordion-title::before { + position: absolute; + top: 50%; + right: 1rem; + margin-top: -0.5rem; + content: \\"+\\"; +} +.is-active > .accordion-title::before { + content: \\"–\\"; +} .accordion-content { display: none; @@ -261186,63 +195991,83 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 1px solid #e6e6e6; border-bottom: 0; background-color: #fefefe; - color: #0a0a0a; } - :last-child > .accordion-content:last-child { - border-bottom: 1px solid #e6e6e6; } + color: #0a0a0a; +} +:last-child > .accordion-content:last-child { + border-bottom: 1px solid #e6e6e6; +} .media-object { display: flex; margin-bottom: 1rem; - flex-wrap: nowrap; } - .media-object img { - max-width: none; } - @media print, screen and (max-width: 39.99875em) { - .media-object.stack-for-small { - flex-wrap: wrap; } } + flex-wrap: nowrap; +} +.media-object img { + max-width: none; +} +@media print, screen and (max-width: 39.99875em) { + .media-object.stack-for-small { + flex-wrap: wrap; + } +} .media-object-section { - flex: 0 1 auto; } - .media-object-section:first-child { - padding-right: 1rem; } - .media-object-section:last-child:not(:nth-child(2)) { - padding-left: 1rem; } - .media-object-section > :last-child { - margin-bottom: 0; } - @media print, screen and (max-width: 39.99875em) { - .stack-for-small .media-object-section { - padding: 0; - padding-bottom: 1rem; - flex-basis: 100%; - max-width: 100%; } - .stack-for-small .media-object-section img { - width: 100%; } } - .media-object-section.main-section { - flex: 1 1 0px; } + flex: 0 1 auto; +} +.media-object-section:first-child { + padding-right: 1rem; +} +.media-object-section:last-child:not(:nth-child(2)) { + padding-left: 1rem; +} +.media-object-section > :last-child { + margin-bottom: 0; +} +@media print, screen and (max-width: 39.99875em) { + .stack-for-small .media-object-section { + padding: 0; + padding-bottom: 1rem; + flex-basis: 100%; + max-width: 100%; + } + .stack-for-small .media-object-section img { + width: 100%; + } +} +.media-object-section.main-section { + flex: 1 1 0px; +} .orbit { - position: relative; } + position: relative; +} .orbit-container { position: relative; height: 0; margin: 0; list-style: none; - overflow: hidden; } + overflow: hidden; +} .orbit-slide { width: 100%; - position: absolute; } - .orbit-slide.no-motionui.is-active { - top: 0; - left: 0; } + position: absolute; +} +.orbit-slide.no-motionui.is-active { + top: 0; + left: 0; +} .orbit-figure { - margin: 0; } + margin: 0; +} .orbit-image { width: 100%; max-width: 100%; - margin: 0; } + margin: 0; +} .orbit-caption { position: absolute; @@ -261251,44 +196076,55 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { margin-bottom: 0; padding: 1rem; background-color: rgba(10, 10, 10, 0.5); - color: #fefefe; } + color: #fefefe; +} -.orbit-previous, .orbit-next { +.orbit-next, .orbit-previous { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; padding: 1rem; - color: #fefefe; } - [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next { - outline: 0; } - .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus { - background-color: rgba(10, 10, 10, 0.5); } + color: #fefefe; +} +[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous { + outline: 0; +} +.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus { + background-color: rgba(10, 10, 10, 0.5); +} .orbit-previous { - left: 0; } + left: 0; +} .orbit-next { left: auto; - right: 0; } + right: 0; +} .orbit-bullets { position: relative; margin-top: 0.8rem; margin-bottom: 0.8rem; - text-align: center; } - [data-whatinput='mouse'] .orbit-bullets { - outline: 0; } - .orbit-bullets button { - width: 1.2rem; - height: 1.2rem; - margin: 0.1rem; - border-radius: 50%; - background-color: #cacaca; } - .orbit-bullets button:hover { - background-color: #8a8a8a; } - .orbit-bullets button.is-active { - background-color: #8a8a8a; } + text-align: center; +} +[data-whatinput=mouse] .orbit-bullets { + outline: 0; +} +.orbit-bullets button { + width: 1.2rem; + height: 1.2rem; + margin: 0.1rem; + border-radius: 50%; + background-color: #cacaca; +} +.orbit-bullets button:hover { + background-color: #8a8a8a; +} +.orbit-bullets button.is-active { + background-color: #8a8a8a; +} .responsive-embed, .flex-video { @@ -261296,87 +196132,108 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { height: 0; margin-bottom: 1rem; padding-bottom: 75%; - overflow: hidden; } - .responsive-embed iframe, - .responsive-embed object, - .responsive-embed embed, - .responsive-embed video, - .flex-video iframe, - .flex-video object, - .flex-video embed, - .flex-video video { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; } - .responsive-embed.widescreen, - .flex-video.widescreen { - padding-bottom: 56.25%; } + overflow: hidden; +} +.responsive-embed iframe, +.responsive-embed object, +.responsive-embed embed, +.responsive-embed video, +.flex-video iframe, +.flex-video object, +.flex-video embed, +.flex-video video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.responsive-embed.widescreen, +.flex-video.widescreen { + padding-bottom: 56.25%; +} .tabs { margin: 0; border: 1px solid #e6e6e6; background: #fefefe; - list-style-type: none; } - .tabs::before, .tabs::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .tabs::after { - clear: both; } + list-style-type: none; +} +.tabs::before, .tabs::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.tabs::after { + clear: both; +} .tabs.vertical > li { display: block; float: none; - width: auto; } + width: auto; +} .tabs.simple > li > a { - padding: 0; } - .tabs.simple > li > a:hover { - background: transparent; } + padding: 0; +} +.tabs.simple > li > a:hover { + background: transparent; +} .tabs.primary { - background: #1779ba; } - .tabs.primary > li > a { - color: #fefefe; } - .tabs.primary > li > a:hover, .tabs.primary > li > a:focus { - background: #1673b1; } + background: #1779ba; +} +.tabs.primary > li > a { + color: #fefefe; +} +.tabs.primary > li > a:hover, .tabs.primary > li > a:focus { + background: #1673b1; +} .tabs-title { - float: left; } - .tabs-title > a { - display: block; - padding: 1.25rem 1.5rem; - font-size: 0.75rem; - line-height: 1; - color: #1779ba; } - [data-whatinput='mouse'] .tabs-title > a { - outline: 0; } - .tabs-title > a:hover { - background: #fefefe; - color: #1468a0; } - .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] { - background: #e6e6e6; - color: #1779ba; } + float: left; +} +.tabs-title > a { + display: block; + padding: 1.25rem 1.5rem; + font-size: 0.75rem; + line-height: 1; + color: #1779ba; +} +[data-whatinput=mouse] .tabs-title > a { + outline: 0; +} +.tabs-title > a:hover { + background: #fefefe; + color: #1468a0; +} +.tabs-title > a:focus, .tabs-title > a[aria-selected=true] { + background: #e6e6e6; + color: #1779ba; +} .tabs-content { border: 1px solid #e6e6e6; border-top: 0; background: #fefefe; color: #0a0a0a; - transition: all 0.5s ease; } + transition: all 0.5s ease; +} .tabs-content.vertical { border: 1px solid #e6e6e6; - border-left: 0; } + border-left: 0; +} .tabs-panel { display: none; - padding: 1rem; } - .tabs-panel.is-active { - display: block; } + padding: 1rem; +} +.tabs-panel.is-active { + display: block; +} .thumbnail { display: inline-block; @@ -261385,14 +196242,18 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 4px solid #fefefe; border-radius: 0; box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2); - line-height: 0; } + line-height: 0; +} a.thumbnail { - transition: box-shadow 200ms ease-out; } - a.thumbnail:hover, a.thumbnail:focus { - box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); } - a.thumbnail image { - box-shadow: none; } + transition: box-shadow 200ms ease-out; +} +a.thumbnail:hover, a.thumbnail:focus { + box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); +} +a.thumbnail image { + box-shadow: none; +} .menu { padding: 0; @@ -261400,161 +196261,211 @@ a.thumbnail { list-style: none; position: relative; display: flex; - flex-wrap: wrap; } - [data-whatinput='mouse'] .menu li { - outline: 0; } - .menu a, - .menu .button { - line-height: 1; - text-decoration: none; - display: block; - padding: 0.7rem 1rem; } - .menu input, - .menu select, - .menu a, - .menu button { - margin-bottom: 0; } - .menu input { - display: inline-block; } - .menu, .menu.horizontal { + flex-wrap: wrap; +} +[data-whatinput=mouse] .menu li { + outline: 0; +} +.menu a, +.menu .button { + line-height: 1; + text-decoration: none; + display: block; + padding: 0.7rem 1rem; +} +.menu input, +.menu select, +.menu a, +.menu button { + margin-bottom: 0; +} +.menu input { + display: inline-block; +} +.menu, .menu.horizontal { + flex-wrap: wrap; + flex-direction: row; +} +.menu.vertical { + flex-wrap: nowrap; + flex-direction: column; +} +.menu.vertical.icon-top li a img, +.menu.vertical.icon-top li a i, +.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img, +.menu.vertical.icon-bottom li a i, +.menu.vertical.icon-bottom li a svg { + text-align: left; +} +.menu.expanded li { + flex: 1 1 0px; +} +.menu.expanded.icon-top li a img, +.menu.expanded.icon-top li a i, +.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img, +.menu.expanded.icon-bottom li a i, +.menu.expanded.icon-bottom li a svg { + text-align: left; +} +.menu.simple { + align-items: center; +} +.menu.simple li + li { + margin-left: 1rem; +} +.menu.simple a { + padding: 0; +} +@media print, screen and (min-width: 40em) { + .menu.medium-horizontal { flex-wrap: wrap; - flex-direction: row; } - .menu.vertical { + flex-direction: row; + } + .menu.medium-vertical { flex-wrap: nowrap; - flex-direction: column; } - .menu.vertical.icon-top li a img, - .menu.vertical.icon-top li a i, - .menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img, - .menu.vertical.icon-bottom li a i, - .menu.vertical.icon-bottom li a svg { - text-align: left; } - .menu.expanded li { - flex: 1 1 0px; } - .menu.expanded.icon-top li a img, - .menu.expanded.icon-top li a i, - .menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img, - .menu.expanded.icon-bottom li a i, - .menu.expanded.icon-bottom li a svg { - text-align: left; } - .menu.simple { - align-items: center; } - .menu.simple li + li { - margin-left: 1rem; } - .menu.simple a { - padding: 0; } - @media print, screen and (min-width: 40em) { - .menu.medium-horizontal { - flex-wrap: wrap; - flex-direction: row; } - .menu.medium-vertical { - flex-wrap: nowrap; - flex-direction: column; } - .menu.medium-expanded li { - flex: 1 1 0px; } - .menu.medium-simple li { - flex: 1 1 0px; } } - @media print, screen and (min-width: 64em) { - .menu.large-horizontal { - flex-wrap: wrap; - flex-direction: row; } - .menu.large-vertical { - flex-wrap: nowrap; - flex-direction: column; } - .menu.large-expanded li { - flex: 1 1 0px; } - .menu.large-simple li { - flex: 1 1 0px; } } - .menu.nested { - margin-right: 0; - margin-left: 1rem; } - .menu.icons a { - display: flex; } - .menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { - display: flex; } - .menu.icon-left li a, .menu.nested.icon-left li a { - flex-flow: row nowrap; } - .menu.icon-left li a img, - .menu.icon-left li a i, - .menu.icon-left li a svg, .menu.nested.icon-left li a img, - .menu.nested.icon-left li a i, - .menu.nested.icon-left li a svg { - margin-right: 0.25rem; } - .menu.icon-right li a, .menu.nested.icon-right li a { - flex-flow: row nowrap; } - .menu.icon-right li a img, - .menu.icon-right li a i, - .menu.icon-right li a svg, .menu.nested.icon-right li a img, - .menu.nested.icon-right li a i, - .menu.nested.icon-right li a svg { - margin-left: 0.25rem; } - .menu.icon-top li a, .menu.nested.icon-top li a { - flex-flow: column nowrap; } - .menu.icon-top li a img, - .menu.icon-top li a i, - .menu.icon-top li a svg, .menu.nested.icon-top li a img, - .menu.nested.icon-top li a i, - .menu.nested.icon-top li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; } - .menu.icon-bottom li a, .menu.nested.icon-bottom li a { - flex-flow: column nowrap; } - .menu.icon-bottom li a img, - .menu.icon-bottom li a i, - .menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img, - .menu.nested.icon-bottom li a i, - .menu.nested.icon-bottom li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; } - .menu .is-active > a { - background: #1779ba; - color: #fefefe; } - .menu .active > a { - background: #1779ba; - color: #fefefe; } - .menu.align-left { - justify-content: flex-start; } - .menu.align-right li { - display: flex; - justify-content: flex-end; } - .menu.align-right li .submenu li { - justify-content: flex-start; } - .menu.align-right.vertical li { - display: block; - text-align: right; } - .menu.align-right.vertical li .submenu li { - text-align: right; } - .menu.align-right.icon-top li a img, - .menu.align-right.icon-top li a i, - .menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img, - .menu.align-right.icon-bottom li a i, - .menu.align-right.icon-bottom li a svg { - text-align: right; } - .menu.align-right .nested { - margin-right: 1rem; - margin-left: 0; } - .menu.align-center li { - display: flex; - justify-content: center; } - .menu.align-center li .submenu li { - justify-content: flex-start; } - .menu .menu-text { - padding: 0.7rem 1rem; - font-weight: bold; - line-height: 1; - color: inherit; } + flex-direction: column; + } + .menu.medium-expanded li { + flex: 1 1 0px; + } + .menu.medium-simple li { + flex: 1 1 0px; + } +} +@media print, screen and (min-width: 64em) { + .menu.large-horizontal { + flex-wrap: wrap; + flex-direction: row; + } + .menu.large-vertical { + flex-wrap: nowrap; + flex-direction: column; + } + .menu.large-expanded li { + flex: 1 1 0px; + } + .menu.large-simple li { + flex: 1 1 0px; + } +} +.menu.nested { + margin-right: 0; + margin-left: 1rem; +} +.menu.icons a { + display: flex; +} +.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { + display: flex; +} +.menu.icon-left li a, .menu.nested.icon-left li a { + flex-flow: row nowrap; +} +.menu.icon-left li a img, +.menu.icon-left li a i, +.menu.icon-left li a svg, .menu.nested.icon-left li a img, +.menu.nested.icon-left li a i, +.menu.nested.icon-left li a svg { + margin-right: 0.25rem; +} +.menu.icon-right li a, .menu.nested.icon-right li a { + flex-flow: row nowrap; +} +.menu.icon-right li a img, +.menu.icon-right li a i, +.menu.icon-right li a svg, .menu.nested.icon-right li a img, +.menu.nested.icon-right li a i, +.menu.nested.icon-right li a svg { + margin-left: 0.25rem; +} +.menu.icon-top li a, .menu.nested.icon-top li a { + flex-flow: column nowrap; +} +.menu.icon-top li a img, +.menu.icon-top li a i, +.menu.icon-top li a svg, .menu.nested.icon-top li a img, +.menu.nested.icon-top li a i, +.menu.nested.icon-top li a svg { + align-self: stretch; + margin-bottom: 0.25rem; + text-align: center; +} +.menu.icon-bottom li a, .menu.nested.icon-bottom li a { + flex-flow: column nowrap; +} +.menu.icon-bottom li a img, +.menu.icon-bottom li a i, +.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img, +.menu.nested.icon-bottom li a i, +.menu.nested.icon-bottom li a svg { + align-self: stretch; + margin-bottom: 0.25rem; + text-align: center; +} +.menu .is-active > a { + background: #1779ba; + color: #fefefe; +} +.menu .active > a { + background: #1779ba; + color: #fefefe; +} +.menu.align-left { + justify-content: flex-start; +} +.menu.align-right li { + display: flex; + justify-content: flex-end; +} +.menu.align-right li .submenu li { + justify-content: flex-start; +} +.menu.align-right.vertical li { + display: block; + text-align: right; +} +.menu.align-right.vertical li .submenu li { + text-align: right; +} +.menu.align-right.icon-top li a img, +.menu.align-right.icon-top li a i, +.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img, +.menu.align-right.icon-bottom li a i, +.menu.align-right.icon-bottom li a svg { + text-align: right; +} +.menu.align-right .nested { + margin-right: 1rem; + margin-left: 0; +} +.menu.align-center li { + display: flex; + justify-content: center; +} +.menu.align-center li .submenu li { + justify-content: flex-start; +} +.menu .menu-text { + padding: 0.7rem 1rem; + font-weight: bold; + line-height: 1; + color: inherit; +} .menu-centered > .menu { - justify-content: center; } - .menu-centered > .menu li { - display: flex; - justify-content: center; } - .menu-centered > .menu li .submenu li { - justify-content: flex-start; } + justify-content: center; +} +.menu-centered > .menu li { + display: flex; + justify-content: center; +} +.menu-centered > .menu li .submenu li { + justify-content: flex-start; +} .no-js [data-responsive-menu] ul { - display: none; } + display: none; +} .menu-icon { position: relative; @@ -261562,20 +196473,23 @@ a.thumbnail { vertical-align: middle; width: 20px; height: 16px; - cursor: pointer; } - .menu-icon::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 2px; - background: #fefefe; - box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; - content: ''; } - .menu-icon:hover::after { - background: #cacaca; - box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; } + cursor: pointer; +} +.menu-icon::after { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 2px; + background: #fefefe; + box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; + content: \\"\\"; +} +.menu-icon:hover::after { + background: #cacaca; + box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; +} .menu-icon.dark { position: relative; @@ -261583,71 +196497,78 @@ a.thumbnail { vertical-align: middle; width: 20px; height: 16px; - cursor: pointer; } - .menu-icon.dark::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 2px; - background: #0a0a0a; - box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; - content: ''; } - .menu-icon.dark:hover::after { - background: #8a8a8a; - box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; } + cursor: pointer; +} +.menu-icon.dark::after { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 2px; + background: #0a0a0a; + box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; + content: \\"\\"; +} +.menu-icon.dark:hover::after { + background: #8a8a8a; + box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; +} .accordion-menu li { - width: 100%; } - + width: 100%; +} .accordion-menu a { - padding: 0.7rem 1rem; } - + padding: 0.7rem 1rem; +} .accordion-menu .is-accordion-submenu a { - padding: 0.7rem 1rem; } - + padding: 0.7rem 1rem; +} .accordion-menu .nested.is-accordion-submenu { margin-right: 0; - margin-left: 1rem; } - + margin-left: 1rem; +} .accordion-menu.align-right .nested.is-accordion-submenu { margin-right: 1rem; - margin-left: 0; } - + margin-left: 0; +} .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a { - position: relative; } - .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - position: absolute; - top: 50%; - margin-top: -3px; - right: 1rem; } - + position: relative; +} +.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-bottom-width: 0; + border-color: #1779ba transparent transparent; + position: absolute; + top: 50%; + margin-top: -3px; + right: 1rem; +} .accordion-menu.align-left .is-accordion-submenu-parent > a::after { right: 1rem; - left: auto; } - + left: auto; +} .accordion-menu.align-right .is-accordion-submenu-parent > a::after { right: auto; - left: 1rem; } - -.accordion-menu .is-accordion-submenu-parent[aria-expanded='true'] > a::after { + left: 1rem; +} +.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after { transform: rotate(180deg); - transform-origin: 50% 50%; } + transform-origin: 50% 50%; +} .is-accordion-submenu-parent { - position: relative; } + position: relative; +} .has-submenu-toggle > a { - margin-right: 40px; } + margin-right: 40px; +} .submenu-toggle { position: absolute; @@ -261655,23 +196576,26 @@ a.thumbnail { right: 0; width: 40px; height: 40px; - cursor: pointer; } - .submenu-toggle::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - top: 0; - bottom: 0; - margin: auto; } + cursor: pointer; +} +.submenu-toggle::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-bottom-width: 0; + border-color: #1779ba transparent transparent; + top: 0; + bottom: 0; + margin: auto; +} -.submenu-toggle[aria-expanded='true']::after { +.submenu-toggle[aria-expanded=true]::after { transform: scaleY(-1); - transform-origin: 50% 50%; } + transform-origin: 50% 50%; +} .submenu-toggle-text { position: absolute !important; @@ -261681,20 +196605,24 @@ a.thumbnail { overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; - border: 0 !important; } + border: 0 !important; +} .is-drilldown { position: relative; - overflow: hidden; } - .is-drilldown li { - display: block; } - .is-drilldown.animate-height { - transition: height 0.5s; } + overflow: hidden; +} +.is-drilldown li { + display: block; +} +.is-drilldown.animate-height { + transition: height 0.5s; +} .drilldown a { padding: 0.7rem 1rem; - background: #fefefe; } - + background: #fefefe; +} .drilldown .is-drilldown-submenu { position: absolute; top: 0; @@ -261702,296 +196630,329 @@ a.thumbnail { z-index: -1; width: 100%; background: #fefefe; - transition: transform 0.15s linear; } - .drilldown .is-drilldown-submenu.is-active { - z-index: 1; - display: block; - transform: translateX(-100%); } - .drilldown .is-drilldown-submenu.is-closing { - transform: translateX(100%); } - .drilldown .is-drilldown-submenu a { - padding: 0.7rem 1rem; } - + transition: transform 0.15s linear; +} +.drilldown .is-drilldown-submenu.is-active { + z-index: 1; + display: block; + transform: translateX(-100%); +} +.drilldown .is-drilldown-submenu.is-closing { + transform: translateX(100%); +} +.drilldown .is-drilldown-submenu a { + padding: 0.7rem 1rem; +} .drilldown .nested.is-drilldown-submenu { margin-right: 0; - margin-left: 0; } - + margin-left: 0; +} .drilldown .drilldown-submenu-cover-previous { - min-height: 100%; } - + min-height: 100%; +} .drilldown .is-drilldown-submenu-parent > a { - position: relative; } - .drilldown .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - position: absolute; - top: 50%; - margin-top: -6px; - right: 1rem; } - + position: relative; +} +.drilldown .is-drilldown-submenu-parent > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-right-width: 0; + border-color: transparent transparent transparent #1779ba; + position: absolute; + top: 50%; + margin-top: -6px; + right: 1rem; +} .drilldown.align-left .is-drilldown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; border-color: transparent transparent transparent #1779ba; right: 1rem; - left: auto; } - + left: auto; +} .drilldown.align-right .is-drilldown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 1rem; } - + left: 1rem; +} .drilldown .js-drilldown-back > a::before { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; display: inline-block; vertical-align: middle; - margin-right: 0.75rem; } + margin-right: 0.75rem; +} .dropdown.menu > li.opens-left > .is-dropdown-submenu { top: 100%; right: 0; - left: auto; } - + left: auto; +} .dropdown.menu > li.opens-right > .is-dropdown-submenu { top: 100%; right: auto; - left: 0; } - + left: 0; +} .dropdown.menu > li.is-dropdown-submenu-parent > a { position: relative; - padding-right: 1.5rem; } - + padding-right: 1.5rem; +} .dropdown.menu > li.is-dropdown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-bottom-width: 0; border-color: #1779ba transparent transparent; right: 5px; left: auto; - margin-top: -3px; } - -[data-whatinput='mouse'] .dropdown.menu a { - outline: 0; } - + margin-top: -3px; +} +[data-whatinput=mouse] .dropdown.menu a { + outline: 0; +} .dropdown.menu > li > a { - padding: 0.7rem 1rem; } - + padding: 0.7rem 1rem; +} .dropdown.menu > li.is-active > a { background: transparent; - color: #1779ba; } - + color: #1779ba; +} .no-js .dropdown.menu ul { - display: none; } - + display: none; +} .dropdown.menu .nested.is-dropdown-submenu { margin-right: 0; - margin-left: 0; } - + margin-left: 0; +} .dropdown.menu.vertical > li .is-dropdown-submenu { - top: 0; } - + top: 0; +} .dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu { top: 0; right: 100%; - left: auto; } - + left: auto; +} .dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu { right: auto; - left: 100%; } - + left: 100%; +} .dropdown.menu.vertical > li > a::after { - right: 14px; } - + right: 14px; +} .dropdown.menu.vertical > li.opens-left > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 5px; } - + left: 5px; +} .dropdown.menu.vertical > li.opens-right > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } - + border-color: transparent transparent transparent #1779ba; +} @media print, screen and (min-width: 40em) { .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu { top: 100%; right: 0; - left: auto; } + left: auto; + } .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu { top: 100%; right: auto; - left: 0; } + left: 0; + } .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a { position: relative; - padding-right: 1.5rem; } + padding-right: 1.5rem; + } .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-bottom-width: 0; border-color: #1779ba transparent transparent; right: 5px; left: auto; - margin-top: -3px; } + margin-top: -3px; + } .dropdown.menu.medium-vertical > li .is-dropdown-submenu { - top: 0; } + top: 0; + } .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu { top: 0; right: 100%; - left: auto; } + left: auto; + } .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu { right: auto; - left: 100%; } + left: 100%; + } .dropdown.menu.medium-vertical > li > a::after { - right: 14px; } + right: 14px; + } .dropdown.menu.medium-vertical > li.opens-left > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 5px; } + left: 5px; + } .dropdown.menu.medium-vertical > li.opens-right > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } } - + border-color: transparent transparent transparent #1779ba; + } +} @media print, screen and (min-width: 64em) { .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu { top: 100%; right: 0; - left: auto; } + left: auto; + } .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu { top: 100%; right: auto; - left: 0; } + left: 0; + } .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a { position: relative; - padding-right: 1.5rem; } + padding-right: 1.5rem; + } .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-bottom-width: 0; border-color: #1779ba transparent transparent; right: 5px; left: auto; - margin-top: -3px; } + margin-top: -3px; + } .dropdown.menu.large-vertical > li .is-dropdown-submenu { - top: 0; } + top: 0; + } .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu { top: 0; right: 100%; - left: auto; } + left: auto; + } .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu { right: auto; - left: 100%; } + left: 100%; + } .dropdown.menu.large-vertical > li > a::after { - right: 14px; } + right: 14px; + } .dropdown.menu.large-vertical > li.opens-left > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 5px; } + left: 5px; + } .dropdown.menu.large-vertical > li.opens-right > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } } - + border-color: transparent transparent transparent #1779ba; + } +} .dropdown.menu.align-right .is-dropdown-submenu.first-sub { top: 100%; right: 0; - left: auto; } + left: auto; +} .is-dropdown-menu.vertical { - width: 100px; } - .is-dropdown-menu.vertical.align-right { - float: right; } + width: 100px; +} +.is-dropdown-menu.vertical.align-right { + float: right; +} .is-dropdown-submenu-parent { - position: relative; } - .is-dropdown-submenu-parent a::after { - position: absolute; - top: 50%; - right: 5px; - left: auto; - margin-top: -6px; } - .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { - top: 100%; - left: auto; } - .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { - right: 100%; - left: auto; } - .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; } + position: relative; +} +.is-dropdown-submenu-parent a::after { + position: absolute; + top: 50%; + right: 5px; + left: auto; + margin-top: -6px; +} +.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { + top: 100%; + left: auto; +} +.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { + right: 100%; + left: auto; +} +.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; +} .is-dropdown-submenu { position: absolute; @@ -262001,40 +196962,49 @@ a.thumbnail { display: none; min-width: 200px; border: 1px solid #cacaca; - background: #fefefe; } - .dropdown .is-dropdown-submenu a { - padding: 0.7rem 1rem; } - .is-dropdown-submenu .is-dropdown-submenu-parent > a::after { - right: 14px; } - .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; } - .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } - .is-dropdown-submenu .is-dropdown-submenu { - margin-top: -1px; } - .is-dropdown-submenu > li { - width: 100%; } - .is-dropdown-submenu.js-dropdown-active { - display: block; } + background: #fefefe; +} +.dropdown .is-dropdown-submenu a { + padding: 0.7rem 1rem; +} +.is-dropdown-submenu .is-dropdown-submenu-parent > a::after { + right: 14px; +} +.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-left-width: 0; + border-color: transparent #1779ba transparent transparent; + right: auto; + left: 5px; +} +.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-right-width: 0; + border-color: transparent transparent transparent #1779ba; +} +.is-dropdown-submenu .is-dropdown-submenu { + margin-top: -1px; +} +.is-dropdown-submenu > li { + width: 100%; +} +.is-dropdown-submenu.js-dropdown-active { + display: block; +} .is-off-canvas-open { - overflow: hidden; } + overflow: hidden; +} .js-off-canvas-overlay { position: absolute; @@ -262047,58 +197017,78 @@ a.thumbnail { background: rgba(254, 254, 254, 0.25); opacity: 0; visibility: hidden; - overflow: hidden; } - .js-off-canvas-overlay.is-visible { - opacity: 1; - visibility: visible; } - .js-off-canvas-overlay.is-closable { - cursor: pointer; } - .js-off-canvas-overlay.is-overlay-absolute { - position: absolute; } - .js-off-canvas-overlay.is-overlay-fixed { - position: fixed; } + overflow: hidden; +} +.js-off-canvas-overlay.is-visible { + opacity: 1; + visibility: visible; +} +.js-off-canvas-overlay.is-closable { + cursor: pointer; +} +.js-off-canvas-overlay.is-overlay-absolute { + position: absolute; +} +.js-off-canvas-overlay.is-overlay-fixed { + position: fixed; +} .off-canvas-wrapper { position: relative; - overflow: hidden; } + overflow: hidden; +} .off-canvas { position: fixed; z-index: 12; transition: transform 0.5s ease; backface-visibility: hidden; - background: #e6e6e6; } - [data-whatinput='mouse'] .off-canvas { - outline: 0; } - .off-canvas.is-transition-push { - z-index: 12; } - .off-canvas.is-closed { - visibility: hidden; } - .off-canvas.is-transition-overlap { - z-index: 13; } - .off-canvas.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); } - .off-canvas.is-open { - transform: translate(0, 0); } + background: #e6e6e6; +} +[data-whatinput=mouse] .off-canvas { + outline: 0; +} +.off-canvas.is-transition-push { + z-index: 12; +} +.off-canvas.is-closed { + visibility: hidden; +} +.off-canvas.is-transition-overlap { + z-index: 13; +} +.off-canvas.is-transition-overlap.is-open { + box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); +} +.off-canvas.is-open { + transform: translate(0, 0); +} .off-canvas-absolute { position: absolute; z-index: 12; transition: transform 0.5s ease; backface-visibility: hidden; - background: #e6e6e6; } - [data-whatinput='mouse'] .off-canvas-absolute { - outline: 0; } - .off-canvas-absolute.is-transition-push { - z-index: 12; } - .off-canvas-absolute.is-closed { - visibility: hidden; } - .off-canvas-absolute.is-transition-overlap { - z-index: 13; } - .off-canvas-absolute.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); } - .off-canvas-absolute.is-open { - transform: translate(0, 0); } + background: #e6e6e6; +} +[data-whatinput=mouse] .off-canvas-absolute { + outline: 0; +} +.off-canvas-absolute.is-transition-push { + z-index: 12; +} +.off-canvas-absolute.is-closed { + visibility: hidden; +} +.off-canvas-absolute.is-transition-overlap { + z-index: 13; +} +.off-canvas-absolute.is-transition-overlap.is-open { + box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); +} +.off-canvas-absolute.is-open { + transform: translate(0, 0); +} .position-left { top: 0; @@ -262107,15 +197097,22 @@ a.thumbnail { overflow-y: auto; -webkit-overflow-scrolling: touch; width: 250px; - transform: translateX(-250px); } - .off-canvas-content .off-canvas.position-left { - transform: translateX(-250px); } - .off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-left.has-transition-push { - transform: translateX(250px); } - .position-left.is-transition-push { - box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateX(-250px); +} +.off-canvas-content .off-canvas.position-left { + transform: translateX(-250px); +} +.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-left.has-transition-push { + transform: translateX(250px); +} + +.position-left.is-transition-push { + box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25); +} .position-right { top: 0; @@ -262124,15 +197121,22 @@ a.thumbnail { overflow-y: auto; -webkit-overflow-scrolling: touch; width: 250px; - transform: translateX(250px); } - .off-canvas-content .off-canvas.position-right { - transform: translateX(250px); } - .off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-right.has-transition-push { - transform: translateX(-250px); } - .position-right.is-transition-push { - box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateX(250px); +} +.off-canvas-content .off-canvas.position-right { + transform: translateX(250px); +} +.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-right.has-transition-push { + transform: translateX(-250px); +} + +.position-right.is-transition-push { + box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25); +} .position-top { top: 0; @@ -262141,15 +197145,22 @@ a.thumbnail { overflow-x: auto; -webkit-overflow-scrolling: touch; height: 250px; - transform: translateY(-250px); } - .off-canvas-content .off-canvas.position-top { - transform: translateY(-250px); } - .off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-top.has-transition-push { - transform: translateY(250px); } - .position-top.is-transition-push { - box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateY(-250px); +} +.off-canvas-content .off-canvas.position-top { + transform: translateY(-250px); +} +.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-top.has-transition-push { + transform: translateY(250px); +} + +.position-top.is-transition-push { + box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25); +} .position-bottom { bottom: 0; @@ -262158,134 +197169,199 @@ a.thumbnail { overflow-x: auto; -webkit-overflow-scrolling: touch; height: 250px; - transform: translateY(250px); } - .off-canvas-content .off-canvas.position-bottom { - transform: translateY(250px); } - .off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-bottom.has-transition-push { - transform: translateY(-250px); } - .position-bottom.is-transition-push { - box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateY(250px); +} +.off-canvas-content .off-canvas.position-bottom { + transform: translateY(250px); +} +.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-bottom.has-transition-push { + transform: translateY(-250px); +} + +.position-bottom.is-transition-push { + box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25); +} .off-canvas-content { transform: none; - backface-visibility: hidden; } - .off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push { - transition: transform 0.5s ease; } - .off-canvas-content.has-transition-push { - transform: translate(0, 0); } - .off-canvas-content .off-canvas.is-open { - transform: translate(0, 0); } + backface-visibility: hidden; +} +.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push { + transition: transform 0.5s ease; +} +.off-canvas-content.has-transition-push { + transform: translate(0, 0); +} +.off-canvas-content .off-canvas.is-open { + transform: translate(0, 0); +} @media print, screen and (min-width: 40em) { .position-left.reveal-for-medium { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-left.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-left.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-left { - margin-left: 250px; } - .position-left.reveal-for-medium ~ .off-canvas-content { - margin-left: 250px; } + visibility: visible; + } + .position-left.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-left.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-left { + margin-left: 250px; + } + + .position-left.reveal-for-medium ~ .off-canvas-content { + margin-left: 250px; + } + .position-right.reveal-for-medium { transform: none; - z-index: 12; - transition: none; - visibility: visible; } - .position-right.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-right.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-right { - margin-right: 250px; } - .position-right.reveal-for-medium ~ .off-canvas-content { - margin-right: 250px; } + z-index: 12; + transition: none; + visibility: visible; + } + .position-right.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-right.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-right { + margin-right: 250px; + } + + .position-right.reveal-for-medium ~ .off-canvas-content { + margin-right: 250px; + } + .position-top.reveal-for-medium { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-top.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-top.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-top { - margin-top: 250px; } - .position-top.reveal-for-medium ~ .off-canvas-content { - margin-top: 250px; } + visibility: visible; + } + .position-top.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-top.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-top { + margin-top: 250px; + } + + .position-top.reveal-for-medium ~ .off-canvas-content { + margin-top: 250px; + } + .position-bottom.reveal-for-medium { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-bottom.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-bottom.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; } - .position-bottom.reveal-for-medium ~ .off-canvas-content { - margin-bottom: 250px; } } + visibility: visible; + } + .position-bottom.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-bottom.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-bottom { + margin-bottom: 250px; + } + .position-bottom.reveal-for-medium ~ .off-canvas-content { + margin-bottom: 250px; + } +} @media print, screen and (min-width: 64em) { .position-left.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-left.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-left.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-left { - margin-left: 250px; } - .position-left.reveal-for-large ~ .off-canvas-content { - margin-left: 250px; } + visibility: visible; + } + .position-left.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-left.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-left { + margin-left: 250px; + } + + .position-left.reveal-for-large ~ .off-canvas-content { + margin-left: 250px; + } + .position-right.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-right.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-right.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-right { - margin-right: 250px; } - .position-right.reveal-for-large ~ .off-canvas-content { - margin-right: 250px; } + visibility: visible; + } + .position-right.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-right.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-right { + margin-right: 250px; + } + + .position-right.reveal-for-large ~ .off-canvas-content { + margin-right: 250px; + } + .position-top.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-top.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-top.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-top { - margin-top: 250px; } - .position-top.reveal-for-large ~ .off-canvas-content { - margin-top: 250px; } + visibility: visible; + } + .position-top.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-top.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-top { + margin-top: 250px; + } + + .position-top.reveal-for-large ~ .off-canvas-content { + margin-top: 250px; + } + .position-bottom.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-bottom.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-bottom.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; } - .position-bottom.reveal-for-large ~ .off-canvas-content { - margin-bottom: 250px; } } + visibility: visible; + } + .position-bottom.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-bottom.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-bottom { + margin-bottom: 250px; + } + .position-bottom.reveal-for-large ~ .off-canvas-content { + margin-bottom: 250px; + } +} @media print, screen and (min-width: 40em) { .off-canvas.in-canvas-for-medium { visibility: visible; @@ -262294,13 +197370,16 @@ a.thumbnail { background: none; width: auto; overflow: visible; - transition: none; } - .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom { - box-shadow: none; - transform: none; } - .off-canvas.in-canvas-for-medium .close-button { - display: none; } } - + transition: none; + } + .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom { + box-shadow: none; + transform: none; + } + .off-canvas.in-canvas-for-medium .close-button { + display: none; + } +} @media print, screen and (min-width: 64em) { .off-canvas.in-canvas-for-large { visibility: visible; @@ -262309,22 +197388,28 @@ a.thumbnail { background: none; width: auto; overflow: visible; - transition: none; } - .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom { - box-shadow: none; - transform: none; } - .off-canvas.in-canvas-for-large .close-button { - display: none; } } - + transition: none; + } + .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom { + box-shadow: none; + transform: none; + } + .off-canvas.in-canvas-for-large .close-button { + display: none; + } +} html.is-reveal-open { position: fixed; width: 100%; - overflow-y: hidden; } - html.is-reveal-open.zf-has-scroll { - overflow-y: scroll; - -webkit-overflow-scrolling: touch; } - html.is-reveal-open body { - overflow-y: hidden; } + overflow-y: hidden; +} +html.is-reveal-open.zf-has-scroll { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; +} +html.is-reveal-open body { + overflow-y: hidden; +} .reveal-overlay { position: fixed; @@ -262336,7 +197421,8 @@ html.is-reveal-open { display: none; background-color: rgba(10, 10, 10, 0.45); overflow-y: auto; - -webkit-overflow-scrolling: touch; } + -webkit-overflow-scrolling: touch; +} .reveal { z-index: 1006; @@ -262351,35 +197437,64 @@ html.is-reveal-open { margin-right: auto; margin-left: auto; overflow-y: auto; - -webkit-overflow-scrolling: touch; } - [data-whatinput='mouse'] .reveal { - outline: 0; } - @media print, screen and (min-width: 40em) { - .reveal { - min-height: 0; } } - .reveal .column { - min-width: 0; } - .reveal > :last-child { - margin-bottom: 0; } - @media print, screen and (min-width: 40em) { - .reveal { - width: 600px; - max-width: 75rem; } } - .reveal.collapse { - padding: 0; } - @media print, screen and (min-width: 40em) { - .reveal.tiny { - width: 30%; - max-width: 75rem; } } - @media print, screen and (min-width: 40em) { - .reveal.small { - width: 50%; - max-width: 75rem; } } - @media print, screen and (min-width: 40em) { - .reveal.large { - width: 90%; - max-width: 75rem; } } - .reveal.full { + -webkit-overflow-scrolling: touch; +} +[data-whatinput=mouse] .reveal { + outline: 0; +} +@media print, screen and (min-width: 40em) { + .reveal { + min-height: 0; + } +} +.reveal .column { + min-width: 0; +} +.reveal > :last-child { + margin-bottom: 0; +} +@media print, screen and (min-width: 40em) { + .reveal { + width: 600px; + max-width: 75rem; + } +} +.reveal.collapse { + padding: 0; +} +@media print, screen and (min-width: 40em) { + .reveal.tiny { + width: 30%; + max-width: 75rem; + } +} +@media print, screen and (min-width: 40em) { + .reveal.small { + width: 50%; + max-width: 75rem; + } +} +@media print, screen and (min-width: 40em) { + .reveal.large { + width: 90%; + max-width: 75rem; + } +} +.reveal.full { + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; + max-width: none; + height: 100%; + min-height: 100%; + margin-left: 0; + border: 0; + border-radius: 0; +} +@media print, screen and (max-width: 39.99875em) { + .reveal { top: 0; right: 0; bottom: 0; @@ -262390,46 +197505,43 @@ html.is-reveal-open { min-height: 100%; margin-left: 0; border: 0; - border-radius: 0; } - @media print, screen and (max-width: 39.99875em) { - .reveal { - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - max-width: none; - height: 100%; - min-height: 100%; - margin-left: 0; - border: 0; - border-radius: 0; } } - .reveal.without-overlay { - position: fixed; } + border-radius: 0; + } +} +.reveal.without-overlay { + position: fixed; +} .sticky-container { - position: relative; } + position: relative; +} .sticky { position: relative; z-index: 0; - transform: translate3d(0, 0, 0); } + transform: translate3d(0, 0, 0); +} .sticky.is-stuck { position: fixed; z-index: 5; - width: 100%; } - .sticky.is-stuck.is-at-top { - top: 0; } - .sticky.is-stuck.is-at-bottom { - bottom: 0; } + width: 100%; +} +.sticky.is-stuck.is-at-top { + top: 0; +} +.sticky.is-stuck.is-at-bottom { + bottom: 0; +} .sticky.is-anchored { position: relative; right: auto; - left: auto; } - .sticky.is-anchored.is-at-bottom { - bottom: 0; } + left: auto; +} +.sticky.is-anchored.is-at-bottom { + bottom: 0; +} .title-bar { padding: 0.5rem; @@ -262437,22 +197549,27 @@ html.is-reveal-open { color: #fefefe; display: flex; justify-content: flex-start; - align-items: center; } - .title-bar .menu-icon { - margin-left: 0.25rem; - margin-right: 0.25rem; } + align-items: center; +} +.title-bar .menu-icon { + margin-left: 0.25rem; + margin-right: 0.25rem; +} .title-bar-left, .title-bar-right { - flex: 1 1 0px; } + flex: 1 1 0px; +} .title-bar-right { - text-align: right; } + text-align: right; +} .title-bar-title { display: inline-block; vertical-align: middle; - font-weight: bold; } + font-weight: bold; +} .top-bar { display: flex; @@ -262460,122 +197577,167 @@ html.is-reveal-open { justify-content: space-between; align-items: center; padding: 0.5rem; - flex-wrap: wrap; } - .top-bar, - .top-bar ul { - background-color: #e6e6e6; } - .top-bar input { - max-width: 200px; - margin-right: 1rem; } - .top-bar .input-group-field { - width: 100%; - margin-right: 0; } - .top-bar input.button { - width: auto; } - .top-bar .top-bar-left, + flex-wrap: wrap; +} +.top-bar, +.top-bar ul { + background-color: #e6e6e6; +} +.top-bar input { + max-width: 200px; + margin-right: 1rem; +} +.top-bar .input-group-field { + width: 100%; + margin-right: 0; +} +.top-bar input.button { + width: auto; +} +.top-bar .top-bar-left, +.top-bar .top-bar-right { + flex: 0 0 100%; + max-width: 100%; +} +@media print, screen and (min-width: 40em) { + .top-bar { + flex-wrap: nowrap; + } + .top-bar .top-bar-left { + flex: 1 1 auto; + margin-right: auto; + } .top-bar .top-bar-right { + flex: 0 1 auto; + margin-left: auto; + } +} +@media print, screen and (max-width: 63.99875em) { + .top-bar.stacked-for-medium { + flex-wrap: wrap; + } + .top-bar.stacked-for-medium .top-bar-left, +.top-bar.stacked-for-medium .top-bar-right { + flex: 0 0 100%; + max-width: 100%; + } +} +@media print, screen and (max-width: 74.99875em) { + .top-bar.stacked-for-large { + flex-wrap: wrap; + } + .top-bar.stacked-for-large .top-bar-left, +.top-bar.stacked-for-large .top-bar-right { flex: 0 0 100%; - max-width: 100%; } - @media print, screen and (min-width: 40em) { - .top-bar { - flex-wrap: nowrap; } - .top-bar .top-bar-left { - flex: 1 1 auto; - margin-right: auto; } - .top-bar .top-bar-right { - flex: 0 1 auto; - margin-left: auto; } } - @media print, screen and (max-width: 63.99875em) { - .top-bar.stacked-for-medium { - flex-wrap: wrap; } - .top-bar.stacked-for-medium .top-bar-left, - .top-bar.stacked-for-medium .top-bar-right { - flex: 0 0 100%; - max-width: 100%; } } - @media print, screen and (max-width: 74.99875em) { - .top-bar.stacked-for-large { - flex-wrap: wrap; } - .top-bar.stacked-for-large .top-bar-left, - .top-bar.stacked-for-large .top-bar-right { - flex: 0 0 100%; - max-width: 100%; } } + max-width: 100%; + } +} .top-bar-title { flex: 0 0 auto; - margin: 0.5rem 1rem 0.5rem 0; } + margin: 0.5rem 1rem 0.5rem 0; +} .top-bar-left, .top-bar-right { - flex: 0 0 auto; } + flex: 0 0 auto; +} .float-left { - float: left !important; } + float: left !important; +} .float-right { - float: right !important; } + float: right !important; +} .float-center { display: block; margin-right: auto; - margin-left: auto; } + margin-left: auto; +} .clearfix::before, .clearfix::after { display: table; - content: ' '; + content: \\" \\"; flex-basis: 0; - order: 1; } - + order: 1; +} .clearfix::after { - clear: both; } + clear: both; +} .hide { - display: none !important; } + display: none !important; +} .invisible { - visibility: hidden; } + visibility: hidden; +} .visible { - visibility: visible; } + visibility: visible; +} @media print, screen and (max-width: 39.99875em) { .hide-for-small-only { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 0em), screen and (min-width: 40em) { .show-for-small-only { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 40em) { .hide-for-medium { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 39.99875em) { .show-for-medium { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 40em) and (max-width: 63.99875em) { .hide-for-medium-only { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 39.99875em), screen and (min-width: 64em) { .show-for-medium-only { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 64em) { .hide-for-large { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 63.99875em) { .show-for-large { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 64em) and (max-width: 74.99875em) { .hide-for-large-only { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 63.99875em), screen and (min-width: 75em) { .show-for-large-only { - display: none !important; } } + display: none !important; + } +} .show-for-sr, .show-on-focus { @@ -262586,7 +197748,8 @@ html.is-reveal-open { overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; - border: 0 !important; } + border: 0 !important; +} .show-on-focus:active, .show-on-focus:focus { position: static !important; @@ -262594,69 +197757,91 @@ html.is-reveal-open { height: auto !important; overflow: visible !important; clip: auto !important; - white-space: normal !important; } + white-space: normal !important; +} .show-for-landscape, .hide-for-portrait { - display: block !important; } - @media screen and (orientation: landscape) { - .show-for-landscape, - .hide-for-portrait { - display: block !important; } } - @media screen and (orientation: portrait) { - .show-for-landscape, - .hide-for-portrait { - display: none !important; } } + display: block !important; +} +@media screen and (orientation: landscape) { + .show-for-landscape, +.hide-for-portrait { + display: block !important; + } +} +@media screen and (orientation: portrait) { + .show-for-landscape, +.hide-for-portrait { + display: none !important; + } +} .hide-for-landscape, .show-for-portrait { - display: none !important; } - @media screen and (orientation: landscape) { - .hide-for-landscape, - .show-for-portrait { - display: none !important; } } - @media screen and (orientation: portrait) { - .hide-for-landscape, - .show-for-portrait { - display: block !important; } } + display: none !important; +} +@media screen and (orientation: landscape) { + .hide-for-landscape, +.show-for-portrait { + display: none !important; + } +} +@media screen and (orientation: portrait) { + .hide-for-landscape, +.show-for-portrait { + display: block !important; + } +} .show-for-dark-mode { - display: none; } + display: none; +} .hide-for-dark-mode { - display: block; } + display: block; +} @media screen and (prefers-color-scheme: dark) { .show-for-dark-mode { - display: block !important; } - .hide-for-dark-mode { - display: none !important; } } + display: block !important; + } + .hide-for-dark-mode { + display: none !important; + } +} .show-for-ie { - display: none; } + display: none; +} @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .show-for-ie { - display: block !important; } - .hide-for-ie { - display: none !important; } } + display: block !important; + } + .hide-for-ie { + display: none !important; + } +} .show-for-sticky { - display: none; } + display: none; +} .is-stuck .show-for-sticky { - display: block; } + display: block; +} .is-stuck .hide-for-sticky { - display: none; } -" + display: none; +}" `; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (sass): errors 1`] = `Array []`; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (node-sass) (scss): css 1`] = ` +exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; /** * Foundation for Sites @@ -262665,67 +197850,82 @@ exports[`loader should work with the "foundation-sites" package, adjusting CSS o * Licensed under MIT Open Source */ @media print, screen and (min-width: 40em) { - .reveal, .reveal.tiny, .reveal.small, .reveal.large { + .reveal.large, .reveal.small, .reveal.tiny, .reveal { right: auto; left: auto; - margin: 0 auto; } } - + margin: 0 auto; + } +} /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ html { line-height: 1.15; - -webkit-text-size-adjust: 100%; } + -webkit-text-size-adjust: 100%; +} body { - margin: 0; } + margin: 0; +} h1 { font-size: 2em; - margin: 0.67em 0; } + margin: 0.67em 0; +} hr { box-sizing: content-box; height: 0; - overflow: visible; } + overflow: visible; +} pre { font-family: monospace, monospace; - font-size: 1em; } + font-size: 1em; +} a { - background-color: transparent; } + background-color: transparent; +} abbr[title] { border-bottom: 0; - text-decoration: underline dotted; } + text-decoration: underline dotted; +} b, strong { - font-weight: bolder; } + font-weight: bolder; +} code, kbd, samp { font-family: monospace, monospace; - font-size: 1em; } + font-size: 1em; +} small { - font-size: 80%; } + font-size: 80%; +} sub, sup { font-size: 75%; line-height: 0; position: relative; - vertical-align: baseline; } + vertical-align: baseline; +} sub { - bottom: -0.25em; } + bottom: -0.25em; +} sup { - top: -0.5em; } + top: -0.5em; +} img { - border-style: none; } + border-style: none; +} button, input, @@ -262735,37 +197935,44 @@ textarea { font-family: inherit; font-size: 100%; line-height: 1.15; - margin: 0; } + margin: 0; +} button, input { - overflow: visible; } + overflow: visible; +} button, select { - text-transform: none; } + text-transform: none; +} button, -[type=\\"button\\"], -[type=\\"reset\\"], -[type=\\"submit\\"] { - -webkit-appearance: button; } +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} button::-moz-focus-inner, -[type=\\"button\\"]::-moz-focus-inner, -[type=\\"reset\\"]::-moz-focus-inner, -[type=\\"submit\\"]::-moz-focus-inner { +[type=button]::-moz-focus-inner, +[type=reset]::-moz-focus-inner, +[type=submit]::-moz-focus-inner { border-style: none; - padding: 0; } + padding: 0; +} button:-moz-focusring, -[type=\\"button\\"]:-moz-focusring, -[type=\\"reset\\"]:-moz-focusring, -[type=\\"submit\\"]:-moz-focusring { - outline: 1px dotted ButtonText; } +[type=button]:-moz-focusring, +[type=reset]:-moz-focusring, +[type=submit]:-moz-focusring { + outline: 1px dotted ButtonText; +} fieldset { - padding: 0.35em 0.75em 0.625em; } + padding: 0.35em 0.75em 0.625em; +} legend { box-sizing: border-box; @@ -262773,70 +197980,87 @@ legend { display: table; max-width: 100%; padding: 0; - white-space: normal; } + white-space: normal; +} progress { - vertical-align: baseline; } + vertical-align: baseline; +} textarea { - overflow: auto; } + overflow: auto; +} -[type=\\"checkbox\\"], -[type=\\"radio\\"] { +[type=checkbox], +[type=radio] { box-sizing: border-box; - padding: 0; } + padding: 0; +} -[type=\\"number\\"]::-webkit-inner-spin-button, -[type=\\"number\\"]::-webkit-outer-spin-button { - height: auto; } +[type=number]::-webkit-inner-spin-button, +[type=number]::-webkit-outer-spin-button { + height: auto; +} -[type=\\"search\\"] { +[type=search] { -webkit-appearance: textfield; - outline-offset: -2px; } + outline-offset: -2px; +} -[type=\\"search\\"]::-webkit-search-decoration { - -webkit-appearance: none; } +[type=search]::-webkit-search-decoration { + -webkit-appearance: none; +} ::-webkit-file-upload-button { -webkit-appearance: button; - font: inherit; } + font: inherit; +} details { - display: block; } + display: block; +} summary { - display: list-item; } + display: list-item; +} template { - display: none; } + display: none; +} [hidden] { - display: none; } + display: none; +} -[data-whatintent=\\"mouse\\"] *, [data-whatintent=\\"mouse\\"] *:focus, -[data-whatintent=\\"touch\\"] *, -[data-whatintent=\\"touch\\"] *:focus, -[data-whatinput=\\"mouse\\"] *, -[data-whatinput=\\"mouse\\"] *:focus, -[data-whatinput=\\"touch\\"] *, -[data-whatinput=\\"touch\\"] *:focus { - outline: none; } +[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus, +[data-whatintent=touch] *, +[data-whatintent=touch] *:focus, +[data-whatinput=mouse] *, +[data-whatinput=mouse] *:focus, +[data-whatinput=touch] *, +[data-whatinput=touch] *:focus { + outline: none; +} [draggable=false] { -webkit-touch-callout: none; - -webkit-user-select: none; } + -webkit-user-select: none; +} .foundation-mq { - font-family: \\"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em\\"; } + font-family: \\"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em\\"; +} html { box-sizing: border-box; - font-size: 100%; } + font-size: 100%; +} *, *::before, *::after { - box-sizing: inherit; } + box-sizing: inherit; +} body { margin: 0; @@ -262847,24 +198071,28 @@ body { line-height: 1.5; color: #0a0a0a; -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } + -moz-osx-font-smoothing: grayscale; +} img { display: inline-block; vertical-align: middle; max-width: 100%; height: auto; - -ms-interpolation-mode: bicubic; } + -ms-interpolation-mode: bicubic; +} textarea { height: auto; min-height: 50px; - border-radius: 0; } + border-radius: 0; +} select { box-sizing: border-box; width: 100%; - border-radius: 0; } + border-radius: 0; +} .map_canvas img, .map_canvas embed, @@ -262872,7 +198100,8 @@ select { .mqa-display img, .mqa-display embed, .mqa-display object { - max-width: none !important; } + max-width: none !important; +} button { padding: 0; @@ -262881,28 +198110,34 @@ button { border-radius: 0; background: transparent; line-height: 1; - cursor: auto; } - [data-whatinput='mouse'] button { - outline: 0; } + cursor: auto; +} +[data-whatinput=mouse] button { + outline: 0; +} pre { overflow: auto; - -webkit-overflow-scrolling: touch; } + -webkit-overflow-scrolling: touch; +} button, input, optgroup, select, textarea { - font-family: inherit; } + font-family: inherit; +} .is-visible { - display: block !important; } + display: block !important; +} .is-hidden { - display: none !important; } + display: none !important; +} -[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], +[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color], textarea { display: block; box-sizing: border-box; @@ -262920,59 +198155,72 @@ textarea { line-height: 1.5; color: #0a0a0a; transition: box-shadow 0.5s, border-color 0.25s ease-in-out; - appearance: none; } - [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, - textarea:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } + appearance: none; +} +[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus, +textarea:focus { + outline: none; + border: 1px solid #8a8a8a; + background-color: #fefefe; + box-shadow: 0 0 5px #cacaca; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +} textarea { - max-width: 100%; } - textarea[rows] { - height: auto; } + max-width: 100%; +} +textarea[rows] { + height: auto; +} input:disabled, input[readonly], textarea:disabled, textarea[readonly] { background-color: #e6e6e6; - cursor: not-allowed; } + cursor: not-allowed; +} -[type='submit'], -[type='button'] { +[type=submit], +[type=button] { appearance: none; - border-radius: 0; } + border-radius: 0; +} -input[type='search'] { - box-sizing: border-box; } +input[type=search] { + box-sizing: border-box; +} ::placeholder { - color: #cacaca; } + color: #cacaca; +} -[type='file'], -[type='checkbox'], -[type='radio'] { - margin: 0 0 1rem; } +[type=file], +[type=checkbox], +[type=radio] { + margin: 0 0 1rem; +} -[type='checkbox'] + label, -[type='radio'] + label { +[type=checkbox] + label, +[type=radio] + label { display: inline-block; vertical-align: baseline; margin-left: 0.5rem; margin-right: 1rem; - margin-bottom: 0; } - [type='checkbox'] + label[for], - [type='radio'] + label[for] { - cursor: pointer; } + margin-bottom: 0; +} +[type=checkbox] + label[for], +[type=radio] + label[for] { + cursor: pointer; +} -label > [type='checkbox'], -label > [type='radio'] { - margin-right: 0.5rem; } +label > [type=checkbox], +label > [type=radio] { + margin-right: 0.5rem; +} -[type='file'] { - width: 100%; } +[type=file] { + width: 100%; +} label { display: block; @@ -262980,34 +198228,41 @@ label { font-size: 0.875rem; font-weight: normal; line-height: 1.8; - color: #0a0a0a; } - label.middle { - margin: 0 0 1rem; - line-height: 1.5; - padding: 0.5625rem 0; } + color: #0a0a0a; +} +label.middle { + margin: 0 0 1rem; + line-height: 1.5; + padding: 0.5625rem 0; +} .help-text { margin-top: -0.5rem; font-size: 0.8125rem; font-style: italic; - color: #0a0a0a; } + color: #0a0a0a; +} .input-group { display: flex; width: 100%; margin-bottom: 1rem; - align-items: stretch; } - .input-group > :first-child, .input-group > :first-child.input-group-button > * { - border-radius: 0 0 0 0; } - .input-group > :last-child, .input-group > :last-child.input-group-button > * { - border-radius: 0 0 0 0; } + align-items: stretch; +} +.input-group > :first-child, .input-group > :first-child.input-group-button > * { + border-radius: 0 0 0 0; +} +.input-group > :last-child, .input-group > :last-child.input-group-button > * { + border-radius: 0 0 0 0; +} -.input-group-label, .input-group-field, .input-group-button, .input-group-button a, +.input-group-button a, .input-group-button input, .input-group-button button, -.input-group-button label { +.input-group-button label, .input-group-button, .input-group-field, .input-group-label { margin: 0; - white-space: nowrap; } + white-space: nowrap; +} .input-group-label { padding: 0 1rem; @@ -263018,50 +198273,60 @@ label { white-space: nowrap; display: flex; flex: 0 0 auto; - align-items: center; } - .input-group-label:first-child { - border-right: 0; } - .input-group-label:last-child { - border-left: 0; } + align-items: center; +} +.input-group-label:first-child { + border-right: 0; +} +.input-group-label:last-child { + border-left: 0; +} .input-group-field { border-radius: 0; flex: 1 1 0px; - min-width: 0; } + min-width: 0; +} .input-group-button { padding-top: 0; padding-bottom: 0; text-align: center; display: flex; - flex: 0 0 auto; } - .input-group-button a, - .input-group-button input, - .input-group-button button, - .input-group-button label { - align-self: stretch; - height: auto; - padding-top: 0; - padding-bottom: 0; - font-size: 1rem; } + flex: 0 0 auto; +} +.input-group-button a, +.input-group-button input, +.input-group-button button, +.input-group-button label { + align-self: stretch; + height: auto; + padding-top: 0; + padding-bottom: 0; + font-size: 1rem; +} fieldset { margin: 0; padding: 0; - border: 0; } + border: 0; +} legend { max-width: 100%; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} .fieldset { margin: 1.125rem 0; padding: 1.25rem; - border: 1px solid #cacaca; } - .fieldset legend { - margin: 0; - margin-left: -0.1875rem; - padding: 0 0.1875rem; } + border: 1px solid #cacaca; +} +.fieldset legend { + margin: 0; + margin-left: -0.1875rem; + padding: 0 0.1875rem; +} select { height: 2.4375rem; @@ -263082,36 +198347,47 @@ select { background-repeat: no-repeat; background-size: 9px 6px; padding-right: 1.5rem; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } - @media screen and (min-width: 0\\\\0) { - select { - background-image: url(\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==\\"); } } - select:focus { - outline: none; - border: 1px solid #8a8a8a; - background-color: #fefefe; - box-shadow: 0 0 5px #cacaca; - transition: box-shadow 0.5s, border-color 0.25s ease-in-out; } - select:disabled { - background-color: #e6e6e6; - cursor: not-allowed; } - select::-ms-expand { - display: none; } - select[multiple] { - height: auto; - background-image: none; } - select:not([multiple]) { - padding-top: 0; - padding-bottom: 0; } + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +} +@media screen and (min-width: 0\\\\0 ) { + select { + background-image: url(\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==\\"); + } +} +select:focus { + outline: none; + border: 1px solid #8a8a8a; + background-color: #fefefe; + box-shadow: 0 0 5px #cacaca; + transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +} +select:disabled { + background-color: #e6e6e6; + cursor: not-allowed; +} +select::-ms-expand { + display: none; +} +select[multiple] { + height: auto; + background-image: none; +} +select:not([multiple]) { + padding-top: 0; + padding-bottom: 0; +} .is-invalid-input:not(:focus) { border-color: #cc4b37; - background-color: #f9ecea; } - .is-invalid-input:not(:focus)::placeholder { - color: #cc4b37; } + background-color: #f9ecea; +} +.is-invalid-input:not(:focus)::placeholder { + color: #cc4b37; +} .is-invalid-label { - color: #cc4b37; } + color: #cc4b37; +} .form-error { display: none; @@ -263119,9 +198395,11 @@ select { margin-bottom: 1rem; font-size: 0.75rem; font-weight: bold; - color: #cc4b37; } - .form-error.is-visible { - display: block; } + color: #cc4b37; +} +.form-error.is-visible { + display: block; +} div, dl, @@ -263143,27 +198421,32 @@ blockquote, th, td { margin: 0; - padding: 0; } + padding: 0; +} p { margin-bottom: 1rem; font-size: inherit; line-height: 1.6; - text-rendering: optimizeLegibility; } + text-rendering: optimizeLegibility; +} em, i { font-style: italic; - line-height: inherit; } + line-height: inherit; +} strong, b { font-weight: bold; - line-height: inherit; } + line-height: inherit; +} small { font-size: 80%; - line-height: inherit; } + line-height: inherit; +} h1, .h1, h2, .h2, @@ -263175,75 +198458,97 @@ h6, .h6 { font-style: normal; font-weight: normal; color: inherit; - text-rendering: optimizeLegibility; } - h1 small, .h1 small, - h2 small, .h2 small, - h3 small, .h3 small, - h4 small, .h4 small, - h5 small, .h5 small, - h6 small, .h6 small { - line-height: 0; - color: #cacaca; } + text-rendering: optimizeLegibility; +} +h1 small, .h1 small, +h2 small, .h2 small, +h3 small, .h3 small, +h4 small, .h4 small, +h5 small, .h5 small, +h6 small, .h6 small { + line-height: 0; + color: #cacaca; +} h1, .h1 { font-size: 1.5rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h2, .h2 { font-size: 1.25rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h3, .h3 { font-size: 1.1875rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h4, .h4 { font-size: 1.125rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h5, .h5 { font-size: 1.0625rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} h6, .h6 { font-size: 1rem; line-height: 1.4; margin-top: 0; - margin-bottom: 0.5rem; } + margin-bottom: 0.5rem; +} @media print, screen and (min-width: 40em) { h1, .h1 { - font-size: 3rem; } + font-size: 3rem; + } + h2, .h2 { - font-size: 2.5rem; } + font-size: 2.5rem; + } + h3, .h3 { - font-size: 1.9375rem; } + font-size: 1.9375rem; + } + h4, .h4 { - font-size: 1.5625rem; } + font-size: 1.5625rem; + } + h5, .h5 { - font-size: 1.25rem; } - h6, .h6 { - font-size: 1rem; } } + font-size: 1.25rem; + } + h6, .h6 { + font-size: 1rem; + } +} a { line-height: inherit; color: #1779ba; text-decoration: none; - cursor: pointer; } - a:hover, a:focus { - color: #1468a0; } - a img { - border: 0; } + cursor: pointer; +} +a:hover, a:focus { + color: #1468a0; +} +a img { + border: 0; +} hr { clear: both; @@ -263253,87 +198558,107 @@ hr { border-top: 0; border-right: 0; border-bottom: 1px solid #cacaca; - border-left: 0; } + border-left: 0; +} ul, ol, dl { margin-bottom: 1rem; list-style-position: outside; - line-height: 1.6; } + line-height: 1.6; +} li { - font-size: inherit; } + font-size: inherit; +} ul { margin-left: 1.25rem; - list-style-type: disc; } + list-style-type: disc; +} ol { - margin-left: 1.25rem; } + margin-left: 1.25rem; +} -ul ul, ol ul, ul ol, ol ol { +ul ul, ul ol, ol ul, ol ol { margin-left: 1.25rem; - margin-bottom: 0; } + margin-bottom: 0; +} dl { - margin-bottom: 1rem; } - dl dt { - margin-bottom: 0.3rem; - font-weight: bold; } + margin-bottom: 1rem; +} +dl dt { + margin-bottom: 0.3rem; + font-weight: bold; +} blockquote { margin: 0 0 1rem; padding: 0.5625rem 1.25rem 0 1.1875rem; - border-left: 1px solid #cacaca; } - blockquote, blockquote p { - line-height: 1.6; - color: #8a8a8a; } + border-left: 1px solid #cacaca; +} +blockquote, blockquote p { + line-height: 1.6; + color: #8a8a8a; +} abbr, abbr[title] { border-bottom: 1px dotted #0a0a0a; cursor: help; - text-decoration: none; } + text-decoration: none; +} figure { - margin: 0; } + margin: 0; +} kbd { margin: 0; padding: 0.125rem 0.25rem 0; background-color: #e6e6e6; font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; - color: #0a0a0a; } + color: #0a0a0a; +} .subheader { margin-top: 0.2rem; margin-bottom: 0.5rem; font-weight: normal; line-height: 1.4; - color: #8a8a8a; } + color: #8a8a8a; +} .lead { font-size: 125%; - line-height: 1.6; } + line-height: 1.6; +} .stat { font-size: 2.5rem; - line-height: 1; } - p + .stat { - margin-top: -1rem; } + line-height: 1; +} +p + .stat { + margin-top: -1rem; +} ul.no-bullet, ol.no-bullet { margin-left: 0; - list-style: none; } + list-style: none; +} -cite, .cite-block { +.cite-block, cite { display: block; color: #8a8a8a; - font-size: 0.8125rem; } - cite:before, .cite-block:before { - content: \\"— \\"; } + font-size: 0.8125rem; +} +.cite-block:before, cite:before { + content: \\"— \\"; +} -code, .code-inline { +.code-inline, code { border: 1px solid #cacaca; background-color: #e6e6e6; font-family: Consolas, \\"Liberation Mono\\", Courier, monospace; @@ -263342,7 +198667,8 @@ code, .code-inline { display: inline; max-width: 100%; word-wrap: break-word; - padding: 0.125rem 0.3125rem 0.0625rem; } + padding: 0.125rem 0.3125rem 0.0625rem; +} .code-block { border: 1px solid #cacaca; @@ -263354,42 +198680,62 @@ code, .code-inline { overflow: auto; white-space: pre; padding: 1rem; - margin-bottom: 1.5rem; } + margin-bottom: 1.5rem; +} .text-left { - text-align: left; } + text-align: left; +} .text-right { - text-align: right; } + text-align: right; +} .text-center { - text-align: center; } + text-align: center; +} .text-justify { - text-align: justify; } + text-align: justify; +} @media print, screen and (min-width: 40em) { .medium-text-left { - text-align: left; } + text-align: left; + } + .medium-text-right { - text-align: right; } + text-align: right; + } + .medium-text-center { - text-align: center; } - .medium-text-justify { - text-align: justify; } } + text-align: center; + } + .medium-text-justify { + text-align: justify; + } +} @media print, screen and (min-width: 64em) { .large-text-left { - text-align: left; } + text-align: left; + } + .large-text-right { - text-align: right; } + text-align: right; + } + .large-text-center { - text-align: center; } - .large-text-justify { - text-align: justify; } } + text-align: center; + } + .large-text-justify { + text-align: justify; + } +} .show-for-print { - display: none !important; } + display: none !important; +} @media print { * { @@ -263397,1252 +198743,1916 @@ code, .code-inline { color: black !important; color-adjust: economy; box-shadow: none !important; - text-shadow: none !important; } + text-shadow: none !important; + } + .show-for-print { - display: block !important; } + display: block !important; + } + .hide-for-print { - display: none !important; } + display: none !important; + } + table.show-for-print { - display: table !important; } + display: table !important; + } + thead.show-for-print { - display: table-header-group !important; } + display: table-header-group !important; + } + tbody.show-for-print { - display: table-row-group !important; } + display: table-row-group !important; + } + tr.show-for-print { - display: table-row !important; } + display: table-row !important; + } + td.show-for-print { - display: table-cell !important; } + display: table-cell !important; + } + th.show-for-print { - display: table-cell !important; } + display: table-cell !important; + } + a, - a:visited { - text-decoration: underline; } +a:visited { + text-decoration: underline; + } + a[href]:after { - content: \\" (\\" attr(href) \\")\\"; } + content: \\" (\\" attr(href) \\")\\"; + } + .ir a:after, - a[href^='javascript:']:after, - a[href^='#']:after { - content: ''; } +a[href^=\\"javascript:\\"]:after, +a[href^=\\"#\\"]:after { + content: \\"\\"; + } + abbr[title]:after { - content: \\" (\\" attr(title) \\")\\"; } + content: \\" (\\" attr(title) \\")\\"; + } + pre, - blockquote { +blockquote { border: 1px solid #8a8a8a; - page-break-inside: avoid; } + page-break-inside: avoid; + } + thead { - display: table-header-group; } + display: table-header-group; + } + tr, +img { + page-break-inside: avoid; + } + img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } + max-width: 100% !important; + } + @page { - margin: 0.5cm; } + margin: 0.5cm; + } p, - h2, - h3 { +h2, +h3 { orphans: 3; - widows: 3; } + widows: 3; + } + h2, - h3 { - page-break-after: avoid; } - .print-break-inside { - page-break-inside: auto; } } +h3 { + page-break-after: avoid; + } + .print-break-inside { + page-break-inside: auto; + } +} .grid-container { padding-right: 0.625rem; padding-left: 0.625rem; max-width: 75rem; margin-left: auto; - margin-right: auto; } - @media print, screen and (min-width: 40em) { - .grid-container { - padding-right: 0.9375rem; - padding-left: 0.9375rem; } } + margin-right: auto; +} +@media print, screen and (min-width: 40em) { + .grid-container { + padding-right: 0.9375rem; + padding-left: 0.9375rem; + } +} +.grid-container.fluid { + padding-right: 0.625rem; + padding-left: 0.625rem; + max-width: 100%; + margin-left: auto; + margin-right: auto; +} +@media print, screen and (min-width: 40em) { .grid-container.fluid { - padding-right: 0.625rem; - padding-left: 0.625rem; - max-width: 100%; - margin-left: auto; - margin-right: auto; } - @media print, screen and (min-width: 40em) { - .grid-container.fluid { - padding-right: 0.9375rem; - padding-left: 0.9375rem; } } - .grid-container.full { - padding-right: 0; - padding-left: 0; - max-width: 100%; - margin-left: auto; - margin-right: auto; } + padding-right: 0.9375rem; + padding-left: 0.9375rem; + } +} +.grid-container.full { + padding-right: 0; + padding-left: 0; + max-width: 100%; + margin-left: auto; + margin-right: auto; +} .grid-x { display: flex; - flex-flow: row wrap; } + flex-flow: row wrap; +} .cell { flex: 0 0 auto; min-height: 0; min-width: 0; - width: 100%; } - .cell.auto { - flex: 1 1 0; } - .cell.shrink { - flex: 0 0 auto; } + width: 100%; +} +.cell.auto { + flex: 1 1 0; +} +.cell.shrink { + flex: 0 0 auto; +} .grid-x > .auto { - width: auto; } - + width: auto; +} .grid-x > .shrink { - width: auto; } + width: auto; +} .grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { - flex-basis: auto; } + flex-basis: auto; +} @media print, screen and (min-width: 40em) { .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { - flex-basis: auto; } } - + flex-basis: auto; + } +} @media print, screen and (min-width: 64em) { .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { - flex-basis: auto; } } - -.grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { - flex: 0 0 auto; } + flex-basis: auto; + } +} +.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 { + flex: 0 0 auto; +} .grid-x > .small-1 { - width: 8.33333%; } + width: 8.3333333333%; +} .grid-x > .small-2 { - width: 16.66667%; } + width: 16.6666666667%; +} .grid-x > .small-3 { - width: 25%; } + width: 25%; +} .grid-x > .small-4 { - width: 33.33333%; } + width: 33.3333333333%; +} .grid-x > .small-5 { - width: 41.66667%; } + width: 41.6666666667%; +} .grid-x > .small-6 { - width: 50%; } + width: 50%; +} .grid-x > .small-7 { - width: 58.33333%; } + width: 58.3333333333%; +} .grid-x > .small-8 { - width: 66.66667%; } + width: 66.6666666667%; +} .grid-x > .small-9 { - width: 75%; } + width: 75%; +} .grid-x > .small-10 { - width: 83.33333%; } + width: 83.3333333333%; +} .grid-x > .small-11 { - width: 91.66667%; } + width: 91.6666666667%; +} .grid-x > .small-12 { - width: 100%; } + width: 100%; +} @media print, screen and (min-width: 40em) { .grid-x > .medium-auto { flex: 1 1 0; - width: auto; } - .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { - flex: 0 0 auto; } + width: auto; + } + + .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink { + flex: 0 0 auto; + } + .grid-x > .medium-shrink { - width: auto; } + width: auto; + } + .grid-x > .medium-1 { - width: 8.33333%; } + width: 8.3333333333%; + } + .grid-x > .medium-2 { - width: 16.66667%; } + width: 16.6666666667%; + } + .grid-x > .medium-3 { - width: 25%; } + width: 25%; + } + .grid-x > .medium-4 { - width: 33.33333%; } + width: 33.3333333333%; + } + .grid-x > .medium-5 { - width: 41.66667%; } + width: 41.6666666667%; + } + .grid-x > .medium-6 { - width: 50%; } + width: 50%; + } + .grid-x > .medium-7 { - width: 58.33333%; } + width: 58.3333333333%; + } + .grid-x > .medium-8 { - width: 66.66667%; } + width: 66.6666666667%; + } + .grid-x > .medium-9 { - width: 75%; } + width: 75%; + } + .grid-x > .medium-10 { - width: 83.33333%; } + width: 83.3333333333%; + } + .grid-x > .medium-11 { - width: 91.66667%; } - .grid-x > .medium-12 { - width: 100%; } } + width: 91.6666666667%; + } + .grid-x > .medium-12 { + width: 100%; + } +} @media print, screen and (min-width: 64em) { .grid-x > .large-auto { flex: 1 1 0; - width: auto; } - .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { - flex: 0 0 auto; } + width: auto; + } + + .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink { + flex: 0 0 auto; + } + .grid-x > .large-shrink { - width: auto; } + width: auto; + } + .grid-x > .large-1 { - width: 8.33333%; } + width: 8.3333333333%; + } + .grid-x > .large-2 { - width: 16.66667%; } + width: 16.6666666667%; + } + .grid-x > .large-3 { - width: 25%; } + width: 25%; + } + .grid-x > .large-4 { - width: 33.33333%; } + width: 33.3333333333%; + } + .grid-x > .large-5 { - width: 41.66667%; } + width: 41.6666666667%; + } + .grid-x > .large-6 { - width: 50%; } + width: 50%; + } + .grid-x > .large-7 { - width: 58.33333%; } + width: 58.3333333333%; + } + .grid-x > .large-8 { - width: 66.66667%; } + width: 66.6666666667%; + } + .grid-x > .large-9 { - width: 75%; } + width: 75%; + } + .grid-x > .large-10 { - width: 83.33333%; } + width: 83.3333333333%; + } + .grid-x > .large-11 { - width: 91.66667%; } - .grid-x > .large-12 { - width: 100%; } } + width: 91.6666666667%; + } + .grid-x > .large-12 { + width: 100%; + } +} .grid-margin-x:not(.grid-x) > .cell { - width: auto; } + width: auto; +} .grid-margin-y:not(.grid-y) > .cell { - height: auto; } + height: auto; +} .grid-margin-x { margin-left: -0.625rem; - margin-right: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-x { - margin-left: -0.9375rem; - margin-right: -0.9375rem; } } + margin-right: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-margin-x { + margin-left: -0.9375rem; + margin-right: -0.9375rem; + } +} +.grid-margin-x > .cell { + width: calc(100% - 1.25rem); + margin-left: 0.625rem; + margin-right: 0.625rem; +} +@media print, screen and (min-width: 40em) { .grid-margin-x > .cell { - width: calc(100% - 1.25rem); - margin-left: 0.625rem; - margin-right: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-x > .cell { - width: calc(100% - 1.875rem); - margin-left: 0.9375rem; - margin-right: 0.9375rem; } } + width: calc(100% - 1.875rem); + margin-left: 0.9375rem; + margin-right: 0.9375rem; + } +} +.grid-margin-x > .auto { + width: auto; +} +.grid-margin-x > .shrink { + width: auto; +} +.grid-margin-x > .small-1 { + width: calc(8.3333333333% - 1.25rem); +} +.grid-margin-x > .small-2 { + width: calc(16.6666666667% - 1.25rem); +} +.grid-margin-x > .small-3 { + width: calc(25% - 1.25rem); +} +.grid-margin-x > .small-4 { + width: calc(33.3333333333% - 1.25rem); +} +.grid-margin-x > .small-5 { + width: calc(41.6666666667% - 1.25rem); +} +.grid-margin-x > .small-6 { + width: calc(50% - 1.25rem); +} +.grid-margin-x > .small-7 { + width: calc(58.3333333333% - 1.25rem); +} +.grid-margin-x > .small-8 { + width: calc(66.6666666667% - 1.25rem); +} +.grid-margin-x > .small-9 { + width: calc(75% - 1.25rem); +} +.grid-margin-x > .small-10 { + width: calc(83.3333333333% - 1.25rem); +} +.grid-margin-x > .small-11 { + width: calc(91.6666666667% - 1.25rem); +} +.grid-margin-x > .small-12 { + width: calc(100% - 1.25rem); +} +@media print, screen and (min-width: 40em) { .grid-margin-x > .auto { - width: auto; } + width: auto; + } .grid-margin-x > .shrink { - width: auto; } + width: auto; + } .grid-margin-x > .small-1 { - width: calc(8.33333% - 1.25rem); } + width: calc(8.3333333333% - 1.875rem); + } .grid-margin-x > .small-2 { - width: calc(16.66667% - 1.25rem); } + width: calc(16.6666666667% - 1.875rem); + } .grid-margin-x > .small-3 { - width: calc(25% - 1.25rem); } + width: calc(25% - 1.875rem); + } .grid-margin-x > .small-4 { - width: calc(33.33333% - 1.25rem); } + width: calc(33.3333333333% - 1.875rem); + } .grid-margin-x > .small-5 { - width: calc(41.66667% - 1.25rem); } + width: calc(41.6666666667% - 1.875rem); + } .grid-margin-x > .small-6 { - width: calc(50% - 1.25rem); } + width: calc(50% - 1.875rem); + } .grid-margin-x > .small-7 { - width: calc(58.33333% - 1.25rem); } + width: calc(58.3333333333% - 1.875rem); + } .grid-margin-x > .small-8 { - width: calc(66.66667% - 1.25rem); } + width: calc(66.6666666667% - 1.875rem); + } .grid-margin-x > .small-9 { - width: calc(75% - 1.25rem); } + width: calc(75% - 1.875rem); + } .grid-margin-x > .small-10 { - width: calc(83.33333% - 1.25rem); } + width: calc(83.3333333333% - 1.875rem); + } .grid-margin-x > .small-11 { - width: calc(91.66667% - 1.25rem); } + width: calc(91.6666666667% - 1.875rem); + } .grid-margin-x > .small-12 { - width: calc(100% - 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-margin-x > .auto { - width: auto; } - .grid-margin-x > .shrink { - width: auto; } - .grid-margin-x > .small-1 { - width: calc(8.33333% - 1.875rem); } - .grid-margin-x > .small-2 { - width: calc(16.66667% - 1.875rem); } - .grid-margin-x > .small-3 { - width: calc(25% - 1.875rem); } - .grid-margin-x > .small-4 { - width: calc(33.33333% - 1.875rem); } - .grid-margin-x > .small-5 { - width: calc(41.66667% - 1.875rem); } - .grid-margin-x > .small-6 { - width: calc(50% - 1.875rem); } - .grid-margin-x > .small-7 { - width: calc(58.33333% - 1.875rem); } - .grid-margin-x > .small-8 { - width: calc(66.66667% - 1.875rem); } - .grid-margin-x > .small-9 { - width: calc(75% - 1.875rem); } - .grid-margin-x > .small-10 { - width: calc(83.33333% - 1.875rem); } - .grid-margin-x > .small-11 { - width: calc(91.66667% - 1.875rem); } - .grid-margin-x > .small-12 { - width: calc(100% - 1.875rem); } - .grid-margin-x > .medium-auto { - width: auto; } - .grid-margin-x > .medium-shrink { - width: auto; } - .grid-margin-x > .medium-1 { - width: calc(8.33333% - 1.875rem); } - .grid-margin-x > .medium-2 { - width: calc(16.66667% - 1.875rem); } - .grid-margin-x > .medium-3 { - width: calc(25% - 1.875rem); } - .grid-margin-x > .medium-4 { - width: calc(33.33333% - 1.875rem); } - .grid-margin-x > .medium-5 { - width: calc(41.66667% - 1.875rem); } - .grid-margin-x > .medium-6 { - width: calc(50% - 1.875rem); } - .grid-margin-x > .medium-7 { - width: calc(58.33333% - 1.875rem); } - .grid-margin-x > .medium-8 { - width: calc(66.66667% - 1.875rem); } - .grid-margin-x > .medium-9 { - width: calc(75% - 1.875rem); } - .grid-margin-x > .medium-10 { - width: calc(83.33333% - 1.875rem); } - .grid-margin-x > .medium-11 { - width: calc(91.66667% - 1.875rem); } - .grid-margin-x > .medium-12 { - width: calc(100% - 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-margin-x > .large-auto { - width: auto; } - .grid-margin-x > .large-shrink { - width: auto; } - .grid-margin-x > .large-1 { - width: calc(8.33333% - 1.875rem); } - .grid-margin-x > .large-2 { - width: calc(16.66667% - 1.875rem); } - .grid-margin-x > .large-3 { - width: calc(25% - 1.875rem); } - .grid-margin-x > .large-4 { - width: calc(33.33333% - 1.875rem); } - .grid-margin-x > .large-5 { - width: calc(41.66667% - 1.875rem); } - .grid-margin-x > .large-6 { - width: calc(50% - 1.875rem); } - .grid-margin-x > .large-7 { - width: calc(58.33333% - 1.875rem); } - .grid-margin-x > .large-8 { - width: calc(66.66667% - 1.875rem); } - .grid-margin-x > .large-9 { - width: calc(75% - 1.875rem); } - .grid-margin-x > .large-10 { - width: calc(83.33333% - 1.875rem); } - .grid-margin-x > .large-11 { - width: calc(91.66667% - 1.875rem); } - .grid-margin-x > .large-12 { - width: calc(100% - 1.875rem); } } + width: calc(100% - 1.875rem); + } + .grid-margin-x > .medium-auto { + width: auto; + } + .grid-margin-x > .medium-shrink { + width: auto; + } + .grid-margin-x > .medium-1 { + width: calc(8.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-2 { + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-3 { + width: calc(25% - 1.875rem); + } + .grid-margin-x > .medium-4 { + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-5 { + width: calc(41.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-6 { + width: calc(50% - 1.875rem); + } + .grid-margin-x > .medium-7 { + width: calc(58.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-8 { + width: calc(66.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-9 { + width: calc(75% - 1.875rem); + } + .grid-margin-x > .medium-10 { + width: calc(83.3333333333% - 1.875rem); + } + .grid-margin-x > .medium-11 { + width: calc(91.6666666667% - 1.875rem); + } + .grid-margin-x > .medium-12 { + width: calc(100% - 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-margin-x > .large-auto { + width: auto; + } + .grid-margin-x > .large-shrink { + width: auto; + } + .grid-margin-x > .large-1 { + width: calc(8.3333333333% - 1.875rem); + } + .grid-margin-x > .large-2 { + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x > .large-3 { + width: calc(25% - 1.875rem); + } + .grid-margin-x > .large-4 { + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x > .large-5 { + width: calc(41.6666666667% - 1.875rem); + } + .grid-margin-x > .large-6 { + width: calc(50% - 1.875rem); + } + .grid-margin-x > .large-7 { + width: calc(58.3333333333% - 1.875rem); + } + .grid-margin-x > .large-8 { + width: calc(66.6666666667% - 1.875rem); + } + .grid-margin-x > .large-9 { + width: calc(75% - 1.875rem); + } + .grid-margin-x > .large-10 { + width: calc(83.3333333333% - 1.875rem); + } + .grid-margin-x > .large-11 { + width: calc(91.6666666667% - 1.875rem); + } + .grid-margin-x > .large-12 { + width: calc(100% - 1.875rem); + } +} .grid-padding-x .grid-padding-x { margin-right: -0.625rem; - margin-left: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-x .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; } } - + margin-left: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-x .grid-padding-x { + margin-right: -0.9375rem; + margin-left: -0.9375rem; + } +} .grid-container:not(.full) > .grid-padding-x { margin-right: -0.625rem; - margin-left: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-container:not(.full) > .grid-padding-x { - margin-right: -0.9375rem; - margin-left: -0.9375rem; } } - + margin-left: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-container:not(.full) > .grid-padding-x { + margin-right: -0.9375rem; + margin-left: -0.9375rem; + } +} .grid-padding-x > .cell { padding-right: 0.625rem; - padding-left: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-x > .cell { - padding-right: 0.9375rem; - padding-left: 0.9375rem; } } + padding-left: 0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-x > .cell { + padding-right: 0.9375rem; + padding-left: 0.9375rem; + } +} .small-up-1 > .cell { - width: 100%; } + width: 100%; +} .small-up-2 > .cell { - width: 50%; } + width: 50%; +} .small-up-3 > .cell { - width: 33.33333%; } + width: 33.3333333333%; +} .small-up-4 > .cell { - width: 25%; } + width: 25%; +} .small-up-5 > .cell { - width: 20%; } + width: 20%; +} .small-up-6 > .cell { - width: 16.66667%; } + width: 16.6666666667%; +} .small-up-7 > .cell { - width: 14.28571%; } + width: 14.2857142857%; +} .small-up-8 > .cell { - width: 12.5%; } + width: 12.5%; +} @media print, screen and (min-width: 40em) { .medium-up-1 > .cell { - width: 100%; } + width: 100%; + } + .medium-up-2 > .cell { - width: 50%; } + width: 50%; + } + .medium-up-3 > .cell { - width: 33.33333%; } + width: 33.3333333333%; + } + .medium-up-4 > .cell { - width: 25%; } + width: 25%; + } + .medium-up-5 > .cell { - width: 20%; } + width: 20%; + } + .medium-up-6 > .cell { - width: 16.66667%; } + width: 16.6666666667%; + } + .medium-up-7 > .cell { - width: 14.28571%; } - .medium-up-8 > .cell { - width: 12.5%; } } + width: 14.2857142857%; + } + .medium-up-8 > .cell { + width: 12.5%; + } +} @media print, screen and (min-width: 64em) { .large-up-1 > .cell { - width: 100%; } + width: 100%; + } + .large-up-2 > .cell { - width: 50%; } + width: 50%; + } + .large-up-3 > .cell { - width: 33.33333%; } + width: 33.3333333333%; + } + .large-up-4 > .cell { - width: 25%; } + width: 25%; + } + .large-up-5 > .cell { - width: 20%; } + width: 20%; + } + .large-up-6 > .cell { - width: 16.66667%; } + width: 16.6666666667%; + } + .large-up-7 > .cell { - width: 14.28571%; } - .large-up-8 > .cell { - width: 12.5%; } } + width: 14.2857142857%; + } + .large-up-8 > .cell { + width: 12.5%; + } +} .grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.25rem); } + width: calc(100% - 1.25rem); +} .grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.25rem); } + width: calc(50% - 1.25rem); +} .grid-margin-x.small-up-3 > .cell { - width: calc(33.33333% - 1.25rem); } + width: calc(33.3333333333% - 1.25rem); +} .grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.25rem); } + width: calc(25% - 1.25rem); +} .grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.25rem); } + width: calc(20% - 1.25rem); +} .grid-margin-x.small-up-6 > .cell { - width: calc(16.66667% - 1.25rem); } + width: calc(16.6666666667% - 1.25rem); +} .grid-margin-x.small-up-7 > .cell { - width: calc(14.28571% - 1.25rem); } + width: calc(14.2857142857% - 1.25rem); +} .grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.25rem); } + width: calc(12.5% - 1.25rem); +} @media print, screen and (min-width: 40em) { .grid-margin-x.small-up-1 > .cell { - width: calc(100% - 1.875rem); } + width: calc(100% - 1.875rem); + } + .grid-margin-x.small-up-2 > .cell { - width: calc(50% - 1.875rem); } + width: calc(50% - 1.875rem); + } + .grid-margin-x.small-up-3 > .cell { - width: calc(33.33333% - 1.875rem); } + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x.small-up-4 > .cell { - width: calc(25% - 1.875rem); } + width: calc(25% - 1.875rem); + } + .grid-margin-x.small-up-5 > .cell { - width: calc(20% - 1.875rem); } + width: calc(20% - 1.875rem); + } + .grid-margin-x.small-up-6 > .cell { - width: calc(16.66667% - 1.875rem); } + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x.small-up-7 > .cell { - width: calc(14.28571% - 1.875rem); } + width: calc(14.2857142857% - 1.875rem); + } + .grid-margin-x.small-up-8 > .cell { - width: calc(12.5% - 1.875rem); } + width: calc(12.5% - 1.875rem); + } + .grid-margin-x.medium-up-1 > .cell { - width: calc(100% - 1.875rem); } + width: calc(100% - 1.875rem); + } + .grid-margin-x.medium-up-2 > .cell { - width: calc(50% - 1.875rem); } + width: calc(50% - 1.875rem); + } + .grid-margin-x.medium-up-3 > .cell { - width: calc(33.33333% - 1.875rem); } + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x.medium-up-4 > .cell { - width: calc(25% - 1.875rem); } + width: calc(25% - 1.875rem); + } + .grid-margin-x.medium-up-5 > .cell { - width: calc(20% - 1.875rem); } + width: calc(20% - 1.875rem); + } + .grid-margin-x.medium-up-6 > .cell { - width: calc(16.66667% - 1.875rem); } + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x.medium-up-7 > .cell { - width: calc(14.28571% - 1.875rem); } - .grid-margin-x.medium-up-8 > .cell { - width: calc(12.5% - 1.875rem); } } + width: calc(14.2857142857% - 1.875rem); + } + .grid-margin-x.medium-up-8 > .cell { + width: calc(12.5% - 1.875rem); + } +} @media print, screen and (min-width: 64em) { .grid-margin-x.large-up-1 > .cell { - width: calc(100% - 1.875rem); } + width: calc(100% - 1.875rem); + } + .grid-margin-x.large-up-2 > .cell { - width: calc(50% - 1.875rem); } + width: calc(50% - 1.875rem); + } + .grid-margin-x.large-up-3 > .cell { - width: calc(33.33333% - 1.875rem); } + width: calc(33.3333333333% - 1.875rem); + } + .grid-margin-x.large-up-4 > .cell { - width: calc(25% - 1.875rem); } + width: calc(25% - 1.875rem); + } + .grid-margin-x.large-up-5 > .cell { - width: calc(20% - 1.875rem); } + width: calc(20% - 1.875rem); + } + .grid-margin-x.large-up-6 > .cell { - width: calc(16.66667% - 1.875rem); } + width: calc(16.6666666667% - 1.875rem); + } + .grid-margin-x.large-up-7 > .cell { - width: calc(14.28571% - 1.875rem); } - .grid-margin-x.large-up-8 > .cell { - width: calc(12.5% - 1.875rem); } } + width: calc(14.2857142857% - 1.875rem); + } + .grid-margin-x.large-up-8 > .cell { + width: calc(12.5% - 1.875rem); + } +} .small-margin-collapse { margin-right: 0; - margin-left: 0; } - .small-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; } - .small-margin-collapse > .small-1 { - width: 8.33333%; } - .small-margin-collapse > .small-2 { - width: 16.66667%; } - .small-margin-collapse > .small-3 { - width: 25%; } - .small-margin-collapse > .small-4 { - width: 33.33333%; } - .small-margin-collapse > .small-5 { - width: 41.66667%; } - .small-margin-collapse > .small-6 { - width: 50%; } - .small-margin-collapse > .small-7 { - width: 58.33333%; } - .small-margin-collapse > .small-8 { - width: 66.66667%; } - .small-margin-collapse > .small-9 { - width: 75%; } - .small-margin-collapse > .small-10 { - width: 83.33333%; } - .small-margin-collapse > .small-11 { - width: 91.66667%; } - .small-margin-collapse > .small-12 { - width: 100%; } - @media print, screen and (min-width: 40em) { - .small-margin-collapse > .medium-1 { - width: 8.33333%; } - .small-margin-collapse > .medium-2 { - width: 16.66667%; } - .small-margin-collapse > .medium-3 { - width: 25%; } - .small-margin-collapse > .medium-4 { - width: 33.33333%; } - .small-margin-collapse > .medium-5 { - width: 41.66667%; } - .small-margin-collapse > .medium-6 { - width: 50%; } - .small-margin-collapse > .medium-7 { - width: 58.33333%; } - .small-margin-collapse > .medium-8 { - width: 66.66667%; } - .small-margin-collapse > .medium-9 { - width: 75%; } - .small-margin-collapse > .medium-10 { - width: 83.33333%; } - .small-margin-collapse > .medium-11 { - width: 91.66667%; } - .small-margin-collapse > .medium-12 { - width: 100%; } } - @media print, screen and (min-width: 64em) { - .small-margin-collapse > .large-1 { - width: 8.33333%; } - .small-margin-collapse > .large-2 { - width: 16.66667%; } - .small-margin-collapse > .large-3 { - width: 25%; } - .small-margin-collapse > .large-4 { - width: 33.33333%; } - .small-margin-collapse > .large-5 { - width: 41.66667%; } - .small-margin-collapse > .large-6 { - width: 50%; } - .small-margin-collapse > .large-7 { - width: 58.33333%; } - .small-margin-collapse > .large-8 { - width: 66.66667%; } - .small-margin-collapse > .large-9 { - width: 75%; } - .small-margin-collapse > .large-10 { - width: 83.33333%; } - .small-margin-collapse > .large-11 { - width: 91.66667%; } - .small-margin-collapse > .large-12 { - width: 100%; } } + margin-left: 0; +} +.small-margin-collapse > .cell { + margin-right: 0; + margin-left: 0; +} +.small-margin-collapse > .small-1 { + width: 8.3333333333%; +} +.small-margin-collapse > .small-2 { + width: 16.6666666667%; +} +.small-margin-collapse > .small-3 { + width: 25%; +} +.small-margin-collapse > .small-4 { + width: 33.3333333333%; +} +.small-margin-collapse > .small-5 { + width: 41.6666666667%; +} +.small-margin-collapse > .small-6 { + width: 50%; +} +.small-margin-collapse > .small-7 { + width: 58.3333333333%; +} +.small-margin-collapse > .small-8 { + width: 66.6666666667%; +} +.small-margin-collapse > .small-9 { + width: 75%; +} +.small-margin-collapse > .small-10 { + width: 83.3333333333%; +} +.small-margin-collapse > .small-11 { + width: 91.6666666667%; +} +.small-margin-collapse > .small-12 { + width: 100%; +} +@media print, screen and (min-width: 40em) { + .small-margin-collapse > .medium-1 { + width: 8.3333333333%; + } + .small-margin-collapse > .medium-2 { + width: 16.6666666667%; + } + .small-margin-collapse > .medium-3 { + width: 25%; + } + .small-margin-collapse > .medium-4 { + width: 33.3333333333%; + } + .small-margin-collapse > .medium-5 { + width: 41.6666666667%; + } + .small-margin-collapse > .medium-6 { + width: 50%; + } + .small-margin-collapse > .medium-7 { + width: 58.3333333333%; + } + .small-margin-collapse > .medium-8 { + width: 66.6666666667%; + } + .small-margin-collapse > .medium-9 { + width: 75%; + } + .small-margin-collapse > .medium-10 { + width: 83.3333333333%; + } + .small-margin-collapse > .medium-11 { + width: 91.6666666667%; + } + .small-margin-collapse > .medium-12 { + width: 100%; + } +} +@media print, screen and (min-width: 64em) { + .small-margin-collapse > .large-1 { + width: 8.3333333333%; + } + .small-margin-collapse > .large-2 { + width: 16.6666666667%; + } + .small-margin-collapse > .large-3 { + width: 25%; + } + .small-margin-collapse > .large-4 { + width: 33.3333333333%; + } + .small-margin-collapse > .large-5 { + width: 41.6666666667%; + } + .small-margin-collapse > .large-6 { + width: 50%; + } + .small-margin-collapse > .large-7 { + width: 58.3333333333%; + } + .small-margin-collapse > .large-8 { + width: 66.6666666667%; + } + .small-margin-collapse > .large-9 { + width: 75%; + } + .small-margin-collapse > .large-10 { + width: 83.3333333333%; + } + .small-margin-collapse > .large-11 { + width: 91.6666666667%; + } + .small-margin-collapse > .large-12 { + width: 100%; + } +} .small-padding-collapse { margin-right: 0; - margin-left: 0; } - .small-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; } + margin-left: 0; +} +.small-padding-collapse > .cell { + padding-right: 0; + padding-left: 0; +} @media print, screen and (min-width: 40em) { .medium-margin-collapse { margin-right: 0; - margin-left: 0; } - .medium-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; } } - + margin-left: 0; + } + .medium-margin-collapse > .cell { + margin-right: 0; + margin-left: 0; + } +} @media print, screen and (min-width: 40em) { .medium-margin-collapse > .small-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .medium-margin-collapse > .small-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .medium-margin-collapse > .small-3 { - width: 25%; } + width: 25%; + } .medium-margin-collapse > .small-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .medium-margin-collapse > .small-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .medium-margin-collapse > .small-6 { - width: 50%; } + width: 50%; + } .medium-margin-collapse > .small-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .medium-margin-collapse > .small-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .medium-margin-collapse > .small-9 { - width: 75%; } + width: 75%; + } .medium-margin-collapse > .small-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .medium-margin-collapse > .small-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .medium-margin-collapse > .small-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 40em) { .medium-margin-collapse > .medium-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .medium-margin-collapse > .medium-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .medium-margin-collapse > .medium-3 { - width: 25%; } + width: 25%; + } .medium-margin-collapse > .medium-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .medium-margin-collapse > .medium-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .medium-margin-collapse > .medium-6 { - width: 50%; } + width: 50%; + } .medium-margin-collapse > .medium-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .medium-margin-collapse > .medium-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .medium-margin-collapse > .medium-9 { - width: 75%; } + width: 75%; + } .medium-margin-collapse > .medium-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .medium-margin-collapse > .medium-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .medium-margin-collapse > .medium-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 64em) { .medium-margin-collapse > .large-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .medium-margin-collapse > .large-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .medium-margin-collapse > .large-3 { - width: 25%; } + width: 25%; + } .medium-margin-collapse > .large-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .medium-margin-collapse > .large-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .medium-margin-collapse > .large-6 { - width: 50%; } + width: 50%; + } .medium-margin-collapse > .large-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .medium-margin-collapse > .large-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .medium-margin-collapse > .large-9 { - width: 75%; } + width: 75%; + } .medium-margin-collapse > .large-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .medium-margin-collapse > .large-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .medium-margin-collapse > .large-12 { - width: 100%; } } + width: 100%; + } +} @media print, screen and (min-width: 40em) { .medium-padding-collapse { margin-right: 0; - margin-left: 0; } - .medium-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; } } + margin-left: 0; + } + .medium-padding-collapse > .cell { + padding-right: 0; + padding-left: 0; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse { margin-right: 0; - margin-left: 0; } - .large-margin-collapse > .cell { - margin-right: 0; - margin-left: 0; } } - + margin-left: 0; + } + .large-margin-collapse > .cell { + margin-right: 0; + margin-left: 0; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse > .small-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .large-margin-collapse > .small-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .large-margin-collapse > .small-3 { - width: 25%; } + width: 25%; + } .large-margin-collapse > .small-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .large-margin-collapse > .small-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .large-margin-collapse > .small-6 { - width: 50%; } + width: 50%; + } .large-margin-collapse > .small-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .large-margin-collapse > .small-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .large-margin-collapse > .small-9 { - width: 75%; } + width: 75%; + } .large-margin-collapse > .small-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .large-margin-collapse > .small-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .large-margin-collapse > .small-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse > .medium-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .large-margin-collapse > .medium-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .large-margin-collapse > .medium-3 { - width: 25%; } + width: 25%; + } .large-margin-collapse > .medium-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .large-margin-collapse > .medium-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .large-margin-collapse > .medium-6 { - width: 50%; } + width: 50%; + } .large-margin-collapse > .medium-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .large-margin-collapse > .medium-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .large-margin-collapse > .medium-9 { - width: 75%; } + width: 75%; + } .large-margin-collapse > .medium-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .large-margin-collapse > .medium-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .large-margin-collapse > .medium-12 { - width: 100%; } } - + width: 100%; + } +} @media print, screen and (min-width: 64em) { .large-margin-collapse > .large-1 { - width: 8.33333%; } + width: 8.3333333333%; + } .large-margin-collapse > .large-2 { - width: 16.66667%; } + width: 16.6666666667%; + } .large-margin-collapse > .large-3 { - width: 25%; } + width: 25%; + } .large-margin-collapse > .large-4 { - width: 33.33333%; } + width: 33.3333333333%; + } .large-margin-collapse > .large-5 { - width: 41.66667%; } + width: 41.6666666667%; + } .large-margin-collapse > .large-6 { - width: 50%; } + width: 50%; + } .large-margin-collapse > .large-7 { - width: 58.33333%; } + width: 58.3333333333%; + } .large-margin-collapse > .large-8 { - width: 66.66667%; } + width: 66.6666666667%; + } .large-margin-collapse > .large-9 { - width: 75%; } + width: 75%; + } .large-margin-collapse > .large-10 { - width: 83.33333%; } + width: 83.3333333333%; + } .large-margin-collapse > .large-11 { - width: 91.66667%; } + width: 91.6666666667%; + } .large-margin-collapse > .large-12 { - width: 100%; } } + width: 100%; + } +} @media print, screen and (min-width: 64em) { .large-padding-collapse { margin-right: 0; - margin-left: 0; } - .large-padding-collapse > .cell { - padding-right: 0; - padding-left: 0; } } + margin-left: 0; + } + .large-padding-collapse > .cell { + padding-right: 0; + padding-left: 0; + } +} .small-offset-0 { - margin-left: 0%; } + margin-left: 0%; +} .grid-margin-x > .small-offset-0 { - margin-left: calc(0% + 1.25rem / 2); } + margin-left: calc(0% + 1.25rem / 2); +} .small-offset-1 { - margin-left: 8.33333%; } + margin-left: 8.3333333333%; +} .grid-margin-x > .small-offset-1 { - margin-left: calc(8.33333% + 1.25rem / 2); } + margin-left: calc(8.3333333333% + 1.25rem / 2); +} .small-offset-2 { - margin-left: 16.66667%; } + margin-left: 16.6666666667%; +} .grid-margin-x > .small-offset-2 { - margin-left: calc(16.66667% + 1.25rem / 2); } + margin-left: calc(16.6666666667% + 1.25rem / 2); +} .small-offset-3 { - margin-left: 25%; } + margin-left: 25%; +} .grid-margin-x > .small-offset-3 { - margin-left: calc(25% + 1.25rem / 2); } + margin-left: calc(25% + 1.25rem / 2); +} .small-offset-4 { - margin-left: 33.33333%; } + margin-left: 33.3333333333%; +} .grid-margin-x > .small-offset-4 { - margin-left: calc(33.33333% + 1.25rem / 2); } + margin-left: calc(33.3333333333% + 1.25rem / 2); +} .small-offset-5 { - margin-left: 41.66667%; } + margin-left: 41.6666666667%; +} .grid-margin-x > .small-offset-5 { - margin-left: calc(41.66667% + 1.25rem / 2); } + margin-left: calc(41.6666666667% + 1.25rem / 2); +} .small-offset-6 { - margin-left: 50%; } + margin-left: 50%; +} .grid-margin-x > .small-offset-6 { - margin-left: calc(50% + 1.25rem / 2); } + margin-left: calc(50% + 1.25rem / 2); +} .small-offset-7 { - margin-left: 58.33333%; } + margin-left: 58.3333333333%; +} .grid-margin-x > .small-offset-7 { - margin-left: calc(58.33333% + 1.25rem / 2); } + margin-left: calc(58.3333333333% + 1.25rem / 2); +} .small-offset-8 { - margin-left: 66.66667%; } + margin-left: 66.6666666667%; +} .grid-margin-x > .small-offset-8 { - margin-left: calc(66.66667% + 1.25rem / 2); } + margin-left: calc(66.6666666667% + 1.25rem / 2); +} .small-offset-9 { - margin-left: 75%; } + margin-left: 75%; +} .grid-margin-x > .small-offset-9 { - margin-left: calc(75% + 1.25rem / 2); } + margin-left: calc(75% + 1.25rem / 2); +} .small-offset-10 { - margin-left: 83.33333%; } + margin-left: 83.3333333333%; +} .grid-margin-x > .small-offset-10 { - margin-left: calc(83.33333% + 1.25rem / 2); } + margin-left: calc(83.3333333333% + 1.25rem / 2); +} .small-offset-11 { - margin-left: 91.66667%; } + margin-left: 91.6666666667%; +} .grid-margin-x > .small-offset-11 { - margin-left: calc(91.66667% + 1.25rem / 2); } + margin-left: calc(91.6666666667% + 1.25rem / 2); +} + +@media print, screen and (min-width: 40em) { + .medium-offset-0 { + margin-left: 0%; + } + + .grid-margin-x > .medium-offset-0 { + margin-left: calc(0% + 1.875rem / 2); + } + + .medium-offset-1 { + margin-left: 8.3333333333%; + } + + .grid-margin-x > .medium-offset-1 { + margin-left: calc(8.3333333333% + 1.875rem / 2); + } + + .medium-offset-2 { + margin-left: 16.6666666667%; + } + + .grid-margin-x > .medium-offset-2 { + margin-left: calc(16.6666666667% + 1.875rem / 2); + } + + .medium-offset-3 { + margin-left: 25%; + } + + .grid-margin-x > .medium-offset-3 { + margin-left: calc(25% + 1.875rem / 2); + } + + .medium-offset-4 { + margin-left: 33.3333333333%; + } + + .grid-margin-x > .medium-offset-4 { + margin-left: calc(33.3333333333% + 1.875rem / 2); + } + + .medium-offset-5 { + margin-left: 41.6666666667%; + } + + .grid-margin-x > .medium-offset-5 { + margin-left: calc(41.6666666667% + 1.875rem / 2); + } + + .medium-offset-6 { + margin-left: 50%; + } + + .grid-margin-x > .medium-offset-6 { + margin-left: calc(50% + 1.875rem / 2); + } + + .medium-offset-7 { + margin-left: 58.3333333333%; + } + + .grid-margin-x > .medium-offset-7 { + margin-left: calc(58.3333333333% + 1.875rem / 2); + } + + .medium-offset-8 { + margin-left: 66.6666666667%; + } + + .grid-margin-x > .medium-offset-8 { + margin-left: calc(66.6666666667% + 1.875rem / 2); + } + + .medium-offset-9 { + margin-left: 75%; + } + + .grid-margin-x > .medium-offset-9 { + margin-left: calc(75% + 1.875rem / 2); + } + + .medium-offset-10 { + margin-left: 83.3333333333%; + } + + .grid-margin-x > .medium-offset-10 { + margin-left: calc(83.3333333333% + 1.875rem / 2); + } + + .medium-offset-11 { + margin-left: 91.6666666667%; + } + + .grid-margin-x > .medium-offset-11 { + margin-left: calc(91.6666666667% + 1.875rem / 2); + } +} +@media print, screen and (min-width: 64em) { + .large-offset-0 { + margin-left: 0%; + } + + .grid-margin-x > .large-offset-0 { + margin-left: calc(0% + 1.875rem / 2); + } + + .large-offset-1 { + margin-left: 8.3333333333%; + } + + .grid-margin-x > .large-offset-1 { + margin-left: calc(8.3333333333% + 1.875rem / 2); + } + + .large-offset-2 { + margin-left: 16.6666666667%; + } + + .grid-margin-x > .large-offset-2 { + margin-left: calc(16.6666666667% + 1.875rem / 2); + } + .large-offset-3 { + margin-left: 25%; + } + + .grid-margin-x > .large-offset-3 { + margin-left: calc(25% + 1.875rem / 2); + } + + .large-offset-4 { + margin-left: 33.3333333333%; + } + + .grid-margin-x > .large-offset-4 { + margin-left: calc(33.3333333333% + 1.875rem / 2); + } + + .large-offset-5 { + margin-left: 41.6666666667%; + } + + .grid-margin-x > .large-offset-5 { + margin-left: calc(41.6666666667% + 1.875rem / 2); + } + + .large-offset-6 { + margin-left: 50%; + } + + .grid-margin-x > .large-offset-6 { + margin-left: calc(50% + 1.875rem / 2); + } + + .large-offset-7 { + margin-left: 58.3333333333%; + } + + .grid-margin-x > .large-offset-7 { + margin-left: calc(58.3333333333% + 1.875rem / 2); + } + + .large-offset-8 { + margin-left: 66.6666666667%; + } + + .grid-margin-x > .large-offset-8 { + margin-left: calc(66.6666666667% + 1.875rem / 2); + } + + .large-offset-9 { + margin-left: 75%; + } + + .grid-margin-x > .large-offset-9 { + margin-left: calc(75% + 1.875rem / 2); + } + + .large-offset-10 { + margin-left: 83.3333333333%; + } + + .grid-margin-x > .large-offset-10 { + margin-left: calc(83.3333333333% + 1.875rem / 2); + } + + .large-offset-11 { + margin-left: 91.6666666667%; + } + + .grid-margin-x > .large-offset-11 { + margin-left: calc(91.6666666667% + 1.875rem / 2); + } +} +.grid-y { + display: flex; + flex-flow: column nowrap; +} +.grid-y > .cell { + height: auto; + max-height: none; +} +.grid-y > .auto { + height: auto; +} +.grid-y > .shrink { + height: auto; +} +.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { + flex-basis: auto; +} +@media print, screen and (min-width: 40em) { + .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { + flex-basis: auto; + } +} +@media print, screen and (min-width: 64em) { + .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { + flex-basis: auto; + } +} +.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 { + flex: 0 0 auto; +} +.grid-y > .small-1 { + height: 8.3333333333%; +} +.grid-y > .small-2 { + height: 16.6666666667%; +} +.grid-y > .small-3 { + height: 25%; +} +.grid-y > .small-4 { + height: 33.3333333333%; +} +.grid-y > .small-5 { + height: 41.6666666667%; +} +.grid-y > .small-6 { + height: 50%; +} +.grid-y > .small-7 { + height: 58.3333333333%; +} +.grid-y > .small-8 { + height: 66.6666666667%; +} +.grid-y > .small-9 { + height: 75%; +} +.grid-y > .small-10 { + height: 83.3333333333%; +} +.grid-y > .small-11 { + height: 91.6666666667%; +} +.grid-y > .small-12 { + height: 100%; +} @media print, screen and (min-width: 40em) { - .medium-offset-0 { - margin-left: 0%; } - .grid-margin-x > .medium-offset-0 { - margin-left: calc(0% + 1.875rem / 2); } - .medium-offset-1 { - margin-left: 8.33333%; } - .grid-margin-x > .medium-offset-1 { - margin-left: calc(8.33333% + 1.875rem / 2); } - .medium-offset-2 { - margin-left: 16.66667%; } - .grid-margin-x > .medium-offset-2 { - margin-left: calc(16.66667% + 1.875rem / 2); } - .medium-offset-3 { - margin-left: 25%; } - .grid-margin-x > .medium-offset-3 { - margin-left: calc(25% + 1.875rem / 2); } - .medium-offset-4 { - margin-left: 33.33333%; } - .grid-margin-x > .medium-offset-4 { - margin-left: calc(33.33333% + 1.875rem / 2); } - .medium-offset-5 { - margin-left: 41.66667%; } - .grid-margin-x > .medium-offset-5 { - margin-left: calc(41.66667% + 1.875rem / 2); } - .medium-offset-6 { - margin-left: 50%; } - .grid-margin-x > .medium-offset-6 { - margin-left: calc(50% + 1.875rem / 2); } - .medium-offset-7 { - margin-left: 58.33333%; } - .grid-margin-x > .medium-offset-7 { - margin-left: calc(58.33333% + 1.875rem / 2); } - .medium-offset-8 { - margin-left: 66.66667%; } - .grid-margin-x > .medium-offset-8 { - margin-left: calc(66.66667% + 1.875rem / 2); } - .medium-offset-9 { - margin-left: 75%; } - .grid-margin-x > .medium-offset-9 { - margin-left: calc(75% + 1.875rem / 2); } - .medium-offset-10 { - margin-left: 83.33333%; } - .grid-margin-x > .medium-offset-10 { - margin-left: calc(83.33333% + 1.875rem / 2); } - .medium-offset-11 { - margin-left: 91.66667%; } - .grid-margin-x > .medium-offset-11 { - margin-left: calc(91.66667% + 1.875rem / 2); } } - + .grid-y > .medium-auto { + flex: 1 1 0; + height: auto; + } + .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink { + flex: 0 0 auto; + } + .grid-y > .medium-shrink { + height: auto; + } + .grid-y > .medium-1 { + height: 8.3333333333%; + } + .grid-y > .medium-2 { + height: 16.6666666667%; + } + .grid-y > .medium-3 { + height: 25%; + } + .grid-y > .medium-4 { + height: 33.3333333333%; + } + .grid-y > .medium-5 { + height: 41.6666666667%; + } + .grid-y > .medium-6 { + height: 50%; + } + .grid-y > .medium-7 { + height: 58.3333333333%; + } + .grid-y > .medium-8 { + height: 66.6666666667%; + } + .grid-y > .medium-9 { + height: 75%; + } + .grid-y > .medium-10 { + height: 83.3333333333%; + } + .grid-y > .medium-11 { + height: 91.6666666667%; + } + .grid-y > .medium-12 { + height: 100%; + } +} @media print, screen and (min-width: 64em) { - .large-offset-0 { - margin-left: 0%; } - .grid-margin-x > .large-offset-0 { - margin-left: calc(0% + 1.875rem / 2); } - .large-offset-1 { - margin-left: 8.33333%; } - .grid-margin-x > .large-offset-1 { - margin-left: calc(8.33333% + 1.875rem / 2); } - .large-offset-2 { - margin-left: 16.66667%; } - .grid-margin-x > .large-offset-2 { - margin-left: calc(16.66667% + 1.875rem / 2); } - .large-offset-3 { - margin-left: 25%; } - .grid-margin-x > .large-offset-3 { - margin-left: calc(25% + 1.875rem / 2); } - .large-offset-4 { - margin-left: 33.33333%; } - .grid-margin-x > .large-offset-4 { - margin-left: calc(33.33333% + 1.875rem / 2); } - .large-offset-5 { - margin-left: 41.66667%; } - .grid-margin-x > .large-offset-5 { - margin-left: calc(41.66667% + 1.875rem / 2); } - .large-offset-6 { - margin-left: 50%; } - .grid-margin-x > .large-offset-6 { - margin-left: calc(50% + 1.875rem / 2); } - .large-offset-7 { - margin-left: 58.33333%; } - .grid-margin-x > .large-offset-7 { - margin-left: calc(58.33333% + 1.875rem / 2); } - .large-offset-8 { - margin-left: 66.66667%; } - .grid-margin-x > .large-offset-8 { - margin-left: calc(66.66667% + 1.875rem / 2); } - .large-offset-9 { - margin-left: 75%; } - .grid-margin-x > .large-offset-9 { - margin-left: calc(75% + 1.875rem / 2); } - .large-offset-10 { - margin-left: 83.33333%; } - .grid-margin-x > .large-offset-10 { - margin-left: calc(83.33333% + 1.875rem / 2); } - .large-offset-11 { - margin-left: 91.66667%; } - .grid-margin-x > .large-offset-11 { - margin-left: calc(91.66667% + 1.875rem / 2); } } - -.grid-y { - display: flex; - flex-flow: column nowrap; } - .grid-y > .cell { + .grid-y > .large-auto { + flex: 1 1 0; + height: auto; + } + .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink { + flex: 0 0 auto; + } + .grid-y > .large-shrink { height: auto; - max-height: none; } - .grid-y > .auto { - height: auto; } - .grid-y > .shrink { - height: auto; } - .grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { - flex-basis: auto; } - @media print, screen and (min-width: 40em) { - .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { - flex-basis: auto; } } - @media print, screen and (min-width: 64em) { - .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { - flex-basis: auto; } } - .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { - flex: 0 0 auto; } - .grid-y > .small-1 { - height: 8.33333%; } - .grid-y > .small-2 { - height: 16.66667%; } - .grid-y > .small-3 { - height: 25%; } - .grid-y > .small-4 { - height: 33.33333%; } - .grid-y > .small-5 { - height: 41.66667%; } - .grid-y > .small-6 { - height: 50%; } - .grid-y > .small-7 { - height: 58.33333%; } - .grid-y > .small-8 { - height: 66.66667%; } - .grid-y > .small-9 { - height: 75%; } - .grid-y > .small-10 { - height: 83.33333%; } - .grid-y > .small-11 { - height: 91.66667%; } - .grid-y > .small-12 { - height: 100%; } - @media print, screen and (min-width: 40em) { - .grid-y > .medium-auto { - flex: 1 1 0; - height: auto; } - .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { - flex: 0 0 auto; } - .grid-y > .medium-shrink { - height: auto; } - .grid-y > .medium-1 { - height: 8.33333%; } - .grid-y > .medium-2 { - height: 16.66667%; } - .grid-y > .medium-3 { - height: 25%; } - .grid-y > .medium-4 { - height: 33.33333%; } - .grid-y > .medium-5 { - height: 41.66667%; } - .grid-y > .medium-6 { - height: 50%; } - .grid-y > .medium-7 { - height: 58.33333%; } - .grid-y > .medium-8 { - height: 66.66667%; } - .grid-y > .medium-9 { - height: 75%; } - .grid-y > .medium-10 { - height: 83.33333%; } - .grid-y > .medium-11 { - height: 91.66667%; } - .grid-y > .medium-12 { - height: 100%; } } - @media print, screen and (min-width: 64em) { - .grid-y > .large-auto { - flex: 1 1 0; - height: auto; } - .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { - flex: 0 0 auto; } - .grid-y > .large-shrink { - height: auto; } - .grid-y > .large-1 { - height: 8.33333%; } - .grid-y > .large-2 { - height: 16.66667%; } - .grid-y > .large-3 { - height: 25%; } - .grid-y > .large-4 { - height: 33.33333%; } - .grid-y > .large-5 { - height: 41.66667%; } - .grid-y > .large-6 { - height: 50%; } - .grid-y > .large-7 { - height: 58.33333%; } - .grid-y > .large-8 { - height: 66.66667%; } - .grid-y > .large-9 { - height: 75%; } - .grid-y > .large-10 { - height: 83.33333%; } - .grid-y > .large-11 { - height: 91.66667%; } - .grid-y > .large-12 { - height: 100%; } } + } + .grid-y > .large-1 { + height: 8.3333333333%; + } + .grid-y > .large-2 { + height: 16.6666666667%; + } + .grid-y > .large-3 { + height: 25%; + } + .grid-y > .large-4 { + height: 33.3333333333%; + } + .grid-y > .large-5 { + height: 41.6666666667%; + } + .grid-y > .large-6 { + height: 50%; + } + .grid-y > .large-7 { + height: 58.3333333333%; + } + .grid-y > .large-8 { + height: 66.6666666667%; + } + .grid-y > .large-9 { + height: 75%; + } + .grid-y > .large-10 { + height: 83.3333333333%; + } + .grid-y > .large-11 { + height: 91.6666666667%; + } + .grid-y > .large-12 { + height: 100%; + } +} .grid-padding-y .grid-padding-y { margin-top: -0.625rem; - margin-bottom: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-y .grid-padding-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; } } - + margin-bottom: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-y .grid-padding-y { + margin-top: -0.9375rem; + margin-bottom: -0.9375rem; + } +} .grid-padding-y > .cell { padding-top: 0.625rem; - padding-bottom: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-padding-y > .cell { - padding-top: 0.9375rem; - padding-bottom: 0.9375rem; } } + padding-bottom: 0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-padding-y > .cell { + padding-top: 0.9375rem; + padding-bottom: 0.9375rem; + } +} .grid-margin-y { margin-top: -0.625rem; - margin-bottom: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; } } + margin-bottom: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-margin-y { + margin-top: -0.9375rem; + margin-bottom: -0.9375rem; + } +} +.grid-margin-y > .cell { + height: calc(100% - 1.25rem); + margin-top: 0.625rem; + margin-bottom: 0.625rem; +} +@media print, screen and (min-width: 40em) { .grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; } } + height: calc(100% - 1.875rem); + margin-top: 0.9375rem; + margin-bottom: 0.9375rem; + } +} +.grid-margin-y > .auto { + height: auto; +} +.grid-margin-y > .shrink { + height: auto; +} +.grid-margin-y > .small-1 { + height: calc(8.3333333333% - 1.25rem); +} +.grid-margin-y > .small-2 { + height: calc(16.6666666667% - 1.25rem); +} +.grid-margin-y > .small-3 { + height: calc(25% - 1.25rem); +} +.grid-margin-y > .small-4 { + height: calc(33.3333333333% - 1.25rem); +} +.grid-margin-y > .small-5 { + height: calc(41.6666666667% - 1.25rem); +} +.grid-margin-y > .small-6 { + height: calc(50% - 1.25rem); +} +.grid-margin-y > .small-7 { + height: calc(58.3333333333% - 1.25rem); +} +.grid-margin-y > .small-8 { + height: calc(66.6666666667% - 1.25rem); +} +.grid-margin-y > .small-9 { + height: calc(75% - 1.25rem); +} +.grid-margin-y > .small-10 { + height: calc(83.3333333333% - 1.25rem); +} +.grid-margin-y > .small-11 { + height: calc(91.6666666667% - 1.25rem); +} +.grid-margin-y > .small-12 { + height: calc(100% - 1.25rem); +} +@media print, screen and (min-width: 40em) { .grid-margin-y > .auto { - height: auto; } + height: auto; + } .grid-margin-y > .shrink { - height: auto; } + height: auto; + } .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.25rem); } + height: calc(8.3333333333% - 1.875rem); + } .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.25rem); } + height: calc(16.6666666667% - 1.875rem); + } .grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); } + height: calc(25% - 1.875rem); + } .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.25rem); } + height: calc(33.3333333333% - 1.875rem); + } .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.25rem); } + height: calc(41.6666666667% - 1.875rem); + } .grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); } + height: calc(50% - 1.875rem); + } .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.25rem); } + height: calc(58.3333333333% - 1.875rem); + } .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.25rem); } + height: calc(66.6666666667% - 1.875rem); + } .grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); } + height: calc(75% - 1.875rem); + } .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.25rem); } + height: calc(83.3333333333% - 1.875rem); + } .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.25rem); } + height: calc(91.6666666667% - 1.875rem); + } .grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; } - .grid-margin-y > .shrink { - height: auto; } - .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); } - .grid-margin-y > .medium-auto { - height: auto; } - .grid-margin-y > .medium-shrink { - height: auto; } - .grid-margin-y > .medium-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .medium-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .medium-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .medium-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .medium-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .medium-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .medium-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .medium-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; } - .grid-margin-y > .large-shrink { - height: auto; } - .grid-margin-y > .large-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .large-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .large-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .large-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .large-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .large-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .large-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .large-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); } } + height: calc(100% - 1.875rem); + } + .grid-margin-y > .medium-auto { + height: auto; + } + .grid-margin-y > .medium-shrink { + height: auto; + } + .grid-margin-y > .medium-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .medium-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .medium-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .medium-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-12 { + height: calc(100% - 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-margin-y > .large-auto { + height: auto; + } + .grid-margin-y > .large-shrink { + height: auto; + } + .grid-margin-y > .large-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .large-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .large-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .large-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .large-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .large-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .large-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .large-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .large-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .large-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .large-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .large-12 { + height: calc(100% - 1.875rem); + } +} .grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; - width: 100vw; } + width: 100vw; +} .cell .grid-frame { - width: 100%; } + width: 100%; +} .cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; +} .cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; +} .cell-block-container { display: flex; flex-direction: column; - max-height: 100%; } - .cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; } + max-height: 100%; +} +.cell-block-container > .grid-x { + max-height: 100%; + flex-wrap: nowrap; +} @media print, screen and (min-width: 40em) { .medium-grid-frame { @@ -264650,64 +200660,84 @@ code, .code-inline { position: relative; flex-wrap: nowrap; align-items: stretch; - width: 100vw; } + width: 100vw; + } + .cell .medium-grid-frame { - width: 100%; } + width: 100%; + } + .medium-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .medium-cell-block-container { display: flex; flex-direction: column; - max-height: 100%; } - .medium-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; } + max-height: 100%; + } + .medium-cell-block-container > .grid-x { + max-height: 100%; + flex-wrap: nowrap; + } + .medium-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } } - + -ms-overflow-style: -ms-autohiding-scrollbar; + } +} @media print, screen and (min-width: 64em) { .large-grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; - width: 100vw; } + width: 100vw; + } + .cell .large-grid-frame { - width: 100%; } + width: 100%; + } + .large-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .large-cell-block-container { display: flex; flex-direction: column; - max-height: 100%; } - .large-cell-block-container > .grid-x { - max-height: 100%; - flex-wrap: nowrap; } + max-height: 100%; + } + .large-cell-block-container > .grid-x { + max-height: 100%; + flex-wrap: nowrap; + } + .large-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; } } - + -ms-overflow-style: -ms-autohiding-scrollbar; + } +} .grid-y.grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; - width: auto; } - + width: auto; +} @media print, screen and (min-width: 40em) { .grid-y.medium-grid-frame { overflow: hidden; @@ -264715,8 +200745,9 @@ code, .code-inline { flex-wrap: nowrap; align-items: stretch; height: 100vh; - width: auto; } } - + width: auto; + } +} @media print, screen and (min-width: 64em) { .grid-y.large-grid-frame { overflow: hidden; @@ -264724,510 +200755,708 @@ code, .code-inline { flex-wrap: nowrap; align-items: stretch; height: 100vh; - width: auto; } } + width: auto; + } +} .cell .grid-y.grid-frame { - height: 100%; } - + height: 100%; +} @media print, screen and (min-width: 40em) { .cell .grid-y.medium-grid-frame { - height: 100%; } } - + height: 100%; + } +} @media print, screen and (min-width: 64em) { .cell .grid-y.large-grid-frame { - height: 100%; } } + height: 100%; + } +} .grid-margin-y { margin-top: -0.625rem; - margin-bottom: -0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y { - margin-top: -0.9375rem; - margin-bottom: -0.9375rem; } } + margin-bottom: -0.625rem; +} +@media print, screen and (min-width: 40em) { + .grid-margin-y { + margin-top: -0.9375rem; + margin-bottom: -0.9375rem; + } +} +.grid-margin-y > .cell { + height: calc(100% - 1.25rem); + margin-top: 0.625rem; + margin-bottom: 0.625rem; +} +@media print, screen and (min-width: 40em) { .grid-margin-y > .cell { - height: calc(100% - 1.25rem); - margin-top: 0.625rem; - margin-bottom: 0.625rem; } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .cell { - height: calc(100% - 1.875rem); - margin-top: 0.9375rem; - margin-bottom: 0.9375rem; } } + height: calc(100% - 1.875rem); + margin-top: 0.9375rem; + margin-bottom: 0.9375rem; + } +} +.grid-margin-y > .auto { + height: auto; +} +.grid-margin-y > .shrink { + height: auto; +} +.grid-margin-y > .small-1 { + height: calc(8.3333333333% - 1.25rem); +} +.grid-margin-y > .small-2 { + height: calc(16.6666666667% - 1.25rem); +} +.grid-margin-y > .small-3 { + height: calc(25% - 1.25rem); +} +.grid-margin-y > .small-4 { + height: calc(33.3333333333% - 1.25rem); +} +.grid-margin-y > .small-5 { + height: calc(41.6666666667% - 1.25rem); +} +.grid-margin-y > .small-6 { + height: calc(50% - 1.25rem); +} +.grid-margin-y > .small-7 { + height: calc(58.3333333333% - 1.25rem); +} +.grid-margin-y > .small-8 { + height: calc(66.6666666667% - 1.25rem); +} +.grid-margin-y > .small-9 { + height: calc(75% - 1.25rem); +} +.grid-margin-y > .small-10 { + height: calc(83.3333333333% - 1.25rem); +} +.grid-margin-y > .small-11 { + height: calc(91.6666666667% - 1.25rem); +} +.grid-margin-y > .small-12 { + height: calc(100% - 1.25rem); +} +@media print, screen and (min-width: 40em) { .grid-margin-y > .auto { - height: auto; } + height: auto; + } .grid-margin-y > .shrink { - height: auto; } + height: auto; + } .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.25rem); } + height: calc(8.3333333333% - 1.875rem); + } .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.25rem); } + height: calc(16.6666666667% - 1.875rem); + } .grid-margin-y > .small-3 { - height: calc(25% - 1.25rem); } + height: calc(25% - 1.875rem); + } .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.25rem); } + height: calc(33.3333333333% - 1.875rem); + } .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.25rem); } + height: calc(41.6666666667% - 1.875rem); + } .grid-margin-y > .small-6 { - height: calc(50% - 1.25rem); } + height: calc(50% - 1.875rem); + } .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.25rem); } + height: calc(58.3333333333% - 1.875rem); + } .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.25rem); } + height: calc(66.6666666667% - 1.875rem); + } .grid-margin-y > .small-9 { - height: calc(75% - 1.25rem); } + height: calc(75% - 1.875rem); + } .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.25rem); } + height: calc(83.3333333333% - 1.875rem); + } .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.25rem); } + height: calc(91.6666666667% - 1.875rem); + } .grid-margin-y > .small-12 { - height: calc(100% - 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-margin-y > .auto { - height: auto; } - .grid-margin-y > .shrink { - height: auto; } - .grid-margin-y > .small-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .small-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .small-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .small-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .small-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .small-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .small-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .small-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .small-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .small-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .small-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .small-12 { - height: calc(100% - 1.875rem); } - .grid-margin-y > .medium-auto { - height: auto; } - .grid-margin-y > .medium-shrink { - height: auto; } - .grid-margin-y > .medium-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .medium-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .medium-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .medium-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .medium-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .medium-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .medium-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .medium-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .medium-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .medium-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .medium-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .medium-12 { - height: calc(100% - 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-margin-y > .large-auto { - height: auto; } - .grid-margin-y > .large-shrink { - height: auto; } - .grid-margin-y > .large-1 { - height: calc(8.33333% - 1.875rem); } - .grid-margin-y > .large-2 { - height: calc(16.66667% - 1.875rem); } - .grid-margin-y > .large-3 { - height: calc(25% - 1.875rem); } - .grid-margin-y > .large-4 { - height: calc(33.33333% - 1.875rem); } - .grid-margin-y > .large-5 { - height: calc(41.66667% - 1.875rem); } - .grid-margin-y > .large-6 { - height: calc(50% - 1.875rem); } - .grid-margin-y > .large-7 { - height: calc(58.33333% - 1.875rem); } - .grid-margin-y > .large-8 { - height: calc(66.66667% - 1.875rem); } - .grid-margin-y > .large-9 { - height: calc(75% - 1.875rem); } - .grid-margin-y > .large-10 { - height: calc(83.33333% - 1.875rem); } - .grid-margin-y > .large-11 { - height: calc(91.66667% - 1.875rem); } - .grid-margin-y > .large-12 { - height: calc(100% - 1.875rem); } } + height: calc(100% - 1.875rem); + } + .grid-margin-y > .medium-auto { + height: auto; + } + .grid-margin-y > .medium-shrink { + height: auto; + } + .grid-margin-y > .medium-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .medium-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .medium-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .medium-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .medium-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .medium-12 { + height: calc(100% - 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-margin-y > .large-auto { + height: auto; + } + .grid-margin-y > .large-shrink { + height: auto; + } + .grid-margin-y > .large-1 { + height: calc(8.3333333333% - 1.875rem); + } + .grid-margin-y > .large-2 { + height: calc(16.6666666667% - 1.875rem); + } + .grid-margin-y > .large-3 { + height: calc(25% - 1.875rem); + } + .grid-margin-y > .large-4 { + height: calc(33.3333333333% - 1.875rem); + } + .grid-margin-y > .large-5 { + height: calc(41.6666666667% - 1.875rem); + } + .grid-margin-y > .large-6 { + height: calc(50% - 1.875rem); + } + .grid-margin-y > .large-7 { + height: calc(58.3333333333% - 1.875rem); + } + .grid-margin-y > .large-8 { + height: calc(66.6666666667% - 1.875rem); + } + .grid-margin-y > .large-9 { + height: calc(75% - 1.875rem); + } + .grid-margin-y > .large-10 { + height: calc(83.3333333333% - 1.875rem); + } + .grid-margin-y > .large-11 { + height: calc(91.6666666667% - 1.875rem); + } + .grid-margin-y > .large-12 { + height: calc(100% - 1.875rem); + } +} .grid-frame.grid-margin-y { - height: calc(100vh + 1.25rem); } - @media print, screen and (min-width: 40em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); } } - @media print, screen and (min-width: 64em) { - .grid-frame.grid-margin-y { - height: calc(100vh + 1.875rem); } } + height: calc(100vh + 1.25rem); +} +@media print, screen and (min-width: 40em) { + .grid-frame.grid-margin-y { + height: calc(100vh + 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-frame.grid-margin-y { + height: calc(100vh + 1.875rem); + } +} + +@media print, screen and (min-width: 40em) { + .grid-margin-y.medium-grid-frame { + height: calc(100vh + 1.875rem); + } +} +@media print, screen and (min-width: 64em) { + .grid-margin-y.large-grid-frame { + height: calc(100vh + 1.875rem); + } +} +.button { + display: inline-block; + vertical-align: middle; + margin: 0 0 1rem 0; + padding: 0.85em 1em; + border: 1px solid transparent; + border-radius: 0; + transition: background-color 0.25s ease-out, color 0.25s ease-out; + font-family: inherit; + font-size: 0.9rem; + -webkit-appearance: none; + line-height: 1; + text-align: center; + cursor: pointer; +} +[data-whatinput=mouse] .button { + outline: 0; +} +.button.tiny { + font-size: 0.6rem; +} +.button.small { + font-size: 0.75rem; +} +.button.large { + font-size: 1.25rem; +} +.button.expanded { + display: block; + width: 100%; + margin-right: 0; + margin-left: 0; +} +.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus { + background-color: #1779ba; + color: #fefefe; +} +.button:hover, .button:focus { + background-color: #14679e; + color: #fefefe; +} +.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus { + background-color: #1779ba; + color: #fefefe; +} +.button.primary:hover, .button.primary:focus { + background-color: #126195; + color: #fefefe; +} +.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus { + background-color: #767676; + color: #fefefe; +} +.button.secondary:hover, .button.secondary:focus { + background-color: #5e5e5e; + color: #fefefe; +} +.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus { + background-color: #3adb76; + color: #0a0a0a; +} +.button.success:hover, .button.success:focus { + background-color: #22bb5b; + color: #0a0a0a; +} +.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus { + background-color: #ffae00; + color: #0a0a0a; +} +.button.warning:hover, .button.warning:focus { + background-color: #cc8b00; + color: #0a0a0a; +} +.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus { + background-color: #cc4b37; + color: #fefefe; +} +.button.alert:hover, .button.alert:focus { + background-color: #a53b2a; + color: #fefefe; +} +.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus { + background-color: transparent; +} +.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button.hollow:hover, .button.hollow:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button.hollow.primary:hover, .button.hollow.primary:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus { + border: 1px solid #767676; + color: #767676; +} +.button.hollow.secondary:hover, .button.hollow.secondary:focus { + border-color: #3b3b3b; + color: #3b3b3b; +} +.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus { + border: 1px solid #3adb76; + color: #3adb76; +} +.button.hollow.success:hover, .button.hollow.success:focus { + border-color: #157539; + color: #157539; +} +.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus { + border: 1px solid #ffae00; + color: #ffae00; +} +.button.hollow.warning:hover, .button.hollow.warning:focus { + border-color: #805700; + color: #805700; +} +.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus { + border: 1px solid #cc4b37; + color: #cc4b37; +} +.button.hollow.alert:hover, .button.hollow.alert:focus { + border-color: #67251a; + color: #67251a; +} +.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus { + border-color: transparent; + background-color: transparent; +} +.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus { + color: #1779ba; +} +.button.clear:hover, .button.clear:focus { + color: #0c3d5d; +} +.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus { + color: #1779ba; +} +.button.clear.primary:hover, .button.clear.primary:focus { + color: #0c3d5d; +} +.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus { + color: #767676; +} +.button.clear.secondary:hover, .button.clear.secondary:focus { + color: #3b3b3b; +} +.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus { + color: #3adb76; +} +.button.clear.success:hover, .button.clear.success:focus { + color: #157539; +} +.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus { + color: #ffae00; +} +.button.clear.warning:hover, .button.clear.warning:focus { + color: #805700; +} +.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus { + color: #cc4b37; +} +.button.clear.alert:hover, .button.clear.alert:focus { + color: #67251a; +} +.button.disabled, .button[disabled] { + opacity: 0.25; + cursor: not-allowed; +} +.button.dropdown::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.4em; + content: \\"\\"; + border-bottom-width: 0; + border-color: #fefefe transparent transparent; + position: relative; + top: 0.4em; + display: inline-block; + float: right; + margin-left: 1em; +} +.button.dropdown.hollow::after, .button.dropdown.clear::after { + border-top-color: #1779ba; +} +.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after { + border-top-color: #1779ba; +} +.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after { + border-top-color: #767676; +} +.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after { + border-top-color: #3adb76; +} +.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after { + border-top-color: #ffae00; +} +.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after { + border-top-color: #cc4b37; +} +.button.arrow-only::after { + top: -0.1em; + float: none; + margin-left: 0; +} + +a.button:hover, a.button:focus { + text-decoration: none; +} +.button-group { + margin-bottom: 1rem; + display: flex; + flex-wrap: wrap; + align-items: stretch; + flex-grow: 1; +} +.button-group::before, .button-group::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.button-group::after { + clear: both; +} +.button-group::before, .button-group::after { + display: none; +} +.button-group .button { + margin: 0; + margin-right: 1px; + margin-bottom: 1px; + font-size: 0.9rem; + flex: 0 0 auto; +} +.button-group .button:last-child { + margin-right: 0; +} +.button-group.tiny .button { + font-size: 0.6rem; +} +.button-group.small .button { + font-size: 0.75rem; +} +.button-group.large .button { + font-size: 1.25rem; +} +.button-group.expanded .button { + flex: 1 1 0px; +} +.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus { + background-color: #1779ba; + color: #fefefe; +} +.button-group.primary .button:hover, .button-group.primary .button:focus { + background-color: #126195; + color: #fefefe; +} +.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus { + background-color: #767676; + color: #fefefe; +} +.button-group.secondary .button:hover, .button-group.secondary .button:focus { + background-color: #5e5e5e; + color: #fefefe; +} +.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus { + background-color: #3adb76; + color: #0a0a0a; +} +.button-group.success .button:hover, .button-group.success .button:focus { + background-color: #22bb5b; + color: #0a0a0a; +} +.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus { + background-color: #ffae00; + color: #0a0a0a; +} +.button-group.warning .button:hover, .button-group.warning .button:focus { + background-color: #cc8b00; + color: #0a0a0a; +} +.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus { + background-color: #cc4b37; + color: #fefefe; +} +.button-group.alert .button:hover, .button-group.alert .button:focus { + background-color: #a53b2a; + color: #fefefe; +} +.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus { + background-color: transparent; +} +.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button-group.hollow .button:hover, .button-group.hollow .button:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus { + border: 1px solid #1779ba; + color: #1779ba; +} +.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus { + border-color: #0c3d5d; + color: #0c3d5d; +} +.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus { + border: 1px solid #767676; + color: #767676; +} +.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus { + border-color: #3b3b3b; + color: #3b3b3b; +} +.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus { + border: 1px solid #3adb76; + color: #3adb76; +} +.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus { + border-color: #157539; + color: #157539; +} +.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus { + border: 1px solid #ffae00; + color: #ffae00; +} +.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus { + border-color: #805700; + color: #805700; +} +.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus { + border: 1px solid #cc4b37; + color: #cc4b37; +} +.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus { + border-color: #67251a; + color: #67251a; +} +.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus { + border-color: transparent; + background-color: transparent; +} +.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus { + color: #1779ba; +} +.button-group.clear .button:hover, .button-group.clear .button:focus { + color: #0c3d5d; +} +.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus { + color: #1779ba; +} +.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus { + color: #0c3d5d; +} +.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus { + color: #767676; +} +.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus { + color: #3b3b3b; +} +.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus { + color: #3adb76; +} +.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus { + color: #157539; +} +.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus { + color: #ffae00; +} +.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus { + color: #805700; +} +.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus { + color: #cc4b37; +} +.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus { + color: #67251a; +} +.button-group.no-gaps .button { + margin-right: -0.0625rem; +} +.button-group.no-gaps .button + .button { + border-left-color: transparent; +} +.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium { + flex-wrap: wrap; +} +.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { + flex: 0 0 100%; +} +.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { + margin-bottom: 0; +} +.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button { + flex: 1 1 0px; +} @media print, screen and (min-width: 40em) { - .grid-margin-y.medium-grid-frame { - height: calc(100vh + 1.875rem); } } - + .button-group.stacked-for-small .button { + flex: 0 0 auto; + margin-bottom: 0; + } +} @media print, screen and (min-width: 64em) { - .grid-margin-y.large-grid-frame { - height: calc(100vh + 1.875rem); } } - -.button { - display: inline-block; - vertical-align: middle; - margin: 0 0 1rem 0; - padding: 0.85em 1em; - border: 1px solid transparent; - border-radius: 0; - transition: background-color 0.25s ease-out, color 0.25s ease-out; - font-family: inherit; - font-size: 0.9rem; - -webkit-appearance: none; - line-height: 1; - text-align: center; - cursor: pointer; } - [data-whatinput='mouse'] .button { - outline: 0; } - .button.tiny { - font-size: 0.6rem; } - .button.small { - font-size: 0.75rem; } - .button.large { - font-size: 1.25rem; } - .button.expanded { + .button-group.stacked-for-medium .button { + flex: 0 0 auto; + margin-bottom: 0; + } +} +@media print, screen and (max-width: 39.99875em) { + .button-group.stacked-for-small.expanded { + display: block; + } + .button-group.stacked-for-small.expanded .button { display: block; - width: 100%; margin-right: 0; - margin-left: 0; } - .button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; } - .button:hover, .button:focus { - background-color: #14679e; - color: #fefefe; } - .button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus { - background-color: #1779ba; - color: #fefefe; } - .button.primary:hover, .button.primary:focus { - background-color: #126195; - color: #fefefe; } - .button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus { - background-color: #767676; - color: #fefefe; } - .button.secondary:hover, .button.secondary:focus { - background-color: #5e5e5e; - color: #fefefe; } - .button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; } - .button.success:hover, .button.success:focus { - background-color: #22bb5b; - color: #0a0a0a; } - .button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; } - .button.warning:hover, .button.warning:focus { - background-color: #cc8b00; - color: #0a0a0a; } - .button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; } - .button.alert:hover, .button.alert:focus { - background-color: #a53b2a; - color: #fefefe; } - .button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus { - background-color: transparent; } - .button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button.hollow:hover, .button.hollow:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button.hollow.primary:hover, .button.hollow.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; } - .button.hollow.secondary:hover, .button.hollow.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; } - .button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; } - .button.hollow.success:hover, .button.hollow.success:focus { - border-color: #157539; - color: #157539; } - .button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; } - .button.hollow.warning:hover, .button.hollow.warning:focus { - border-color: #805700; - color: #805700; } - .button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; } - .button.hollow.alert:hover, .button.hollow.alert:focus { - border-color: #67251a; - color: #67251a; } - .button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus { - border-color: transparent; - background-color: transparent; } - .button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus { - color: #1779ba; } - .button.clear:hover, .button.clear:focus { - color: #0c3d5d; } - .button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus { - color: #1779ba; } - .button.clear.primary:hover, .button.clear.primary:focus { - color: #0c3d5d; } - .button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus { - color: #767676; } - .button.clear.secondary:hover, .button.clear.secondary:focus { - color: #3b3b3b; } - .button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus { - color: #3adb76; } - .button.clear.success:hover, .button.clear.success:focus { - color: #157539; } - .button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus { - color: #ffae00; } - .button.clear.warning:hover, .button.clear.warning:focus { - color: #805700; } - .button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus { - color: #cc4b37; } - .button.clear.alert:hover, .button.clear.alert:focus { - color: #67251a; } - .button.disabled, .button[disabled] { - opacity: 0.25; - cursor: not-allowed; } - .button.dropdown::after { + } +} +@media print, screen and (max-width: 63.99875em) { + .button-group.stacked-for-medium.expanded { display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.4em; - content: ''; - border-bottom-width: 0; - border-color: #fefefe transparent transparent; - position: relative; - top: 0.4em; - display: inline-block; - float: right; - margin-left: 1em; } - .button.dropdown.hollow::after, .button.dropdown.clear::after { - border-top-color: #1779ba; } - .button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after { - border-top-color: #1779ba; } - .button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after { - border-top-color: #767676; } - .button.dropdown.hollow.success::after, .button.dropdown.clear.success::after { - border-top-color: #3adb76; } - .button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after { - border-top-color: #ffae00; } - .button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after { - border-top-color: #cc4b37; } - .button.arrow-only::after { - top: -0.1em; - float: none; - margin-left: 0; } - -a.button:hover, a.button:focus { - text-decoration: none; } - -.button-group { - margin-bottom: 1rem; - display: flex; - flex-wrap: wrap; - align-items: stretch; - flex-grow: 1; } - .button-group::before, .button-group::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .button-group::after { - clear: both; } - .button-group::before, .button-group::after { - display: none; } - .button-group .button { - margin: 0; - margin-right: 1px; - margin-bottom: 1px; - font-size: 0.9rem; - flex: 0 0 auto; } - .button-group .button:last-child { - margin-right: 0; } - .button-group.tiny .button { - font-size: 0.6rem; } - .button-group.small .button { - font-size: 0.75rem; } - .button-group.large .button { - font-size: 1.25rem; } - .button-group.expanded .button { - flex: 1 1 0px; } - .button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus { - background-color: #1779ba; - color: #fefefe; } - .button-group.primary .button:hover, .button-group.primary .button:focus { - background-color: #126195; - color: #fefefe; } - .button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus { - background-color: #767676; - color: #fefefe; } - .button-group.secondary .button:hover, .button-group.secondary .button:focus { - background-color: #5e5e5e; - color: #fefefe; } - .button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus { - background-color: #3adb76; - color: #0a0a0a; } - .button-group.success .button:hover, .button-group.success .button:focus { - background-color: #22bb5b; - color: #0a0a0a; } - .button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus { - background-color: #ffae00; - color: #0a0a0a; } - .button-group.warning .button:hover, .button-group.warning .button:focus { - background-color: #cc8b00; - color: #0a0a0a; } - .button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus { - background-color: #cc4b37; - color: #fefefe; } - .button-group.alert .button:hover, .button-group.alert .button:focus { - background-color: #a53b2a; - color: #fefefe; } - .button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus { - background-color: transparent; } - .button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button-group.hollow .button:hover, .button-group.hollow .button:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus { - border: 1px solid #1779ba; - color: #1779ba; } - .button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus { - border-color: #0c3d5d; - color: #0c3d5d; } - .button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus { - border: 1px solid #767676; - color: #767676; } - .button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus { - border-color: #3b3b3b; - color: #3b3b3b; } - .button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus { - border: 1px solid #3adb76; - color: #3adb76; } - .button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus { - border-color: #157539; - color: #157539; } - .button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus { - border: 1px solid #ffae00; - color: #ffae00; } - .button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus { - border-color: #805700; - color: #805700; } - .button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus { - border: 1px solid #cc4b37; - color: #cc4b37; } - .button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus { - border-color: #67251a; - color: #67251a; } - .button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus { - border-color: transparent; - background-color: transparent; } - .button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus { - color: #1779ba; } - .button-group.clear .button:hover, .button-group.clear .button:focus { - color: #0c3d5d; } - .button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus { - color: #1779ba; } - .button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus { - color: #0c3d5d; } - .button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus { - color: #767676; } - .button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus { - color: #3b3b3b; } - .button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus { - color: #3adb76; } - .button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus { - color: #157539; } - .button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus { - color: #ffae00; } - .button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus { - color: #805700; } - .button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus { - color: #cc4b37; } - .button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus { - color: #67251a; } - .button-group.no-gaps .button { - margin-right: -0.0625rem; } - .button-group.no-gaps .button + .button { - border-left-color: transparent; } - .button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium { - flex-wrap: wrap; } - .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button { - flex: 0 0 100%; } - .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child { - margin-bottom: 0; } - .button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button { - flex: 1 1 0px; } - @media print, screen and (min-width: 40em) { - .button-group.stacked-for-small .button { - flex: 0 0 auto; - margin-bottom: 0; } } - @media print, screen and (min-width: 64em) { - .button-group.stacked-for-medium .button { - flex: 0 0 auto; - margin-bottom: 0; } } - @media print, screen and (max-width: 39.99875em) { - .button-group.stacked-for-small.expanded { - display: block; } - .button-group.stacked-for-small.expanded .button { - display: block; - margin-right: 0; } } - @media print, screen and (max-width: 63.99875em) { - .button-group.stacked-for-medium.expanded { - display: block; } - .button-group.stacked-for-medium.expanded .button { - display: block; - margin-right: 0; } } + } + .button-group.stacked-for-medium.expanded .button { + display: block; + margin-right: 0; + } +} .close-button { position: absolute; z-index: 10; color: #8a8a8a; - cursor: pointer; } - [data-whatinput='mouse'] .close-button { - outline: 0; } - .close-button:hover, .close-button:focus { - color: #0a0a0a; } - .close-button.small { - right: 0.66rem; - top: 0.33em; - font-size: 1.5em; - line-height: 1; } - .close-button, .close-button.medium { - right: 1rem; - top: 0.5rem; - font-size: 2em; - line-height: 1; } + cursor: pointer; +} +[data-whatinput=mouse] .close-button { + outline: 0; +} +.close-button:hover, .close-button:focus { + color: #0a0a0a; +} +.close-button.small { + right: 0.66rem; + top: 0.33em; + font-size: 1.5em; + line-height: 1; +} + +.close-button.medium, .close-button { + right: 1rem; + top: 0.5rem; + font-size: 2em; + line-height: 1; +} .label { display: inline-block; @@ -265238,45 +201467,58 @@ a.button:hover, a.button:focus { white-space: nowrap; cursor: default; background: #1779ba; - color: #fefefe; } - .label.primary { - background: #1779ba; - color: #fefefe; } - .label.secondary { - background: #767676; - color: #fefefe; } - .label.success { - background: #3adb76; - color: #0a0a0a; } - .label.warning { - background: #ffae00; - color: #0a0a0a; } - .label.alert { - background: #cc4b37; - color: #fefefe; } + color: #fefefe; +} +.label.primary { + background: #1779ba; + color: #fefefe; +} +.label.secondary { + background: #767676; + color: #fefefe; +} +.label.success { + background: #3adb76; + color: #0a0a0a; +} +.label.warning { + background: #ffae00; + color: #0a0a0a; +} +.label.alert { + background: #cc4b37; + color: #fefefe; +} .progress { height: 1rem; margin-bottom: 1rem; border-radius: 0; - background-color: #cacaca; } - .progress.primary .progress-meter { - background-color: #1779ba; } - .progress.secondary .progress-meter { - background-color: #767676; } - .progress.success .progress-meter { - background-color: #3adb76; } - .progress.warning .progress-meter { - background-color: #ffae00; } - .progress.alert .progress-meter { - background-color: #cc4b37; } + background-color: #cacaca; +} +.progress.primary .progress-meter { + background-color: #1779ba; +} +.progress.secondary .progress-meter { + background-color: #767676; +} +.progress.success .progress-meter { + background-color: #3adb76; +} +.progress.warning .progress-meter { + background-color: #ffae00; +} +.progress.alert .progress-meter { + background-color: #cc4b37; +} .progress-meter { position: relative; display: block; width: 0%; height: 100%; - background-color: #1779ba; } + background-color: #1779ba; +} .progress-meter-text { position: absolute; @@ -265287,7 +201529,8 @@ a.button:hover, a.button:focus { font-size: 0.75rem; font-weight: bold; color: #fefefe; - white-space: nowrap; } + white-space: nowrap; +} .slider { position: relative; @@ -265297,7 +201540,8 @@ a.button:hover, a.button:focus { background-color: #e6e6e6; cursor: pointer; user-select: none; - touch-action: none; } + touch-action: none; +} .slider-fill { position: absolute; @@ -265307,9 +201551,11 @@ a.button:hover, a.button:focus { max-width: 100%; height: 0.5rem; background-color: #cacaca; - transition: all 0.2s ease-in-out; } - .slider-fill.is-dragging { - transition: all 0s linear; } + transition: all 0.2s ease-in-out; +} +.slider-fill.is-dragging { + transition: all 0s linear; +} .slider-handle { position: absolute; @@ -265324,37 +201570,45 @@ a.button:hover, a.button:focus { border-radius: 0; background-color: #1779ba; transition: all 0.2s ease-in-out; - touch-action: manipulation; } - [data-whatinput='mouse'] .slider-handle { - outline: 0; } - .slider-handle:hover { - background-color: #14679e; } - .slider-handle.is-dragging { - transition: all 0s linear; - cursor: grabbing; } + touch-action: manipulation; +} +[data-whatinput=mouse] .slider-handle { + outline: 0; +} +.slider-handle:hover { + background-color: #14679e; +} +.slider-handle.is-dragging { + transition: all 0s linear; + cursor: grabbing; +} .slider.disabled, .slider[disabled] { opacity: 0.25; - cursor: not-allowed; } + cursor: not-allowed; +} .slider.vertical { display: inline-block; width: 0.5rem; height: 12.5rem; margin: 0 1.25rem; - transform: scale(1, -1); } - .slider.vertical .slider-fill { - top: 0; - width: 0.5rem; - max-height: 100%; } - .slider.vertical .slider-handle { - position: absolute; - top: 0; - left: 50%; - width: 1.4rem; - height: 1.4rem; - transform: translateX(-50%); } + transform: scale(1, -1); +} +.slider.vertical .slider-fill { + top: 0; + width: 0.5rem; + max-height: 100%; +} +.slider.vertical .slider-handle { + position: absolute; + top: 0; + left: 50%; + width: 1.4rem; + height: 1.4rem; + transform: translateX(-50%); +} .switch { position: relative; @@ -265364,12 +201618,14 @@ a.button:hover, a.button:focus { font-weight: bold; color: #fefefe; user-select: none; - height: 2rem; } + height: 2rem; +} .switch-input { position: absolute; margin-bottom: 0; - opacity: 0; } + opacity: 0; +} .switch-paddle { position: relative; @@ -265381,161 +201637,211 @@ a.button:hover, a.button:focus { transition: all 0.25s ease-out; font-weight: inherit; color: inherit; - cursor: pointer; } - input + .switch-paddle { - margin: 0; } - .switch-paddle::after { - position: absolute; - top: 0.25rem; - left: 0.25rem; - display: block; - width: 1.5rem; - height: 1.5rem; - transform: translate3d(0, 0, 0); - border-radius: 0; - background: #fefefe; - transition: all 0.25s ease-out; - content: ''; } - input:checked ~ .switch-paddle { - background: #1779ba; } - input:checked ~ .switch-paddle::after { - left: 2.25rem; } - input:disabled ~ .switch-paddle { - cursor: not-allowed; - opacity: 0.5; } - [data-whatinput='mouse'] input:focus ~ .switch-paddle { - outline: 0; } - -.switch-active, .switch-inactive { + cursor: pointer; +} +input + .switch-paddle { + margin: 0; +} +.switch-paddle::after { + position: absolute; + top: 0.25rem; + left: 0.25rem; + display: block; + width: 1.5rem; + height: 1.5rem; + transform: translate3d(0, 0, 0); + border-radius: 0; + background: #fefefe; + transition: all 0.25s ease-out; + content: \\"\\"; +} +input:checked ~ .switch-paddle { + background: #1779ba; +} +input:checked ~ .switch-paddle::after { + left: 2.25rem; +} +input:disabled ~ .switch-paddle { + cursor: not-allowed; + opacity: 0.5; +} +[data-whatinput=mouse] input:focus ~ .switch-paddle { + outline: 0; +} + +.switch-inactive, .switch-active { position: absolute; top: 50%; - transform: translateY(-50%); } + transform: translateY(-50%); +} .switch-active { left: 8%; - display: none; } - input:checked + label > .switch-active { - display: block; } + display: none; +} +input:checked + label > .switch-active { + display: block; +} .switch-inactive { - right: 15%; } - input:checked + label > .switch-inactive { - display: none; } + right: 15%; +} +input:checked + label > .switch-inactive { + display: none; +} .switch.tiny { - height: 1.5rem; } - .switch.tiny .switch-paddle { - width: 3rem; - height: 1.5rem; - font-size: 0.625rem; } - .switch.tiny .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1rem; - height: 1rem; } - .switch.tiny input:checked ~ .switch-paddle::after { - left: 1.75rem; } + height: 1.5rem; +} +.switch.tiny .switch-paddle { + width: 3rem; + height: 1.5rem; + font-size: 0.625rem; +} +.switch.tiny .switch-paddle::after { + top: 0.25rem; + left: 0.25rem; + width: 1rem; + height: 1rem; +} +.switch.tiny input:checked ~ .switch-paddle::after { + left: 1.75rem; +} .switch.small { - height: 1.75rem; } - .switch.small .switch-paddle { - width: 3.5rem; - height: 1.75rem; - font-size: 0.75rem; } - .switch.small .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 1.25rem; - height: 1.25rem; } - .switch.small input:checked ~ .switch-paddle::after { - left: 2rem; } + height: 1.75rem; +} +.switch.small .switch-paddle { + width: 3.5rem; + height: 1.75rem; + font-size: 0.75rem; +} +.switch.small .switch-paddle::after { + top: 0.25rem; + left: 0.25rem; + width: 1.25rem; + height: 1.25rem; +} +.switch.small input:checked ~ .switch-paddle::after { + left: 2rem; +} .switch.large { - height: 2.5rem; } - .switch.large .switch-paddle { - width: 5rem; - height: 2.5rem; - font-size: 1rem; } - .switch.large .switch-paddle::after { - top: 0.25rem; - left: 0.25rem; - width: 2rem; - height: 2rem; } - .switch.large input:checked ~ .switch-paddle::after { - left: 2.75rem; } + height: 2.5rem; +} +.switch.large .switch-paddle { + width: 5rem; + height: 2.5rem; + font-size: 1rem; +} +.switch.large .switch-paddle::after { + top: 0.25rem; + left: 0.25rem; + width: 2rem; + height: 2rem; +} +.switch.large input:checked ~ .switch-paddle::after { + left: 2.75rem; +} table { border-collapse: collapse; width: 100%; margin-bottom: 1rem; - border-radius: 0; } - thead, - tbody, - tfoot { - border: 1px solid #f1f1f1; - background-color: #fefefe; } - caption { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; } - thead { - background: #f8f8f8; - color: #0a0a0a; } - tfoot { - background: #f1f1f1; - color: #0a0a0a; } - thead tr, - tfoot tr { - background: transparent; } - thead th, - thead td, - tfoot th, - tfoot td { - padding: 0.5rem 0.625rem 0.625rem; - font-weight: bold; - text-align: left; } - tbody th, - tbody td { - padding: 0.5rem 0.625rem 0.625rem; } - tbody tr:nth-child(even) { - border-bottom: 0; - background-color: #f1f1f1; } - table.unstriped tbody { - background-color: #fefefe; } - table.unstriped tbody tr { - border-bottom: 1px solid #f1f1f1; - background-color: #fefefe; } + border-radius: 0; +} +thead, +tbody, +tfoot { + border: 1px solid #f1f1f1; + background-color: #fefefe; +} + +caption { + padding: 0.5rem 0.625rem 0.625rem; + font-weight: bold; +} + +thead { + background: #f8f8f8; + color: #0a0a0a; +} + +tfoot { + background: #f1f1f1; + color: #0a0a0a; +} + +thead tr, +tfoot tr { + background: transparent; +} +thead th, +thead td, +tfoot th, +tfoot td { + padding: 0.5rem 0.625rem 0.625rem; + font-weight: bold; + text-align: left; +} + +tbody th, +tbody td { + padding: 0.5rem 0.625rem 0.625rem; +} + +tbody tr:nth-child(even) { + border-bottom: 0; + background-color: #f1f1f1; +} + +table.unstriped tbody { + background-color: #fefefe; +} +table.unstriped tbody tr { + border-bottom: 1px solid #f1f1f1; + background-color: #fefefe; +} @media print, screen and (max-width: 63.99875em) { table.stack thead { - display: none; } + display: none; + } table.stack tfoot { - display: none; } + display: none; + } table.stack tr, - table.stack th, - table.stack td { - display: block; } +table.stack th, +table.stack td { + display: block; + } table.stack td { - border-top: 0; } } + border-top: 0; + } +} table.scroll { display: block; width: 100%; - overflow-x: auto; } + overflow-x: auto; +} table.hover thead tr:hover { - background-color: #f3f3f3; } - + background-color: #f3f3f3; +} table.hover tfoot tr:hover { - background-color: #ececec; } - + background-color: #ececec; +} table.hover tbody tr:hover { - background-color: #f9f9f9; } - + background-color: #f9f9f9; +} table.hover:not(.unstriped) tr:nth-of-type(even):hover { - background-color: #ececec; } + background-color: #ececec; +} .table-scroll { - overflow-x: auto; } + overflow-x: auto; +} .badge { display: inline-block; @@ -265545,52 +201851,66 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { font-size: 0.6rem; text-align: center; background: #1779ba; - color: #fefefe; } - .badge.primary { - background: #1779ba; - color: #fefefe; } - .badge.secondary { - background: #767676; - color: #fefefe; } - .badge.success { - background: #3adb76; - color: #0a0a0a; } - .badge.warning { - background: #ffae00; - color: #0a0a0a; } - .badge.alert { - background: #cc4b37; - color: #fefefe; } + color: #fefefe; +} +.badge.primary { + background: #1779ba; + color: #fefefe; +} +.badge.secondary { + background: #767676; + color: #fefefe; +} +.badge.success { + background: #3adb76; + color: #0a0a0a; +} +.badge.warning { + background: #ffae00; + color: #0a0a0a; +} +.badge.alert { + background: #cc4b37; + color: #fefefe; +} .breadcrumbs { margin: 0 0 1rem 0; - list-style: none; } - .breadcrumbs::before, .breadcrumbs::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .breadcrumbs::after { - clear: both; } - .breadcrumbs li { - float: left; - font-size: 0.6875rem; - color: #0a0a0a; - cursor: default; - text-transform: uppercase; } - .breadcrumbs li:not(:last-child)::after { - position: relative; - margin: 0 0.75rem; - opacity: 1; - content: \\"/\\"; - color: #cacaca; } - .breadcrumbs a { - color: #1779ba; } - .breadcrumbs a:hover { - text-decoration: underline; } - .breadcrumbs .disabled { - color: #cacaca; - cursor: not-allowed; } + list-style: none; +} +.breadcrumbs::before, .breadcrumbs::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.breadcrumbs::after { + clear: both; +} +.breadcrumbs li { + float: left; + font-size: 0.6875rem; + color: #0a0a0a; + cursor: default; + text-transform: uppercase; +} +.breadcrumbs li:not(:last-child)::after { + position: relative; + margin: 0 0.75rem; + opacity: 1; + content: \\"/\\"; + color: #cacaca; +} +.breadcrumbs a { + color: #1779ba; +} +.breadcrumbs a:hover { + text-decoration: underline; +} +.breadcrumbs .disabled { + color: #cacaca; + cursor: not-allowed; +} .callout { position: relative; @@ -265599,36 +201919,46 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 1px solid rgba(10, 10, 10, 0.25); border-radius: 0; background-color: white; - color: #0a0a0a; } - .callout > :first-child { - margin-top: 0; } - .callout > :last-child { - margin-bottom: 0; } - .callout.primary { - background-color: #d7ecfa; - color: #0a0a0a; } - .callout.secondary { - background-color: #eaeaea; - color: #0a0a0a; } - .callout.success { - background-color: #e1faea; - color: #0a0a0a; } - .callout.warning { - background-color: #fff3d9; - color: #0a0a0a; } - .callout.alert { - background-color: #f7e4e1; - color: #0a0a0a; } - .callout.small { - padding-top: 0.5rem; - padding-right: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 0.5rem; } - .callout.large { - padding-top: 3rem; - padding-right: 3rem; - padding-bottom: 3rem; - padding-left: 3rem; } + color: #0a0a0a; +} +.callout > :first-child { + margin-top: 0; +} +.callout > :last-child { + margin-bottom: 0; +} +.callout.primary { + background-color: #d7ecfa; + color: #0a0a0a; +} +.callout.secondary { + background-color: #eaeaea; + color: #0a0a0a; +} +.callout.success { + background-color: #e1faea; + color: #0a0a0a; +} +.callout.warning { + background-color: #fff3d9; + color: #0a0a0a; +} +.callout.alert { + background-color: #f7e4e1; + color: #0a0a0a; +} +.callout.small { + padding-top: 0.5rem; + padding-right: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 0.5rem; +} +.callout.large { + padding-top: 3rem; + padding-right: 3rem; + padding-bottom: 3rem; + padding-left: 3rem; +} .card { display: flex; @@ -265640,26 +201970,33 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { background: #fefefe; box-shadow: none; overflow: hidden; - color: #0a0a0a; } - .card > :last-child { - margin-bottom: 0; } + color: #0a0a0a; +} +.card > :last-child { + margin-bottom: 0; +} .card-divider { display: flex; flex: 0 1 auto; padding: 1rem; - background: #e6e6e6; } - .card-divider > :last-child { - margin-bottom: 0; } + background: #e6e6e6; +} +.card-divider > :last-child { + margin-bottom: 0; +} .card-section { flex: 1 0 auto; - padding: 1rem; } - .card-section > :last-child { - margin-bottom: 0; } + padding: 1rem; +} +.card-section > :last-child { + margin-bottom: 0; +} .card-image { - min-height: 1px; } + min-height: 1px; +} .dropdown-pane { position: absolute; @@ -265671,85 +202008,107 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 1px solid #cacaca; border-radius: 0; background-color: #fefefe; - font-size: 1rem; } - .dropdown-pane.is-opening { - display: block; } - .dropdown-pane.is-open { - display: block; - visibility: visible; } + font-size: 1rem; +} +.dropdown-pane.is-opening { + display: block; +} +.dropdown-pane.is-open { + display: block; + visibility: visible; +} .dropdown-pane.tiny { - width: 100px; } + width: 100px; +} .dropdown-pane.small { - width: 200px; } + width: 200px; +} .dropdown-pane.large { - width: 400px; } + width: 400px; +} .pagination { margin-left: 0; - margin-bottom: 1rem; } - .pagination::before, .pagination::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .pagination::after { - clear: both; } + margin-bottom: 1rem; +} +.pagination::before, .pagination::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.pagination::after { + clear: both; +} +.pagination li { + margin-right: 0.0625rem; + border-radius: 0; + font-size: 0.875rem; + display: none; +} +.pagination li:last-child, .pagination li:first-child { + display: inline-block; +} +@media print, screen and (min-width: 40em) { .pagination li { - margin-right: 0.0625rem; - border-radius: 0; - font-size: 0.875rem; - display: none; } - .pagination li:last-child, .pagination li:first-child { - display: inline-block; } - @media print, screen and (min-width: 40em) { - .pagination li { - display: inline-block; } } - .pagination a, - .pagination button { - display: block; - padding: 0.1875rem 0.625rem; - border-radius: 0; - color: #0a0a0a; } - .pagination a:hover, - .pagination button:hover { - background: #e6e6e6; } - .pagination .current { - padding: 0.1875rem 0.625rem; - background: #1779ba; - color: #fefefe; - cursor: default; } - .pagination .disabled { - padding: 0.1875rem 0.625rem; - color: #cacaca; - cursor: not-allowed; } - .pagination .disabled:hover { - background: transparent; } - .pagination .ellipsis::after { - padding: 0.1875rem 0.625rem; - content: '\\\\2026'; - color: #0a0a0a; } + display: inline-block; + } +} +.pagination a, +.pagination button { + display: block; + padding: 0.1875rem 0.625rem; + border-radius: 0; + color: #0a0a0a; +} +.pagination a:hover, +.pagination button:hover { + background: #e6e6e6; +} +.pagination .current { + padding: 0.1875rem 0.625rem; + background: #1779ba; + color: #fefefe; + cursor: default; +} +.pagination .disabled { + padding: 0.1875rem 0.625rem; + color: #cacaca; + cursor: not-allowed; +} +.pagination .disabled:hover { + background: transparent; +} +.pagination .ellipsis::after { + padding: 0.1875rem 0.625rem; + content: \\"…\\"; + color: #0a0a0a; +} .pagination-previous a::before, .pagination-previous.disabled::before { display: inline-block; margin-right: 0.5rem; - content: \\"«\\"; } + content: \\"«\\"; +} .pagination-next a::after, .pagination-next.disabled::after { display: inline-block; margin-left: 0.5rem; - content: \\"»\\"; } + content: \\"»\\"; +} .has-tip { position: relative; display: inline-block; border-bottom: dotted 1px #8a8a8a; font-weight: bold; - cursor: help; } + cursor: help; +} .tooltip { position: absolute; @@ -265760,90 +202119,107 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border-radius: 0; background-color: #0a0a0a; font-size: 80%; - color: #fefefe; } - .tooltip::before { - position: absolute; } - .tooltip.bottom::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-top-width: 0; - border-color: transparent transparent #0a0a0a; - bottom: 100%; } - .tooltip.bottom.align-center::before { - left: 50%; - transform: translateX(-50%); } - .tooltip.top::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-bottom-width: 0; - border-color: #0a0a0a transparent transparent; - top: 100%; - bottom: auto; } - .tooltip.top.align-center::before { - left: 50%; - transform: translateX(-50%); } - .tooltip.left::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-right-width: 0; - border-color: transparent transparent transparent #0a0a0a; - left: 100%; } - .tooltip.left.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); } - .tooltip.right::before { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 0.75rem; - content: ''; - border-left-width: 0; - border-color: transparent #0a0a0a transparent transparent; - right: 100%; - left: auto; } - .tooltip.right.align-center::before { - bottom: auto; - top: 50%; - transform: translateY(-50%); } - .tooltip.align-top::before { - bottom: auto; - top: 10%; } - .tooltip.align-bottom::before { - bottom: 10%; - top: auto; } - .tooltip.align-left::before { - left: 10%; - right: auto; } - .tooltip.align-right::before { - left: auto; - right: 10%; } + color: #fefefe; +} +.tooltip::before { + position: absolute; +} +.tooltip.bottom::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-top-width: 0; + border-color: transparent transparent #0a0a0a; + bottom: 100%; +} +.tooltip.bottom.align-center::before { + left: 50%; + transform: translateX(-50%); +} +.tooltip.top::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-bottom-width: 0; + border-color: #0a0a0a transparent transparent; + top: 100%; + bottom: auto; +} +.tooltip.top.align-center::before { + left: 50%; + transform: translateX(-50%); +} +.tooltip.left::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-right-width: 0; + border-color: transparent transparent transparent #0a0a0a; + left: 100%; +} +.tooltip.left.align-center::before { + bottom: auto; + top: 50%; + transform: translateY(-50%); +} +.tooltip.right::before { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 0.75rem; + content: \\"\\"; + border-left-width: 0; + border-color: transparent #0a0a0a transparent transparent; + right: 100%; + left: auto; +} +.tooltip.right.align-center::before { + bottom: auto; + top: 50%; + transform: translateY(-50%); +} +.tooltip.align-top::before { + bottom: auto; + top: 10%; +} +.tooltip.align-bottom::before { + bottom: 10%; + top: auto; +} +.tooltip.align-left::before { + left: 10%; + right: auto; +} +.tooltip.align-right::before { + left: auto; + right: 10%; +} .accordion { margin-left: 0; background: #fefefe; - list-style-type: none; } - .accordion[disabled] .accordion-title { - cursor: not-allowed; } + list-style-type: none; +} +.accordion[disabled] .accordion-title { + cursor: not-allowed; +} .accordion-item:first-child > :first-child { - border-radius: 0 0 0 0; } - + border-radius: 0 0 0 0; +} .accordion-item:last-child > :last-child { - border-radius: 0 0 0 0; } + border-radius: 0 0 0 0; +} .accordion-title { position: relative; @@ -265853,20 +202229,25 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border-bottom: 0; font-size: 0.75rem; line-height: 1; - color: #1779ba; } - :last-child:not(.is-active) > .accordion-title { - border-bottom: 1px solid #e6e6e6; - border-radius: 0 0 0 0; } - .accordion-title:hover, .accordion-title:focus { - background-color: #e6e6e6; } - .accordion-title::before { - position: absolute; - top: 50%; - right: 1rem; - margin-top: -0.5rem; - content: \\"+\\"; } - .is-active > .accordion-title::before { - content: \\"–\\"; } + color: #1779ba; +} +:last-child:not(.is-active) > .accordion-title { + border-bottom: 1px solid #e6e6e6; + border-radius: 0 0 0 0; +} +.accordion-title:hover, .accordion-title:focus { + background-color: #e6e6e6; +} +.accordion-title::before { + position: absolute; + top: 50%; + right: 1rem; + margin-top: -0.5rem; + content: \\"+\\"; +} +.is-active > .accordion-title::before { + content: \\"–\\"; +} .accordion-content { display: none; @@ -265874,63 +202255,83 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 1px solid #e6e6e6; border-bottom: 0; background-color: #fefefe; - color: #0a0a0a; } - :last-child > .accordion-content:last-child { - border-bottom: 1px solid #e6e6e6; } + color: #0a0a0a; +} +:last-child > .accordion-content:last-child { + border-bottom: 1px solid #e6e6e6; +} .media-object { display: flex; margin-bottom: 1rem; - flex-wrap: nowrap; } - .media-object img { - max-width: none; } - @media print, screen and (max-width: 39.99875em) { - .media-object.stack-for-small { - flex-wrap: wrap; } } + flex-wrap: nowrap; +} +.media-object img { + max-width: none; +} +@media print, screen and (max-width: 39.99875em) { + .media-object.stack-for-small { + flex-wrap: wrap; + } +} .media-object-section { - flex: 0 1 auto; } - .media-object-section:first-child { - padding-right: 1rem; } - .media-object-section:last-child:not(:nth-child(2)) { - padding-left: 1rem; } - .media-object-section > :last-child { - margin-bottom: 0; } - @media print, screen and (max-width: 39.99875em) { - .stack-for-small .media-object-section { - padding: 0; - padding-bottom: 1rem; - flex-basis: 100%; - max-width: 100%; } - .stack-for-small .media-object-section img { - width: 100%; } } - .media-object-section.main-section { - flex: 1 1 0px; } + flex: 0 1 auto; +} +.media-object-section:first-child { + padding-right: 1rem; +} +.media-object-section:last-child:not(:nth-child(2)) { + padding-left: 1rem; +} +.media-object-section > :last-child { + margin-bottom: 0; +} +@media print, screen and (max-width: 39.99875em) { + .stack-for-small .media-object-section { + padding: 0; + padding-bottom: 1rem; + flex-basis: 100%; + max-width: 100%; + } + .stack-for-small .media-object-section img { + width: 100%; + } +} +.media-object-section.main-section { + flex: 1 1 0px; +} .orbit { - position: relative; } + position: relative; +} .orbit-container { position: relative; height: 0; margin: 0; list-style: none; - overflow: hidden; } + overflow: hidden; +} .orbit-slide { width: 100%; - position: absolute; } - .orbit-slide.no-motionui.is-active { - top: 0; - left: 0; } + position: absolute; +} +.orbit-slide.no-motionui.is-active { + top: 0; + left: 0; +} .orbit-figure { - margin: 0; } + margin: 0; +} .orbit-image { width: 100%; max-width: 100%; - margin: 0; } + margin: 0; +} .orbit-caption { position: absolute; @@ -265939,44 +202340,55 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { margin-bottom: 0; padding: 1rem; background-color: rgba(10, 10, 10, 0.5); - color: #fefefe; } + color: #fefefe; +} -.orbit-previous, .orbit-next { +.orbit-next, .orbit-previous { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; padding: 1rem; - color: #fefefe; } - [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next { - outline: 0; } - .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus { - background-color: rgba(10, 10, 10, 0.5); } + color: #fefefe; +} +[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous { + outline: 0; +} +.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus { + background-color: rgba(10, 10, 10, 0.5); +} .orbit-previous { - left: 0; } + left: 0; +} .orbit-next { left: auto; - right: 0; } + right: 0; +} .orbit-bullets { position: relative; margin-top: 0.8rem; margin-bottom: 0.8rem; - text-align: center; } - [data-whatinput='mouse'] .orbit-bullets { - outline: 0; } - .orbit-bullets button { - width: 1.2rem; - height: 1.2rem; - margin: 0.1rem; - border-radius: 50%; - background-color: #cacaca; } - .orbit-bullets button:hover { - background-color: #8a8a8a; } - .orbit-bullets button.is-active { - background-color: #8a8a8a; } + text-align: center; +} +[data-whatinput=mouse] .orbit-bullets { + outline: 0; +} +.orbit-bullets button { + width: 1.2rem; + height: 1.2rem; + margin: 0.1rem; + border-radius: 50%; + background-color: #cacaca; +} +.orbit-bullets button:hover { + background-color: #8a8a8a; +} +.orbit-bullets button.is-active { + background-color: #8a8a8a; +} .responsive-embed, .flex-video { @@ -265984,87 +202396,108 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { height: 0; margin-bottom: 1rem; padding-bottom: 75%; - overflow: hidden; } - .responsive-embed iframe, - .responsive-embed object, - .responsive-embed embed, - .responsive-embed video, - .flex-video iframe, - .flex-video object, - .flex-video embed, - .flex-video video { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; } - .responsive-embed.widescreen, - .flex-video.widescreen { - padding-bottom: 56.25%; } + overflow: hidden; +} +.responsive-embed iframe, +.responsive-embed object, +.responsive-embed embed, +.responsive-embed video, +.flex-video iframe, +.flex-video object, +.flex-video embed, +.flex-video video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.responsive-embed.widescreen, +.flex-video.widescreen { + padding-bottom: 56.25%; +} .tabs { margin: 0; border: 1px solid #e6e6e6; background: #fefefe; - list-style-type: none; } - .tabs::before, .tabs::after { - display: table; - content: ' '; - flex-basis: 0; - order: 1; } - .tabs::after { - clear: both; } + list-style-type: none; +} +.tabs::before, .tabs::after { + display: table; + content: \\" \\"; + flex-basis: 0; + order: 1; +} +.tabs::after { + clear: both; +} .tabs.vertical > li { display: block; float: none; - width: auto; } + width: auto; +} .tabs.simple > li > a { - padding: 0; } - .tabs.simple > li > a:hover { - background: transparent; } + padding: 0; +} +.tabs.simple > li > a:hover { + background: transparent; +} .tabs.primary { - background: #1779ba; } - .tabs.primary > li > a { - color: #fefefe; } - .tabs.primary > li > a:hover, .tabs.primary > li > a:focus { - background: #1673b1; } + background: #1779ba; +} +.tabs.primary > li > a { + color: #fefefe; +} +.tabs.primary > li > a:hover, .tabs.primary > li > a:focus { + background: #1673b1; +} .tabs-title { - float: left; } - .tabs-title > a { - display: block; - padding: 1.25rem 1.5rem; - font-size: 0.75rem; - line-height: 1; - color: #1779ba; } - [data-whatinput='mouse'] .tabs-title > a { - outline: 0; } - .tabs-title > a:hover { - background: #fefefe; - color: #1468a0; } - .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] { - background: #e6e6e6; - color: #1779ba; } + float: left; +} +.tabs-title > a { + display: block; + padding: 1.25rem 1.5rem; + font-size: 0.75rem; + line-height: 1; + color: #1779ba; +} +[data-whatinput=mouse] .tabs-title > a { + outline: 0; +} +.tabs-title > a:hover { + background: #fefefe; + color: #1468a0; +} +.tabs-title > a:focus, .tabs-title > a[aria-selected=true] { + background: #e6e6e6; + color: #1779ba; +} .tabs-content { border: 1px solid #e6e6e6; border-top: 0; background: #fefefe; color: #0a0a0a; - transition: all 0.5s ease; } + transition: all 0.5s ease; +} .tabs-content.vertical { border: 1px solid #e6e6e6; - border-left: 0; } + border-left: 0; +} .tabs-panel { display: none; - padding: 1rem; } - .tabs-panel.is-active { - display: block; } + padding: 1rem; +} +.tabs-panel.is-active { + display: block; +} .thumbnail { display: inline-block; @@ -266073,14 +202506,18 @@ table.hover:not(.unstriped) tr:nth-of-type(even):hover { border: 4px solid #fefefe; border-radius: 0; box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2); - line-height: 0; } + line-height: 0; +} a.thumbnail { - transition: box-shadow 200ms ease-out; } - a.thumbnail:hover, a.thumbnail:focus { - box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); } - a.thumbnail image { - box-shadow: none; } + transition: box-shadow 200ms ease-out; +} +a.thumbnail:hover, a.thumbnail:focus { + box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); +} +a.thumbnail image { + box-shadow: none; +} .menu { padding: 0; @@ -266088,161 +202525,211 @@ a.thumbnail { list-style: none; position: relative; display: flex; - flex-wrap: wrap; } - [data-whatinput='mouse'] .menu li { - outline: 0; } - .menu a, - .menu .button { - line-height: 1; - text-decoration: none; - display: block; - padding: 0.7rem 1rem; } - .menu input, - .menu select, - .menu a, - .menu button { - margin-bottom: 0; } - .menu input { - display: inline-block; } - .menu, .menu.horizontal { - flex-wrap: wrap; - flex-direction: row; } - .menu.vertical { - flex-wrap: nowrap; - flex-direction: column; } - .menu.vertical.icon-top li a img, - .menu.vertical.icon-top li a i, - .menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img, - .menu.vertical.icon-bottom li a i, - .menu.vertical.icon-bottom li a svg { - text-align: left; } - .menu.expanded li { - flex: 1 1 0px; } - .menu.expanded.icon-top li a img, - .menu.expanded.icon-top li a i, - .menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img, - .menu.expanded.icon-bottom li a i, - .menu.expanded.icon-bottom li a svg { - text-align: left; } - .menu.simple { - align-items: center; } - .menu.simple li + li { - margin-left: 1rem; } - .menu.simple a { - padding: 0; } - @media print, screen and (min-width: 40em) { - .menu.medium-horizontal { - flex-wrap: wrap; - flex-direction: row; } - .menu.medium-vertical { - flex-wrap: nowrap; - flex-direction: column; } - .menu.medium-expanded li { - flex: 1 1 0px; } - .menu.medium-simple li { - flex: 1 1 0px; } } - @media print, screen and (min-width: 64em) { - .menu.large-horizontal { - flex-wrap: wrap; - flex-direction: row; } - .menu.large-vertical { - flex-wrap: nowrap; - flex-direction: column; } - .menu.large-expanded li { - flex: 1 1 0px; } - .menu.large-simple li { - flex: 1 1 0px; } } - .menu.nested { - margin-right: 0; - margin-left: 1rem; } - .menu.icons a { - display: flex; } - .menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { - display: flex; } - .menu.icon-left li a, .menu.nested.icon-left li a { - flex-flow: row nowrap; } - .menu.icon-left li a img, - .menu.icon-left li a i, - .menu.icon-left li a svg, .menu.nested.icon-left li a img, - .menu.nested.icon-left li a i, - .menu.nested.icon-left li a svg { - margin-right: 0.25rem; } - .menu.icon-right li a, .menu.nested.icon-right li a { - flex-flow: row nowrap; } - .menu.icon-right li a img, - .menu.icon-right li a i, - .menu.icon-right li a svg, .menu.nested.icon-right li a img, - .menu.nested.icon-right li a i, - .menu.nested.icon-right li a svg { - margin-left: 0.25rem; } - .menu.icon-top li a, .menu.nested.icon-top li a { - flex-flow: column nowrap; } - .menu.icon-top li a img, - .menu.icon-top li a i, - .menu.icon-top li a svg, .menu.nested.icon-top li a img, - .menu.nested.icon-top li a i, - .menu.nested.icon-top li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; } - .menu.icon-bottom li a, .menu.nested.icon-bottom li a { - flex-flow: column nowrap; } - .menu.icon-bottom li a img, - .menu.icon-bottom li a i, - .menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img, - .menu.nested.icon-bottom li a i, - .menu.nested.icon-bottom li a svg { - align-self: stretch; - margin-bottom: 0.25rem; - text-align: center; } - .menu .is-active > a { - background: #1779ba; - color: #fefefe; } - .menu .active > a { - background: #1779ba; - color: #fefefe; } - .menu.align-left { - justify-content: flex-start; } - .menu.align-right li { - display: flex; - justify-content: flex-end; } - .menu.align-right li .submenu li { - justify-content: flex-start; } - .menu.align-right.vertical li { - display: block; - text-align: right; } - .menu.align-right.vertical li .submenu li { - text-align: right; } - .menu.align-right.icon-top li a img, - .menu.align-right.icon-top li a i, - .menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img, - .menu.align-right.icon-bottom li a i, - .menu.align-right.icon-bottom li a svg { - text-align: right; } - .menu.align-right .nested { - margin-right: 1rem; - margin-left: 0; } - .menu.align-center li { - display: flex; - justify-content: center; } - .menu.align-center li .submenu li { - justify-content: flex-start; } - .menu .menu-text { - padding: 0.7rem 1rem; - font-weight: bold; - line-height: 1; - color: inherit; } + flex-wrap: wrap; +} +[data-whatinput=mouse] .menu li { + outline: 0; +} +.menu a, +.menu .button { + line-height: 1; + text-decoration: none; + display: block; + padding: 0.7rem 1rem; +} +.menu input, +.menu select, +.menu a, +.menu button { + margin-bottom: 0; +} +.menu input { + display: inline-block; +} +.menu, .menu.horizontal { + flex-wrap: wrap; + flex-direction: row; +} +.menu.vertical { + flex-wrap: nowrap; + flex-direction: column; +} +.menu.vertical.icon-top li a img, +.menu.vertical.icon-top li a i, +.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img, +.menu.vertical.icon-bottom li a i, +.menu.vertical.icon-bottom li a svg { + text-align: left; +} +.menu.expanded li { + flex: 1 1 0px; +} +.menu.expanded.icon-top li a img, +.menu.expanded.icon-top li a i, +.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img, +.menu.expanded.icon-bottom li a i, +.menu.expanded.icon-bottom li a svg { + text-align: left; +} +.menu.simple { + align-items: center; +} +.menu.simple li + li { + margin-left: 1rem; +} +.menu.simple a { + padding: 0; +} +@media print, screen and (min-width: 40em) { + .menu.medium-horizontal { + flex-wrap: wrap; + flex-direction: row; + } + .menu.medium-vertical { + flex-wrap: nowrap; + flex-direction: column; + } + .menu.medium-expanded li { + flex: 1 1 0px; + } + .menu.medium-simple li { + flex: 1 1 0px; + } +} +@media print, screen and (min-width: 64em) { + .menu.large-horizontal { + flex-wrap: wrap; + flex-direction: row; + } + .menu.large-vertical { + flex-wrap: nowrap; + flex-direction: column; + } + .menu.large-expanded li { + flex: 1 1 0px; + } + .menu.large-simple li { + flex: 1 1 0px; + } +} +.menu.nested { + margin-right: 0; + margin-left: 1rem; +} +.menu.icons a { + display: flex; +} +.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { + display: flex; +} +.menu.icon-left li a, .menu.nested.icon-left li a { + flex-flow: row nowrap; +} +.menu.icon-left li a img, +.menu.icon-left li a i, +.menu.icon-left li a svg, .menu.nested.icon-left li a img, +.menu.nested.icon-left li a i, +.menu.nested.icon-left li a svg { + margin-right: 0.25rem; +} +.menu.icon-right li a, .menu.nested.icon-right li a { + flex-flow: row nowrap; +} +.menu.icon-right li a img, +.menu.icon-right li a i, +.menu.icon-right li a svg, .menu.nested.icon-right li a img, +.menu.nested.icon-right li a i, +.menu.nested.icon-right li a svg { + margin-left: 0.25rem; +} +.menu.icon-top li a, .menu.nested.icon-top li a { + flex-flow: column nowrap; +} +.menu.icon-top li a img, +.menu.icon-top li a i, +.menu.icon-top li a svg, .menu.nested.icon-top li a img, +.menu.nested.icon-top li a i, +.menu.nested.icon-top li a svg { + align-self: stretch; + margin-bottom: 0.25rem; + text-align: center; +} +.menu.icon-bottom li a, .menu.nested.icon-bottom li a { + flex-flow: column nowrap; +} +.menu.icon-bottom li a img, +.menu.icon-bottom li a i, +.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img, +.menu.nested.icon-bottom li a i, +.menu.nested.icon-bottom li a svg { + align-self: stretch; + margin-bottom: 0.25rem; + text-align: center; +} +.menu .is-active > a { + background: #1779ba; + color: #fefefe; +} +.menu .active > a { + background: #1779ba; + color: #fefefe; +} +.menu.align-left { + justify-content: flex-start; +} +.menu.align-right li { + display: flex; + justify-content: flex-end; +} +.menu.align-right li .submenu li { + justify-content: flex-start; +} +.menu.align-right.vertical li { + display: block; + text-align: right; +} +.menu.align-right.vertical li .submenu li { + text-align: right; +} +.menu.align-right.icon-top li a img, +.menu.align-right.icon-top li a i, +.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img, +.menu.align-right.icon-bottom li a i, +.menu.align-right.icon-bottom li a svg { + text-align: right; +} +.menu.align-right .nested { + margin-right: 1rem; + margin-left: 0; +} +.menu.align-center li { + display: flex; + justify-content: center; +} +.menu.align-center li .submenu li { + justify-content: flex-start; +} +.menu .menu-text { + padding: 0.7rem 1rem; + font-weight: bold; + line-height: 1; + color: inherit; +} .menu-centered > .menu { - justify-content: center; } - .menu-centered > .menu li { - display: flex; - justify-content: center; } - .menu-centered > .menu li .submenu li { - justify-content: flex-start; } + justify-content: center; +} +.menu-centered > .menu li { + display: flex; + justify-content: center; +} +.menu-centered > .menu li .submenu li { + justify-content: flex-start; +} .no-js [data-responsive-menu] ul { - display: none; } + display: none; +} .menu-icon { position: relative; @@ -266250,20 +202737,23 @@ a.thumbnail { vertical-align: middle; width: 20px; height: 16px; - cursor: pointer; } - .menu-icon::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 2px; - background: #fefefe; - box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; - content: ''; } - .menu-icon:hover::after { - background: #cacaca; - box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; } + cursor: pointer; +} +.menu-icon::after { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 2px; + background: #fefefe; + box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; + content: \\"\\"; +} +.menu-icon:hover::after { + background: #cacaca; + box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; +} .menu-icon.dark { position: relative; @@ -266271,71 +202761,78 @@ a.thumbnail { vertical-align: middle; width: 20px; height: 16px; - cursor: pointer; } - .menu-icon.dark::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 2px; - background: #0a0a0a; - box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; - content: ''; } - .menu-icon.dark:hover::after { - background: #8a8a8a; - box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; } + cursor: pointer; +} +.menu-icon.dark::after { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 2px; + background: #0a0a0a; + box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; + content: \\"\\"; +} +.menu-icon.dark:hover::after { + background: #8a8a8a; + box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; +} .accordion-menu li { - width: 100%; } - + width: 100%; +} .accordion-menu a { - padding: 0.7rem 1rem; } - + padding: 0.7rem 1rem; +} .accordion-menu .is-accordion-submenu a { - padding: 0.7rem 1rem; } - + padding: 0.7rem 1rem; +} .accordion-menu .nested.is-accordion-submenu { margin-right: 0; - margin-left: 1rem; } - + margin-left: 1rem; +} .accordion-menu.align-right .nested.is-accordion-submenu { margin-right: 1rem; - margin-left: 0; } - + margin-left: 0; +} .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a { - position: relative; } - .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - position: absolute; - top: 50%; - margin-top: -3px; - right: 1rem; } - + position: relative; +} +.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-bottom-width: 0; + border-color: #1779ba transparent transparent; + position: absolute; + top: 50%; + margin-top: -3px; + right: 1rem; +} .accordion-menu.align-left .is-accordion-submenu-parent > a::after { right: 1rem; - left: auto; } - + left: auto; +} .accordion-menu.align-right .is-accordion-submenu-parent > a::after { right: auto; - left: 1rem; } - -.accordion-menu .is-accordion-submenu-parent[aria-expanded='true'] > a::after { + left: 1rem; +} +.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after { transform: rotate(180deg); - transform-origin: 50% 50%; } + transform-origin: 50% 50%; +} .is-accordion-submenu-parent { - position: relative; } + position: relative; +} .has-submenu-toggle > a { - margin-right: 40px; } + margin-right: 40px; +} .submenu-toggle { position: absolute; @@ -266343,23 +202840,26 @@ a.thumbnail { right: 0; width: 40px; height: 40px; - cursor: pointer; } - .submenu-toggle::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-bottom-width: 0; - border-color: #1779ba transparent transparent; - top: 0; - bottom: 0; - margin: auto; } + cursor: pointer; +} +.submenu-toggle::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-bottom-width: 0; + border-color: #1779ba transparent transparent; + top: 0; + bottom: 0; + margin: auto; +} -.submenu-toggle[aria-expanded='true']::after { +.submenu-toggle[aria-expanded=true]::after { transform: scaleY(-1); - transform-origin: 50% 50%; } + transform-origin: 50% 50%; +} .submenu-toggle-text { position: absolute !important; @@ -266369,20 +202869,24 @@ a.thumbnail { overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; - border: 0 !important; } + border: 0 !important; +} .is-drilldown { position: relative; - overflow: hidden; } - .is-drilldown li { - display: block; } - .is-drilldown.animate-height { - transition: height 0.5s; } + overflow: hidden; +} +.is-drilldown li { + display: block; +} +.is-drilldown.animate-height { + transition: height 0.5s; +} .drilldown a { padding: 0.7rem 1rem; - background: #fefefe; } - + background: #fefefe; +} .drilldown .is-drilldown-submenu { position: absolute; top: 0; @@ -266390,296 +202894,329 @@ a.thumbnail { z-index: -1; width: 100%; background: #fefefe; - transition: transform 0.15s linear; } - .drilldown .is-drilldown-submenu.is-active { - z-index: 1; - display: block; - transform: translateX(-100%); } - .drilldown .is-drilldown-submenu.is-closing { - transform: translateX(100%); } - .drilldown .is-drilldown-submenu a { - padding: 0.7rem 1rem; } - + transition: transform 0.15s linear; +} +.drilldown .is-drilldown-submenu.is-active { + z-index: 1; + display: block; + transform: translateX(-100%); +} +.drilldown .is-drilldown-submenu.is-closing { + transform: translateX(100%); +} +.drilldown .is-drilldown-submenu a { + padding: 0.7rem 1rem; +} .drilldown .nested.is-drilldown-submenu { margin-right: 0; - margin-left: 0; } - + margin-left: 0; +} .drilldown .drilldown-submenu-cover-previous { - min-height: 100%; } - + min-height: 100%; +} .drilldown .is-drilldown-submenu-parent > a { - position: relative; } - .drilldown .is-drilldown-submenu-parent > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; - position: absolute; - top: 50%; - margin-top: -6px; - right: 1rem; } - + position: relative; +} +.drilldown .is-drilldown-submenu-parent > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-right-width: 0; + border-color: transparent transparent transparent #1779ba; + position: absolute; + top: 50%; + margin-top: -6px; + right: 1rem; +} .drilldown.align-left .is-drilldown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; border-color: transparent transparent transparent #1779ba; right: 1rem; - left: auto; } - + left: auto; +} .drilldown.align-right .is-drilldown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 1rem; } - + left: 1rem; +} .drilldown .js-drilldown-back > a::before { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; display: inline-block; vertical-align: middle; - margin-right: 0.75rem; } + margin-right: 0.75rem; +} .dropdown.menu > li.opens-left > .is-dropdown-submenu { top: 100%; right: 0; - left: auto; } - + left: auto; +} .dropdown.menu > li.opens-right > .is-dropdown-submenu { top: 100%; right: auto; - left: 0; } - + left: 0; +} .dropdown.menu > li.is-dropdown-submenu-parent > a { position: relative; - padding-right: 1.5rem; } - + padding-right: 1.5rem; +} .dropdown.menu > li.is-dropdown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-bottom-width: 0; border-color: #1779ba transparent transparent; right: 5px; left: auto; - margin-top: -3px; } - -[data-whatinput='mouse'] .dropdown.menu a { - outline: 0; } - + margin-top: -3px; +} +[data-whatinput=mouse] .dropdown.menu a { + outline: 0; +} .dropdown.menu > li > a { - padding: 0.7rem 1rem; } - + padding: 0.7rem 1rem; +} .dropdown.menu > li.is-active > a { background: transparent; - color: #1779ba; } - + color: #1779ba; +} .no-js .dropdown.menu ul { - display: none; } - + display: none; +} .dropdown.menu .nested.is-dropdown-submenu { margin-right: 0; - margin-left: 0; } - + margin-left: 0; +} .dropdown.menu.vertical > li .is-dropdown-submenu { - top: 0; } - + top: 0; +} .dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu { top: 0; right: 100%; - left: auto; } - + left: auto; +} .dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu { right: auto; - left: 100%; } - + left: 100%; +} .dropdown.menu.vertical > li > a::after { - right: 14px; } - + right: 14px; +} .dropdown.menu.vertical > li.opens-left > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 5px; } - + left: 5px; +} .dropdown.menu.vertical > li.opens-right > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } - + border-color: transparent transparent transparent #1779ba; +} @media print, screen and (min-width: 40em) { .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu { top: 100%; right: 0; - left: auto; } + left: auto; + } .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu { top: 100%; right: auto; - left: 0; } + left: 0; + } .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a { position: relative; - padding-right: 1.5rem; } + padding-right: 1.5rem; + } .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-bottom-width: 0; border-color: #1779ba transparent transparent; right: 5px; left: auto; - margin-top: -3px; } + margin-top: -3px; + } .dropdown.menu.medium-vertical > li .is-dropdown-submenu { - top: 0; } + top: 0; + } .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu { top: 0; right: 100%; - left: auto; } + left: auto; + } .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu { right: auto; - left: 100%; } + left: 100%; + } .dropdown.menu.medium-vertical > li > a::after { - right: 14px; } + right: 14px; + } .dropdown.menu.medium-vertical > li.opens-left > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 5px; } + left: 5px; + } .dropdown.menu.medium-vertical > li.opens-right > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } } - + border-color: transparent transparent transparent #1779ba; + } +} @media print, screen and (min-width: 64em) { .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu { top: 100%; right: 0; - left: auto; } + left: auto; + } .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu { top: 100%; right: auto; - left: 0; } + left: 0; + } .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a { position: relative; - padding-right: 1.5rem; } + padding-right: 1.5rem; + } .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-bottom-width: 0; border-color: #1779ba transparent transparent; right: 5px; left: auto; - margin-top: -3px; } + margin-top: -3px; + } .dropdown.menu.large-vertical > li .is-dropdown-submenu { - top: 0; } + top: 0; + } .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu { top: 0; right: 100%; - left: auto; } + left: auto; + } .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu { right: auto; - left: 100%; } + left: 100%; + } .dropdown.menu.large-vertical > li > a::after { - right: 14px; } + right: 14px; + } .dropdown.menu.large-vertical > li.opens-left > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-left-width: 0; border-color: transparent #1779ba transparent transparent; right: auto; - left: 5px; } + left: 5px; + } .dropdown.menu.large-vertical > li.opens-right > a::after { display: block; width: 0; height: 0; border-style: solid; border-width: 6px; - content: ''; + content: \\"\\"; border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } } - + border-color: transparent transparent transparent #1779ba; + } +} .dropdown.menu.align-right .is-dropdown-submenu.first-sub { top: 100%; right: 0; - left: auto; } + left: auto; +} .is-dropdown-menu.vertical { - width: 100px; } - .is-dropdown-menu.vertical.align-right { - float: right; } + width: 100px; +} +.is-dropdown-menu.vertical.align-right { + float: right; +} .is-dropdown-submenu-parent { - position: relative; } - .is-dropdown-submenu-parent a::after { - position: absolute; - top: 50%; - right: 5px; - left: auto; - margin-top: -6px; } - .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { - top: 100%; - left: auto; } - .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { - right: 100%; - left: auto; } - .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { - right: auto; - left: 100%; } + position: relative; +} +.is-dropdown-submenu-parent a::after { + position: absolute; + top: 50%; + right: 5px; + left: auto; + margin-top: -6px; +} +.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu { + top: 100%; + left: auto; +} +.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu { + right: 100%; + left: auto; +} +.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu { + right: auto; + left: 100%; +} .is-dropdown-submenu { position: absolute; @@ -266689,40 +203226,49 @@ a.thumbnail { display: none; min-width: 200px; border: 1px solid #cacaca; - background: #fefefe; } - .dropdown .is-dropdown-submenu a { - padding: 0.7rem 1rem; } - .is-dropdown-submenu .is-dropdown-submenu-parent > a::after { - right: 14px; } - .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-left-width: 0; - border-color: transparent #1779ba transparent transparent; - right: auto; - left: 5px; } - .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 6px; - content: ''; - border-right-width: 0; - border-color: transparent transparent transparent #1779ba; } - .is-dropdown-submenu .is-dropdown-submenu { - margin-top: -1px; } - .is-dropdown-submenu > li { - width: 100%; } - .is-dropdown-submenu.js-dropdown-active { - display: block; } + background: #fefefe; +} +.dropdown .is-dropdown-submenu a { + padding: 0.7rem 1rem; +} +.is-dropdown-submenu .is-dropdown-submenu-parent > a::after { + right: 14px; +} +.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-left-width: 0; + border-color: transparent #1779ba transparent transparent; + right: auto; + left: 5px; +} +.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after { + display: block; + width: 0; + height: 0; + border-style: solid; + border-width: 6px; + content: \\"\\"; + border-right-width: 0; + border-color: transparent transparent transparent #1779ba; +} +.is-dropdown-submenu .is-dropdown-submenu { + margin-top: -1px; +} +.is-dropdown-submenu > li { + width: 100%; +} +.is-dropdown-submenu.js-dropdown-active { + display: block; +} .is-off-canvas-open { - overflow: hidden; } + overflow: hidden; +} .js-off-canvas-overlay { position: absolute; @@ -266735,58 +203281,78 @@ a.thumbnail { background: rgba(254, 254, 254, 0.25); opacity: 0; visibility: hidden; - overflow: hidden; } - .js-off-canvas-overlay.is-visible { - opacity: 1; - visibility: visible; } - .js-off-canvas-overlay.is-closable { - cursor: pointer; } - .js-off-canvas-overlay.is-overlay-absolute { - position: absolute; } - .js-off-canvas-overlay.is-overlay-fixed { - position: fixed; } + overflow: hidden; +} +.js-off-canvas-overlay.is-visible { + opacity: 1; + visibility: visible; +} +.js-off-canvas-overlay.is-closable { + cursor: pointer; +} +.js-off-canvas-overlay.is-overlay-absolute { + position: absolute; +} +.js-off-canvas-overlay.is-overlay-fixed { + position: fixed; +} .off-canvas-wrapper { position: relative; - overflow: hidden; } + overflow: hidden; +} .off-canvas { position: fixed; z-index: 12; transition: transform 0.5s ease; backface-visibility: hidden; - background: #e6e6e6; } - [data-whatinput='mouse'] .off-canvas { - outline: 0; } - .off-canvas.is-transition-push { - z-index: 12; } - .off-canvas.is-closed { - visibility: hidden; } - .off-canvas.is-transition-overlap { - z-index: 13; } - .off-canvas.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); } - .off-canvas.is-open { - transform: translate(0, 0); } + background: #e6e6e6; +} +[data-whatinput=mouse] .off-canvas { + outline: 0; +} +.off-canvas.is-transition-push { + z-index: 12; +} +.off-canvas.is-closed { + visibility: hidden; +} +.off-canvas.is-transition-overlap { + z-index: 13; +} +.off-canvas.is-transition-overlap.is-open { + box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); +} +.off-canvas.is-open { + transform: translate(0, 0); +} .off-canvas-absolute { position: absolute; z-index: 12; transition: transform 0.5s ease; backface-visibility: hidden; - background: #e6e6e6; } - [data-whatinput='mouse'] .off-canvas-absolute { - outline: 0; } - .off-canvas-absolute.is-transition-push { - z-index: 12; } - .off-canvas-absolute.is-closed { - visibility: hidden; } - .off-canvas-absolute.is-transition-overlap { - z-index: 13; } - .off-canvas-absolute.is-transition-overlap.is-open { - box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); } - .off-canvas-absolute.is-open { - transform: translate(0, 0); } + background: #e6e6e6; +} +[data-whatinput=mouse] .off-canvas-absolute { + outline: 0; +} +.off-canvas-absolute.is-transition-push { + z-index: 12; +} +.off-canvas-absolute.is-closed { + visibility: hidden; +} +.off-canvas-absolute.is-transition-overlap { + z-index: 13; +} +.off-canvas-absolute.is-transition-overlap.is-open { + box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); +} +.off-canvas-absolute.is-open { + transform: translate(0, 0); +} .position-left { top: 0; @@ -266795,15 +203361,22 @@ a.thumbnail { overflow-y: auto; -webkit-overflow-scrolling: touch; width: 250px; - transform: translateX(-250px); } - .off-canvas-content .off-canvas.position-left { - transform: translateX(-250px); } - .off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-left.has-transition-push { - transform: translateX(250px); } - .position-left.is-transition-push { - box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateX(-250px); +} +.off-canvas-content .off-canvas.position-left { + transform: translateX(-250px); +} +.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-left.has-transition-push { + transform: translateX(250px); +} + +.position-left.is-transition-push { + box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25); +} .position-right { top: 0; @@ -266812,15 +203385,22 @@ a.thumbnail { overflow-y: auto; -webkit-overflow-scrolling: touch; width: 250px; - transform: translateX(250px); } - .off-canvas-content .off-canvas.position-right { - transform: translateX(250px); } - .off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-right.has-transition-push { - transform: translateX(-250px); } - .position-right.is-transition-push { - box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateX(250px); +} +.off-canvas-content .off-canvas.position-right { + transform: translateX(250px); +} +.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-right.has-transition-push { + transform: translateX(-250px); +} + +.position-right.is-transition-push { + box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25); +} .position-top { top: 0; @@ -266829,15 +203409,22 @@ a.thumbnail { overflow-x: auto; -webkit-overflow-scrolling: touch; height: 250px; - transform: translateY(-250px); } - .off-canvas-content .off-canvas.position-top { - transform: translateY(-250px); } - .off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-top.has-transition-push { - transform: translateY(250px); } - .position-top.is-transition-push { - box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateY(-250px); +} +.off-canvas-content .off-canvas.position-top { + transform: translateY(-250px); +} +.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-top.has-transition-push { + transform: translateY(250px); +} + +.position-top.is-transition-push { + box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25); +} .position-bottom { bottom: 0; @@ -266846,134 +203433,199 @@ a.thumbnail { overflow-x: auto; -webkit-overflow-scrolling: touch; height: 250px; - transform: translateY(250px); } - .off-canvas-content .off-canvas.position-bottom { - transform: translateY(250px); } - .off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open { - transform: translate(0, 0); } - .off-canvas-content.is-open-bottom.has-transition-push { - transform: translateY(-250px); } - .position-bottom.is-transition-push { - box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25); } + transform: translateY(250px); +} +.off-canvas-content .off-canvas.position-bottom { + transform: translateY(250px); +} +.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open { + transform: translate(0, 0); +} + +.off-canvas-content.is-open-bottom.has-transition-push { + transform: translateY(-250px); +} + +.position-bottom.is-transition-push { + box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25); +} .off-canvas-content { transform: none; - backface-visibility: hidden; } - .off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push { - transition: transform 0.5s ease; } - .off-canvas-content.has-transition-push { - transform: translate(0, 0); } - .off-canvas-content .off-canvas.is-open { - transform: translate(0, 0); } + backface-visibility: hidden; +} +.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push { + transition: transform 0.5s ease; +} +.off-canvas-content.has-transition-push { + transform: translate(0, 0); +} +.off-canvas-content .off-canvas.is-open { + transform: translate(0, 0); +} @media print, screen and (min-width: 40em) { .position-left.reveal-for-medium { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-left.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-left.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-left { - margin-left: 250px; } - .position-left.reveal-for-medium ~ .off-canvas-content { - margin-left: 250px; } + visibility: visible; + } + .position-left.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-left.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-left { + margin-left: 250px; + } + + .position-left.reveal-for-medium ~ .off-canvas-content { + margin-left: 250px; + } + .position-right.reveal-for-medium { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-right.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-right.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-right { - margin-right: 250px; } - .position-right.reveal-for-medium ~ .off-canvas-content { - margin-right: 250px; } + visibility: visible; + } + .position-right.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-right.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-right { + margin-right: 250px; + } + + .position-right.reveal-for-medium ~ .off-canvas-content { + margin-right: 250px; + } + .position-top.reveal-for-medium { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-top.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-top.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-top { - margin-top: 250px; } - .position-top.reveal-for-medium ~ .off-canvas-content { - margin-top: 250px; } + visibility: visible; + } + .position-top.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-top.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-top { + margin-top: 250px; + } + + .position-top.reveal-for-medium ~ .off-canvas-content { + margin-top: 250px; + } + .position-bottom.reveal-for-medium { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-bottom.reveal-for-medium .close-button { - display: none; } - .off-canvas-content .position-bottom.reveal-for-medium { - transform: none; } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; } - .position-bottom.reveal-for-medium ~ .off-canvas-content { - margin-bottom: 250px; } } + visibility: visible; + } + .position-bottom.reveal-for-medium .close-button { + display: none; + } + .off-canvas-content .position-bottom.reveal-for-medium { + transform: none; + } + .off-canvas-content.has-reveal-bottom { + margin-bottom: 250px; + } + .position-bottom.reveal-for-medium ~ .off-canvas-content { + margin-bottom: 250px; + } +} @media print, screen and (min-width: 64em) { .position-left.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-left.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-left.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-left { - margin-left: 250px; } - .position-left.reveal-for-large ~ .off-canvas-content { - margin-left: 250px; } + visibility: visible; + } + .position-left.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-left.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-left { + margin-left: 250px; + } + + .position-left.reveal-for-large ~ .off-canvas-content { + margin-left: 250px; + } + .position-right.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-right.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-right.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-right { - margin-right: 250px; } - .position-right.reveal-for-large ~ .off-canvas-content { - margin-right: 250px; } + visibility: visible; + } + .position-right.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-right.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-right { + margin-right: 250px; + } + + .position-right.reveal-for-large ~ .off-canvas-content { + margin-right: 250px; + } + .position-top.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-top.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-top.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-top { - margin-top: 250px; } - .position-top.reveal-for-large ~ .off-canvas-content { - margin-top: 250px; } + visibility: visible; + } + .position-top.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-top.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-top { + margin-top: 250px; + } + + .position-top.reveal-for-large ~ .off-canvas-content { + margin-top: 250px; + } + .position-bottom.reveal-for-large { transform: none; z-index: 12; transition: none; - visibility: visible; } - .position-bottom.reveal-for-large .close-button { - display: none; } - .off-canvas-content .position-bottom.reveal-for-large { - transform: none; } - .off-canvas-content.has-reveal-bottom { - margin-bottom: 250px; } - .position-bottom.reveal-for-large ~ .off-canvas-content { - margin-bottom: 250px; } } + visibility: visible; + } + .position-bottom.reveal-for-large .close-button { + display: none; + } + .off-canvas-content .position-bottom.reveal-for-large { + transform: none; + } + .off-canvas-content.has-reveal-bottom { + margin-bottom: 250px; + } + .position-bottom.reveal-for-large ~ .off-canvas-content { + margin-bottom: 250px; + } +} @media print, screen and (min-width: 40em) { .off-canvas.in-canvas-for-medium { visibility: visible; @@ -266982,13 +203634,16 @@ a.thumbnail { background: none; width: auto; overflow: visible; - transition: none; } - .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom { - box-shadow: none; - transform: none; } - .off-canvas.in-canvas-for-medium .close-button { - display: none; } } - + transition: none; + } + .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom { + box-shadow: none; + transform: none; + } + .off-canvas.in-canvas-for-medium .close-button { + display: none; + } +} @media print, screen and (min-width: 64em) { .off-canvas.in-canvas-for-large { visibility: visible; @@ -266997,22 +203652,28 @@ a.thumbnail { background: none; width: auto; overflow: visible; - transition: none; } - .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom { - box-shadow: none; - transform: none; } - .off-canvas.in-canvas-for-large .close-button { - display: none; } } - + transition: none; + } + .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom { + box-shadow: none; + transform: none; + } + .off-canvas.in-canvas-for-large .close-button { + display: none; + } +} html.is-reveal-open { position: fixed; width: 100%; - overflow-y: hidden; } - html.is-reveal-open.zf-has-scroll { - overflow-y: scroll; - -webkit-overflow-scrolling: touch; } - html.is-reveal-open body { - overflow-y: hidden; } + overflow-y: hidden; +} +html.is-reveal-open.zf-has-scroll { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; +} +html.is-reveal-open body { + overflow-y: hidden; +} .reveal-overlay { position: fixed; @@ -267024,7 +203685,8 @@ html.is-reveal-open { display: none; background-color: rgba(10, 10, 10, 0.45); overflow-y: auto; - -webkit-overflow-scrolling: touch; } + -webkit-overflow-scrolling: touch; +} .reveal { z-index: 1006; @@ -267039,35 +203701,64 @@ html.is-reveal-open { margin-right: auto; margin-left: auto; overflow-y: auto; - -webkit-overflow-scrolling: touch; } - [data-whatinput='mouse'] .reveal { - outline: 0; } - @media print, screen and (min-width: 40em) { - .reveal { - min-height: 0; } } - .reveal .column { - min-width: 0; } - .reveal > :last-child { - margin-bottom: 0; } - @media print, screen and (min-width: 40em) { - .reveal { - width: 600px; - max-width: 75rem; } } - .reveal.collapse { - padding: 0; } - @media print, screen and (min-width: 40em) { - .reveal.tiny { - width: 30%; - max-width: 75rem; } } - @media print, screen and (min-width: 40em) { - .reveal.small { - width: 50%; - max-width: 75rem; } } - @media print, screen and (min-width: 40em) { - .reveal.large { - width: 90%; - max-width: 75rem; } } - .reveal.full { + -webkit-overflow-scrolling: touch; +} +[data-whatinput=mouse] .reveal { + outline: 0; +} +@media print, screen and (min-width: 40em) { + .reveal { + min-height: 0; + } +} +.reveal .column { + min-width: 0; +} +.reveal > :last-child { + margin-bottom: 0; +} +@media print, screen and (min-width: 40em) { + .reveal { + width: 600px; + max-width: 75rem; + } +} +.reveal.collapse { + padding: 0; +} +@media print, screen and (min-width: 40em) { + .reveal.tiny { + width: 30%; + max-width: 75rem; + } +} +@media print, screen and (min-width: 40em) { + .reveal.small { + width: 50%; + max-width: 75rem; + } +} +@media print, screen and (min-width: 40em) { + .reveal.large { + width: 90%; + max-width: 75rem; + } +} +.reveal.full { + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; + max-width: none; + height: 100%; + min-height: 100%; + margin-left: 0; + border: 0; + border-radius: 0; +} +@media print, screen and (max-width: 39.99875em) { + .reveal { top: 0; right: 0; bottom: 0; @@ -267078,46 +203769,43 @@ html.is-reveal-open { min-height: 100%; margin-left: 0; border: 0; - border-radius: 0; } - @media print, screen and (max-width: 39.99875em) { - .reveal { - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - max-width: none; - height: 100%; - min-height: 100%; - margin-left: 0; - border: 0; - border-radius: 0; } } - .reveal.without-overlay { - position: fixed; } + border-radius: 0; + } +} +.reveal.without-overlay { + position: fixed; +} .sticky-container { - position: relative; } + position: relative; +} .sticky { position: relative; z-index: 0; - transform: translate3d(0, 0, 0); } + transform: translate3d(0, 0, 0); +} .sticky.is-stuck { position: fixed; z-index: 5; - width: 100%; } - .sticky.is-stuck.is-at-top { - top: 0; } - .sticky.is-stuck.is-at-bottom { - bottom: 0; } + width: 100%; +} +.sticky.is-stuck.is-at-top { + top: 0; +} +.sticky.is-stuck.is-at-bottom { + bottom: 0; +} .sticky.is-anchored { position: relative; right: auto; - left: auto; } - .sticky.is-anchored.is-at-bottom { - bottom: 0; } + left: auto; +} +.sticky.is-anchored.is-at-bottom { + bottom: 0; +} .title-bar { padding: 0.5rem; @@ -267125,22 +203813,27 @@ html.is-reveal-open { color: #fefefe; display: flex; justify-content: flex-start; - align-items: center; } - .title-bar .menu-icon { - margin-left: 0.25rem; - margin-right: 0.25rem; } + align-items: center; +} +.title-bar .menu-icon { + margin-left: 0.25rem; + margin-right: 0.25rem; +} .title-bar-left, .title-bar-right { - flex: 1 1 0px; } + flex: 1 1 0px; +} .title-bar-right { - text-align: right; } + text-align: right; +} .title-bar-title { display: inline-block; vertical-align: middle; - font-weight: bold; } + font-weight: bold; +} .top-bar { display: flex; @@ -267148,122 +203841,167 @@ html.is-reveal-open { justify-content: space-between; align-items: center; padding: 0.5rem; - flex-wrap: wrap; } - .top-bar, - .top-bar ul { - background-color: #e6e6e6; } - .top-bar input { - max-width: 200px; - margin-right: 1rem; } - .top-bar .input-group-field { - width: 100%; - margin-right: 0; } - .top-bar input.button { - width: auto; } - .top-bar .top-bar-left, + flex-wrap: wrap; +} +.top-bar, +.top-bar ul { + background-color: #e6e6e6; +} +.top-bar input { + max-width: 200px; + margin-right: 1rem; +} +.top-bar .input-group-field { + width: 100%; + margin-right: 0; +} +.top-bar input.button { + width: auto; +} +.top-bar .top-bar-left, +.top-bar .top-bar-right { + flex: 0 0 100%; + max-width: 100%; +} +@media print, screen and (min-width: 40em) { + .top-bar { + flex-wrap: nowrap; + } + .top-bar .top-bar-left { + flex: 1 1 auto; + margin-right: auto; + } .top-bar .top-bar-right { + flex: 0 1 auto; + margin-left: auto; + } +} +@media print, screen and (max-width: 63.99875em) { + .top-bar.stacked-for-medium { + flex-wrap: wrap; + } + .top-bar.stacked-for-medium .top-bar-left, +.top-bar.stacked-for-medium .top-bar-right { + flex: 0 0 100%; + max-width: 100%; + } +} +@media print, screen and (max-width: 74.99875em) { + .top-bar.stacked-for-large { + flex-wrap: wrap; + } + .top-bar.stacked-for-large .top-bar-left, +.top-bar.stacked-for-large .top-bar-right { flex: 0 0 100%; - max-width: 100%; } - @media print, screen and (min-width: 40em) { - .top-bar { - flex-wrap: nowrap; } - .top-bar .top-bar-left { - flex: 1 1 auto; - margin-right: auto; } - .top-bar .top-bar-right { - flex: 0 1 auto; - margin-left: auto; } } - @media print, screen and (max-width: 63.99875em) { - .top-bar.stacked-for-medium { - flex-wrap: wrap; } - .top-bar.stacked-for-medium .top-bar-left, - .top-bar.stacked-for-medium .top-bar-right { - flex: 0 0 100%; - max-width: 100%; } } - @media print, screen and (max-width: 74.99875em) { - .top-bar.stacked-for-large { - flex-wrap: wrap; } - .top-bar.stacked-for-large .top-bar-left, - .top-bar.stacked-for-large .top-bar-right { - flex: 0 0 100%; - max-width: 100%; } } + max-width: 100%; + } +} .top-bar-title { flex: 0 0 auto; - margin: 0.5rem 1rem 0.5rem 0; } + margin: 0.5rem 1rem 0.5rem 0; +} .top-bar-left, .top-bar-right { - flex: 0 0 auto; } + flex: 0 0 auto; +} .float-left { - float: left !important; } + float: left !important; +} .float-right { - float: right !important; } + float: right !important; +} .float-center { display: block; margin-right: auto; - margin-left: auto; } + margin-left: auto; +} .clearfix::before, .clearfix::after { display: table; - content: ' '; + content: \\" \\"; flex-basis: 0; - order: 1; } - + order: 1; +} .clearfix::after { - clear: both; } + clear: both; +} .hide { - display: none !important; } + display: none !important; +} .invisible { - visibility: hidden; } + visibility: hidden; +} .visible { - visibility: visible; } + visibility: visible; +} @media print, screen and (max-width: 39.99875em) { .hide-for-small-only { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 0em), screen and (min-width: 40em) { .show-for-small-only { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 40em) { .hide-for-medium { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 39.99875em) { .show-for-medium { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 40em) and (max-width: 63.99875em) { .hide-for-medium-only { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 39.99875em), screen and (min-width: 64em) { .show-for-medium-only { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 64em) { .hide-for-large { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 63.99875em) { .show-for-large { - display: none !important; } } + display: none !important; + } +} @media print, screen and (min-width: 64em) and (max-width: 74.99875em) { .hide-for-large-only { - display: none !important; } } + display: none !important; + } +} @media screen and (max-width: 63.99875em), screen and (min-width: 75em) { .show-for-large-only { - display: none !important; } } + display: none !important; + } +} .show-for-sr, .show-on-focus { @@ -267274,7 +204012,8 @@ html.is-reveal-open { overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; - border: 0 !important; } + border: 0 !important; +} .show-on-focus:active, .show-on-focus:focus { position: static !important; @@ -267282,67 +204021,89 @@ html.is-reveal-open { height: auto !important; overflow: visible !important; clip: auto !important; - white-space: normal !important; } + white-space: normal !important; +} .show-for-landscape, .hide-for-portrait { - display: block !important; } - @media screen and (orientation: landscape) { - .show-for-landscape, - .hide-for-portrait { - display: block !important; } } - @media screen and (orientation: portrait) { - .show-for-landscape, - .hide-for-portrait { - display: none !important; } } + display: block !important; +} +@media screen and (orientation: landscape) { + .show-for-landscape, +.hide-for-portrait { + display: block !important; + } +} +@media screen and (orientation: portrait) { + .show-for-landscape, +.hide-for-portrait { + display: none !important; + } +} .hide-for-landscape, .show-for-portrait { - display: none !important; } - @media screen and (orientation: landscape) { - .hide-for-landscape, - .show-for-portrait { - display: none !important; } } - @media screen and (orientation: portrait) { - .hide-for-landscape, - .show-for-portrait { - display: block !important; } } + display: none !important; +} +@media screen and (orientation: landscape) { + .hide-for-landscape, +.show-for-portrait { + display: none !important; + } +} +@media screen and (orientation: portrait) { + .hide-for-landscape, +.show-for-portrait { + display: block !important; + } +} .show-for-dark-mode { - display: none; } + display: none; +} .hide-for-dark-mode { - display: block; } + display: block; +} @media screen and (prefers-color-scheme: dark) { .show-for-dark-mode { - display: block !important; } - .hide-for-dark-mode { - display: none !important; } } + display: block !important; + } + .hide-for-dark-mode { + display: none !important; + } +} .show-for-ie { - display: none; } + display: none; +} @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .show-for-ie { - display: block !important; } - .hide-for-ie { - display: none !important; } } + display: block !important; + } + .hide-for-ie { + display: none !important; + } +} .show-for-sticky { - display: none; } + display: none; +} .is-stuck .show-for-sticky { - display: block; } + display: block; +} .is-stuck .hide-for-sticky { - display: none; } -" + display: none; +}" `; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (scss): errors 1`] = `Array []`; -exports[`loader should work with the "foundation-sites" package, adjusting CSS output (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should work with the "foundation-sites" package, adjusting CSS output (dart-sass) (scss): warnings 1`] = `Array []`; exports[`loader should work with the "foundation-sites" package, import as a package (dart-sass) (sass): css 1`] = ` "/** @@ -267370,34 +204131,6 @@ exports[`loader should work with the "foundation-sites" package, import as a pac exports[`loader should work with the "foundation-sites" package, import as a package (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should work with the "foundation-sites" package, import as a package (node-sass) (sass): css 1`] = ` -"/** - * Foundation for Sites - * Version 6.7.4 - * https://get.foundation - * Licensed under MIT Open Source - */ -" -`; - -exports[`loader should work with the "foundation-sites" package, import as a package (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with the "foundation-sites" package, import as a package (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with the "foundation-sites" package, import as a package (node-sass) (scss): css 1`] = ` -"/** - * Foundation for Sites - * Version 6.7.4 - * https://get.foundation - * Licensed under MIT Open Source - */ -" -`; - -exports[`loader should work with the "foundation-sites" package, import as a package (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with the "foundation-sites" package, import as a package (node-sass) (scss): warnings 1`] = `Array []`; - exports[`loader should work with the "material-components-web" package (dart-sass) (sass): css 1`] = ` ".test .mdc-touch-target-wrapper { display: inline; @@ -270577,29 +207310,3 @@ exports[`loader should work with the 'resolve.byDependecy.sass' option (dart-sas exports[`loader should work with the 'resolve.byDependecy.sass' option (dart-sass) (scss): errors 1`] = `Array []`; exports[`loader should work with the 'resolve.byDependecy.sass' option (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`loader should work with the 'resolve.byDependecy.sass' option (node-sass) (sass): css 1`] = ` -".a { - color: red; } - -.b { - color: red; } -" -`; - -exports[`loader should work with the 'resolve.byDependecy.sass' option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`loader should work with the 'resolve.byDependecy.sass' option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`loader should work with the 'resolve.byDependecy.sass' option (node-sass) (scss): css 1`] = ` -".a { - color: red; } - -.b { - color: red; } -" -`; - -exports[`loader should work with the 'resolve.byDependecy.sass' option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`loader should work with the 'resolve.byDependecy.sass' option (node-sass) (scss): warnings 1`] = `Array []`; diff --git a/test/__snapshots__/sassOptions-option.test.js.snap b/test/__snapshots__/sassOptions-option.test.js.snap index a66f562b..67fdab12 100644 --- a/test/__snapshots__/sassOptions-option.test.js.snap +++ b/test/__snapshots__/sassOptions-option.test.js.snap @@ -1,94 +1,106 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should ignore the "data" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -192,95 +204,107 @@ exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should ignore the "data" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should ignore the "data" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should ignore the "file" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -384,95 +408,107 @@ exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should ignore the "file" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should ignore the "file" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -576,9 +612,9 @@ exports[`sassOptions option should respect the "outputStyle" option (dart-sass) exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; color: #333; @@ -589,11 +625,9 @@ nav ul { padding: 0; list-style: none; } - nav li { display: inline-block; } - nav a { display: block; padding: 6px 12px; @@ -607,7 +641,7 @@ nav a { border-radius: 10px; } -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; color: #333; @@ -626,22 +660,21 @@ nav a { } .foo:before { - content: \\"\\"; + content: \\"\\\\e0c6\\"; } .bar:before { content: \\"∑\\"; -} -" +}" `; -exports[`sassOptions option should respect the "outputStyle" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; color: #333; @@ -652,11 +685,9 @@ nav ul { padding: 0; list-style: none; } - nav li { display: inline-block; } - nav a { display: block; padding: 6px 12px; @@ -671,18 +702,17 @@ nav a { } .foo:before { - content: \\"\\"; + content: \\"\\\\e0c6\\"; } .bar:before { content: \\"∑\\"; -} -" +}" `; -exports[`sassOptions option should respect the "outputStyle" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (sass): css 1`] = `"@import\\"./file.css\\";body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.message,.warning,.error,.success{border:1px solid #ccc;padding:10px;color:#333}.success{border-color:green}.error{border-color:red}.warning{border-color:#ff0}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"}"`; @@ -696,25 +726,7 @@ exports[`sassOptions option should use "compressed" output style in the "product exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (sass): css 1`] = ` -"@import url(./file.css);body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.message,.success,.error,.warning{border:1px solid #ccc;padding:10px;color:#333}.success{border-color:green}.error{border-color:red}.warning{border-color:yellow}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"} -" -`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (scss): css 1`] = ` -"@import url(./file.css);body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"} -" -`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): css 1`] = ` +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -743,6 +755,24 @@ nav a { border-radius: 10px; } +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + .foo:before { content: \\"\\\\e0c6\\"; } @@ -752,101 +782,95 @@ nav a { }" `; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): css 1`] = ` +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -902,11 +926,11 @@ nav a { }" `; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): css 1`] = ` +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -944,99 +968,213 @@ nav a { }" `; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option is empty "Object" (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should work when the option is empty "Object" (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option is empty "Object" (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option is empty "Object" (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option is empty "Object" (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work when the option like "Function" (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -1140,95 +1278,107 @@ exports[`sassOptions option should work when the option like "Function" (dart-sa exports[`sassOptions option should work when the option like "Function" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work when the option like "Function" (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option like "Function" (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work when the option like "Function" (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option like "Function" (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work when the option like "Function" and never return (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -1332,95 +1482,107 @@ exports[`sassOptions option should work when the option like "Function" and neve exports[`sassOptions option should work when the option like "Function" and never return (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work when the option like "Function" and never return (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" and never return (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" and never return (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work when the option like "Function" and never return (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" and never return (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" and never return (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work when the option like "Object" (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -1524,95 +1686,107 @@ exports[`sassOptions option should work when the option like "Object" (dart-sass exports[`sassOptions option should work when the option like "Object" (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Object" (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work when the option like "Object" (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option like "Object" (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Object" (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Object" (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Object" (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Object" (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work when the option like "Object" (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work when the option like "Object" (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Object" (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Object" (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Object" (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work with the "fiber" option (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @@ -1656,95 +1830,107 @@ exports[`sassOptions option should work with the "fiber" option (dart-sass) (scs exports[`sassOptions option should work with the "fiber" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "fiber" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work with the "fiber" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "fiber" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "fiber" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "fiber" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "fiber" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "fiber" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work with the "fiber" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "fiber" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "fiber" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "fiber" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "fiber" option (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work with the "functions" option (dart-sass) (sass): css 1`] = ` "h2, h3, h4, h5 { @@ -1766,26 +1952,6 @@ exports[`sassOptions option should work with the "functions" option (dart-sass) exports[`sassOptions option should work with the "functions" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "functions" option (node-sass) (sass): css 1`] = ` -"h2, h3, h4, h5 { - color: #08c; } -" -`; - -exports[`sassOptions option should work with the "functions" option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "functions" option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "functions" option (node-sass) (scss): css 1`] = ` -"h2, h3, h4, h5 { - color: #08c; } -" -`; - -exports[`sassOptions option should work with the "functions" option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "functions" option (node-sass) (scss): warnings 1`] = `Array []`; - exports[`sassOptions option should work with the "importer" as a array of functions option (dart-sass) (sass): css 1`] = `""`; exports[`sassOptions option should work with the "importer" as a array of functions option (dart-sass) (sass): css 2`] = ` @@ -1826,44 +1992,6 @@ exports[`sassOptions option should work with the "importer" as a array of functi exports[`sassOptions option should work with the "importer" as a array of functions option (dart-sass) (scss): warnings 2`] = `Array []`; -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): css 1`] = `""`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): css 2`] = ` -".a { - color: red; } - -.b { - color: blue; } -" -`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): errors 2`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): warnings 2`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): css 1`] = `""`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): css 2`] = ` -".a { - color: red; } - -.b { - color: blue; } -" -`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): errors 2`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): warnings 2`] = `Array []`; - exports[`sassOptions option should work with the "importer" as a single function option (dart-sass) (sass): css 1`] = `""`; exports[`sassOptions option should work with the "importer" as a single function option (dart-sass) (sass): css 2`] = ` @@ -1896,111 +2024,33 @@ exports[`sassOptions option should work with the "importer" as a single function exports[`sassOptions option should work with the "importer" as a single function option (dart-sass) (scss): warnings 2`] = `Array []`; -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): css 1`] = `""`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): css 2`] = ` -".a { - color: red; } -" -`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): errors 2`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): warnings 2`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): css 1`] = `""`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): css 2`] = ` -".a { - color: red; } -" -`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): errors 2`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): warnings 2`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (sass): css 1`] = ` -".a { - color: red; } -" -`; - -exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (scss): css 1`] = ` -".a { - color: red; } -" -`; - -exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "importer" as a single function option (sass-embedded) (scss): warnings 1`] = `Array []`; - exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): css 1`] = ` ".include-path-module { background: hotpink; -} - -._underscore-include-path-module { - background: hotpink; -}" -`; - -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): css 1`] = ` -".include-path-module { - background: hotpink; -} - -._underscore-include-path-module { - background: hotpink; -}" -`; - -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`sassOptions option should work with the "includePaths" option (node-sass) (sass): css 1`] = ` -".include-path-module { - background: hotpink; } +} ._underscore-include-path-module { - background: hotpink; } -" + background: hotpink; +}" `; -exports[`sassOptions option should work with the "includePaths" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "includePaths" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "includePaths" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): css 1`] = ` ".include-path-module { - background: hotpink; } + background: hotpink; +} ._underscore-include-path-module { - background: hotpink; } -" + background: hotpink; +}" `; -exports[`sassOptions option should work with the "includePaths" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "includePaths" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work with the "indentType" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -2104,95 +2154,107 @@ exports[`sassOptions option should work with the "indentType" option (dart-sass) exports[`sassOptions option should work with the "indentType" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "indentType" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work with the "indentType" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "indentType" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "indentType" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "indentType" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentType" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "indentType" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work with the "indentType" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "indentType" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "indentType" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "indentType" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentType" option (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work with the "indentWidth" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -2296,95 +2358,107 @@ exports[`sassOptions option should work with the "indentWidth" option (dart-sass exports[`sassOptions option should work with the "indentWidth" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "indentWidth" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work with the "indentWidth" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "indentWidth" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "indentWidth" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "indentWidth" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentWidth" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "indentWidth" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work with the "indentWidth" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { - font: 100% Helvetica, sans-serif; - color: #333; } + font: 100% Helvetica, sans-serif; + color: #333; +} nav ul { - margin: 0; - padding: 0; - list-style: none; } - + margin: 0; + padding: 0; + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } + display: block; + padding: 6px 12px; + text-decoration: none; +} .box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "indentWidth" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "indentWidth" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "indentWidth" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentWidth" option (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work with the "indentedSyntax" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -2488,95 +2562,107 @@ exports[`sassOptions option should work with the "indentedSyntax" option (dart-s exports[`sassOptions option should work with the "indentedSyntax" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work with the "indentedSyntax" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "indentedSyntax" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentedSyntax" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work with the "indentedSyntax" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "indentedSyntax" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentedSyntax" option (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work with the "linefeed" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -2680,92 +2766,104 @@ exports[`sassOptions option should work with the "linefeed" option (dart-sass) ( exports[`sassOptions option should work with the "linefeed" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "linefeed" option (node-sass) (sass): css 1`] = ` +exports[`sassOptions option should work with the "linefeed" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "linefeed" option (node-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "linefeed" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "linefeed" option (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "linefeed" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "linefeed" option (node-sass) (scss): css 1`] = ` +exports[`sassOptions option should work with the "linefeed" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sassOptions option should work with the "linefeed" option (node-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "linefeed" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "linefeed" option (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "linefeed" option (sass-embedded) (scss): warnings 1`] = `Array []`; diff --git a/test/__snapshots__/sourceMap-options.test.js.snap b/test/__snapshots__/sourceMap-options.test.js.snap index fb65316d..e84681a8 100644 --- a/test/__snapshots__/sourceMap-options.test.js.snap +++ b/test/__snapshots__/sourceMap-options.test.js.snap @@ -247,1188 +247,7 @@ nav { exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): source map 1`] = ` -Object { - "file": "style.css.map", - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "sass/language.sass", - "sass/another/variables.sass", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; } - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } - - li { - display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } - -.box { - @include border-radius(10px); } - -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - @extend .message; - border-color: green; } - -.error { - @extend .message; - border-color: red; } - -.warning { - @extend .message; - border-color: yellow; } - -.foo { - &:before { - content: $pi; } } - -.bar { - &:before { - content: $n-ary-summation; } } - -", - "$n-ary-summation: '\\\\2211'; -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): source map 1`] = ` -Object { - "file": "style.css.map", - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "scss/language.scss", - "scss/another/_variables.scss", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; -} - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -.box { @include border-radius(10px); } - -.foo { - &:before { - content: $pi; - } -} - -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): source map 1`] = ` -Object { - "file": "style.css.map", - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "sass/language.sass", - "sass/another/variables.sass", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; } - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } - - li { - display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } - -.box { - @include border-radius(10px); } - -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - @extend .message; - border-color: green; } - -.error { - @extend .message; - border-color: red; } - -.warning { - @extend .message; - border-color: yellow; } - -.foo { - &:before { - content: $pi; } } - -.bar { - &:before { - content: $n-ary-summation; } } - -", - "$n-ary-summation: '\\\\2211'; -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): source map 1`] = ` -Object { - "file": "style.css.map", - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "scss/language.scss", - "scss/another/_variables.scss", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; -} - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -.box { @include border-radius(10px); } - -.foo { - &:before { - content: $pi; - } -} - -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.message, .warning, .error, .success { - border: 1px solid #ccc; - padding: 10px; - color: #333; -} - -.success { - border-color: green; -} - -.error { - border-color: red; -} - -.warning { - border-color: yellow; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = ` -Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/sass/language.sass", - "test/sass/another/variables.sass", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\" -@import \\"./file.css\\" - -$font-stack: Helvetica, sans-serif -$primary-color: #333 -$pi: '\\\\e0C6' - -body - font: 100% $font-stack - color: $primary-color - -nav - ul - margin: 0 - padding: 0 - list-style: none - - li - display: inline-block - - a - display: block - padding: 6px 12px - text-decoration: none - -=border-radius($radius) - -webkit-border-radius: $radius - -moz-border-radius: $radius - -ms-border-radius: $radius - border-radius: $radius - -.box - +border-radius(10px) - -.message - border: 1px solid #ccc - padding: 10px - color: #333 - -.success - @extend .message - border-color: green - -.error - @extend .message - border-color: red - -.warning - @extend .message - border-color: yellow - -.foo - &:before - content: $pi - -.bar - &:before - content: $n-ary-summation - -", - "$n-ary-summation: '\\\\2211' -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} - -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = ` -Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/scss/language.scss", - "test/scss/another/_variables.scss", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; -} - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -.box { @include border-radius(10px); } - -.foo { - &:before { - content: $pi; - } -} - -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = ` -Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/sass/language.sass", - "test/sass/another/variables.sass", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; } - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } - - li { - display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } - -.box { - @include border-radius(10px); } - -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - @extend .message; - border-color: green; } - -.error { - @extend .message; - border-color: red; } - -.warning { - @extend .message; - border-color: yellow; } - -.foo { - &:before { - content: $pi; } } - -.bar { - &:before { - content: $n-ary-summation; } } - -", - "$n-ary-summation: '\\\\2211'; -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = ` -Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/scss/language.scss", - "test/scss/another/_variables.scss", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; -} - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -.box { @include border-radius(10px); } - -.foo { - &:before { - content: $pi; - } -} - -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = ` -Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/sass/language.sass", - "test/sass/another/variables.sass", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; } - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } - - li { - display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } - -.box { - @include border-radius(10px); } - -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - @extend .message; - border-color: green; } - -.error { - @extend .message; - border-color: red; } - -.warning { - @extend .message; - border-color: yellow; } - -.foo { - &:before { - content: $pi; } } - -.bar { - &:before { - content: $n-ary-summation; } } - -", - "$n-ary-summation: '\\\\2211'; -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = ` -Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/scss/language.scss", - "test/scss/another/_variables.scss", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; -} - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -.box { @include border-radius(10px); } - -.foo { - &:before { - content: $pi; - } -} - -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -1484,88 +303,25 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): source map 1`] = ` Object { + "file": "style.css.map", "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], "sourceRoot": "", "sources": Array [ - "test/sass/language.sass", - "test/sass/another/variables.sass", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\" -@import \\"./file.css\\" - -$font-stack: Helvetica, sans-serif -$primary-color: #333 -$pi: '\\\\e0C6' - -body - font: 100% $font-stack - color: $primary-color - -nav - ul - margin: 0 - padding: 0 - list-style: none - - li - display: inline-block - - a - display: block - padding: 6px 12px - text-decoration: none - -=border-radius($radius) - -webkit-border-radius: $radius - -moz-border-radius: $radius - -ms-border-radius: $radius - border-radius: $radius - -.box - +border-radius(10px) - -.message - border: 1px solid #ccc - padding: 10px - color: #333 - -.success - @extend .message - border-color: green - -.error - @extend .message - border-color: red - -.warning - @extend .message - border-color: yellow - -.foo - &:before - content: $pi - -.bar - &:before - content: $n-ary-summation - -", - "$n-ary-summation: '\\\\2211' -", + "sass/language.sass", + "sass/another/variables.sass", ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -1603,129 +359,85 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): source map 1`] = ` Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/scss/language.scss", - "test/scss/another/_variables.scss", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; -} - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -.box { @include border-radius(10px); } - -.foo { - &:before { - content: $pi; - } -} - -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", + "file": "style.css.map", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "scss/language.scss", + "scss/another/_variables.scss", ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = ` Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], "sourceRoot": "", "sources": Array [ @@ -1733,114 +445,118 @@ Object { "test/sass/another/variables.sass", ], "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; + "@import \\"another/variables\\" +@import \\"./file.css\\" -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; +$font-stack: Helvetica, sans-serif +$primary-color: #333 +$pi: '\\\\e0C6' -body { - font: 100% $font-stack; - color: $primary-color; } +body + font: 100% $font-stack + color: $primary-color -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } +nav + ul + margin: 0 + padding: 0 + list-style: none - li { - display: inline-block; } + li + display: inline-block - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } + a + display: block + padding: 6px 12px + text-decoration: none -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } +=border-radius($radius) + -webkit-border-radius: $radius + -moz-border-radius: $radius + -ms-border-radius: $radius + border-radius: $radius -.box { - @include border-radius(10px); } +.box + +border-radius(10px) -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } +.message + border: 1px solid #ccc + padding: 10px + color: #333 -.success { - @extend .message; - border-color: green; } +.success + @extend .message + border-color: green -.error { - @extend .message; - border-color: red; } +.error + @extend .message + border-color: red -.warning { - @extend .message; - border-color: yellow; } +.warning + @extend .message + border-color: yellow -.foo { - &:before { - content: $pi; } } +.foo + &:before + content: $pi -.bar { - &:before { - content: $n-ary-summation; } } +.bar + &:before + content: $n-ary-summation ", - "$n-ary-summation: '\\\\2211'; + "$n-ary-summation: '\\\\2211' ", ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = ` Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", "names": Array [], "sourceRoot": "", "sources": Array [ @@ -1904,242 +620,137 @@ nav { } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = ` Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], "sourceRoot": "", "sources": Array [ "test/sass/language.sass", "test/sass/another/variables.sass", ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; } - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } - - li { - display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } - -.box { - @include border-radius(10px); } - -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - @extend .message; - border-color: green; } - -.error { - @extend .message; - border-color: red; } - -.warning { - @extend .message; - border-color: yellow; } - -.foo { - &:before { - content: $pi; } } - -.bar { - &:before { - content: $n-ary-summation; } } - -", - "$n-ary-summation: '\\\\2211'; -", - ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` -Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/scss/language.scss", - "test/scss/another/_variables.scss", - ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; + text-decoration: none; } -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; +.foo:before { + content: \\"\\\\e0c6\\"; } -.box { @include border-radius(10px); } +.bar:before { + content: \\"∑\\"; +}" +`; -.foo { - &:before { - content: $pi; - } -} +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -2195,9 +806,9 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` Object { "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], @@ -2274,9 +885,9 @@ nav } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -2314,9 +925,9 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` Object { "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", "names": Array [], @@ -2382,294 +993,197 @@ nav { } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], "sourceRoot": "", "sources": Array [ "test/sass/language.sass", "test/sass/another/variables.sass", ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; } - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } - - li { - display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } - -.box { - @include border-radius(10px); } - -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - @extend .message; - border-color: green; } - -.error { - @extend .message; - border-color: red; } - -.warning { - @extend .message; - border-color: yellow; } - -.foo { - &:before { - content: $pi; } } - -.bar { - &:before { - content: $n-ary-summation; } } - -", - "$n-ary-summation: '\\\\2211'; -", - ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", "names": Array [], "sourceRoot": "", "sources": Array [ "test/scss/language.scss", "test/scss/another/_variables.scss", ], - "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; - -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; - -body { - font: 100% $font-stack; - color: $primary-color; -} - -nav { - ul { - margin: 0; - padding: 0; - list-style: none; - } - - li { display: inline-block; } - - a { - display: block; - padding: 6px 12px; - text-decoration: none; - } -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -.box { @include border-radius(10px); } - -.foo { - &:before { - content: $pi; - } -} - -.bar { - &:before { - content: $n-ary-summation; - } -} -", - "$n-ary-summation: '\\\\2211' -", - ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], "sourceRoot": "", "sources": Array [ @@ -2677,114 +1191,118 @@ Object { "test/sass/another/variables.sass", ], "sourcesContent": Array [ - "@import \\"another/variables\\"; -@import \\"./file.css\\"; + "@import \\"another/variables\\" +@import \\"./file.css\\" -$font-stack: Helvetica, sans-serif; -$primary-color: #333; -$pi: '\\\\e0C6'; +$font-stack: Helvetica, sans-serif +$primary-color: #333 +$pi: '\\\\e0C6' -body { - font: 100% $font-stack; - color: $primary-color; } +body + font: 100% $font-stack + color: $primary-color -nav { - ul { - margin: 0; - padding: 0; - list-style: none; } +nav + ul + margin: 0 + padding: 0 + list-style: none - li { - display: inline-block; } + li + display: inline-block - a { - display: block; - padding: 6px 12px; - text-decoration: none; } } + a + display: block + padding: 6px 12px + text-decoration: none -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; } +=border-radius($radius) + -webkit-border-radius: $radius + -moz-border-radius: $radius + -ms-border-radius: $radius + border-radius: $radius -.box { - @include border-radius(10px); } +.box + +border-radius(10px) -.message { - border: 1px solid #ccc; - padding: 10px; - color: #333; } +.message + border: 1px solid #ccc + padding: 10px + color: #333 -.success { - @extend .message; - border-color: green; } +.success + @extend .message + border-color: green -.error { - @extend .message; - border-color: red; } +.error + @extend .message + border-color: red -.warning { - @extend .message; - border-color: yellow; } +.warning + @extend .message + border-color: yellow -.foo { - &:before { - content: $pi; } } +.foo + &:before + content: $pi -.bar { - &:before { - content: $n-ary-summation; } } +.bar + &:before + content: $n-ary-summation ", - "$n-ary-summation: '\\\\2211'; + "$n-ary-summation: '\\\\2211' ", ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` Object { - "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", "names": Array [], "sourceRoot": "", "sources": Array [ @@ -2848,9 +1366,9 @@ nav { } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -2906,13 +1424,24 @@ nav a { }" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "version": 3, +} +`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -2943,208 +1472,31 @@ nav a { .foo:before { content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = `undefined`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = `undefined`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = `undefined`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.message, .success, .error, .warning { - border: 1px solid #ccc; - padding: 10px; - color: #333; } - -.success { - border-color: green; } - -.error { - border-color: red; } - -.warning { - border-color: yellow; } - -.foo:before { - content: \\"\\"; } - -.bar:before { - content: \\"∑\\"; } -" -`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = `undefined`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import url(./file.css); -body { - font: 100% Helvetica, sans-serif; - color: #333; } - -nav ul { - margin: 0; - padding: 0; - list-style: none; } - -nav li { - display: inline-block; } - -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; } - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; } - -.foo:before { - content: \\"\\"; } +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "version": 3, +} +`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -3200,13 +1552,13 @@ nav a { }" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -3244,201 +1596,225 @@ nav a { }" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -3494,13 +1870,13 @@ nav a { }" `; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -3538,152 +1914,172 @@ nav a { }" `; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = `undefined`; +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = `undefined`; -exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; @@ -3694,36 +2090,40 @@ exports[`sourceMap option should not generate source maps when value is not spec exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; diff --git a/test/__snapshots__/warnRuleAsWarning.test.js.snap b/test/__snapshots__/warnRuleAsWarning.test.js.snap index ba0cc6dc..1ed97866 100644 --- a/test/__snapshots__/warnRuleAsWarning.test.js.snap +++ b/test/__snapshots__/warnRuleAsWarning.test.js.snap @@ -64,29 +64,29 @@ test/scss/logging.scss 2:1 root stylesheet exports[`loader should not emit warning by default (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should not emit warning by default (node-sass) (sass): css 1`] = ` +exports[`loader should not emit warning by default (sass-embedded) (sass): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should not emit warning by default (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should not emit warning by default (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should not emit warning by default (node-sass) (sass): logs 1`] = `Array []`; +exports[`loader should not emit warning by default (sass-embedded) (sass): logs 1`] = `Array []`; -exports[`loader should not emit warning by default (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should not emit warning by default (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should not emit warning by default (node-sass) (scss): css 1`] = ` +exports[`loader should not emit warning by default (sass-embedded) (scss): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should not emit warning by default (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should not emit warning by default (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should not emit warning by default (node-sass) (scss): logs 1`] = `Array []`; +exports[`loader should not emit warning by default (sass-embedded) (scss): logs 1`] = `Array []`; -exports[`loader should not emit warning by default (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should not emit warning by default (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should not emit warning when 'false' used (dart-sass) (sass): css 1`] = ` "a { @@ -152,29 +152,29 @@ test/scss/logging.scss 2:1 root stylesheet exports[`loader should not emit warning when 'false' used (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`loader should not emit warning when 'false' used (node-sass) (sass): css 1`] = ` +exports[`loader should not emit warning when 'false' used (sass-embedded) (sass): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should not emit warning when 'false' used (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should not emit warning when 'false' used (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should not emit warning when 'false' used (node-sass) (sass): logs 1`] = `Array []`; +exports[`loader should not emit warning when 'false' used (sass-embedded) (sass): logs 1`] = `Array []`; -exports[`loader should not emit warning when 'false' used (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should not emit warning when 'false' used (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should not emit warning when 'false' used (node-sass) (scss): css 1`] = ` +exports[`loader should not emit warning when 'false' used (sass-embedded) (scss): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should not emit warning when 'false' used (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should not emit warning when 'false' used (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should not emit warning when 'false' used (node-sass) (scss): logs 1`] = `Array []`; +exports[`loader should not emit warning when 'false' used (sass-embedded) (scss): logs 1`] = `Array []`; -exports[`loader should not emit warning when 'false' used (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should not emit warning when 'false' used (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`loader should not emit warning when 'true' used (dart-sass) (sass): css 1`] = ` "a { @@ -232,26 +232,26 @@ My warning message", ] `; -exports[`loader should not emit warning when 'true' used (node-sass) (sass): css 1`] = ` +exports[`loader should not emit warning when 'true' used (sass-embedded) (sass): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should not emit warning when 'true' used (node-sass) (sass): errors 1`] = `Array []`; +exports[`loader should not emit warning when 'true' used (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`loader should not emit warning when 'true' used (node-sass) (sass): logs 1`] = `Array []`; +exports[`loader should not emit warning when 'true' used (sass-embedded) (sass): logs 1`] = `Array []`; -exports[`loader should not emit warning when 'true' used (node-sass) (sass): warnings 1`] = `Array []`; +exports[`loader should not emit warning when 'true' used (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`loader should not emit warning when 'true' used (node-sass) (scss): css 1`] = ` +exports[`loader should not emit warning when 'true' used (sass-embedded) (scss): css 1`] = ` "a { - color: red; } -" + color: red; +}" `; -exports[`loader should not emit warning when 'true' used (node-sass) (scss): errors 1`] = `Array []`; +exports[`loader should not emit warning when 'true' used (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`loader should not emit warning when 'true' used (node-sass) (scss): logs 1`] = `Array []`; +exports[`loader should not emit warning when 'true' used (sass-embedded) (scss): logs 1`] = `Array []`; -exports[`loader should not emit warning when 'true' used (node-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should not emit warning when 'true' used (sass-embedded) (scss): warnings 1`] = `Array []`; diff --git a/test/__snapshots__/webpackImporter-options.test.js.snap b/test/__snapshots__/webpackImporter-options.test.js.snap index ca6bb9f5..e0d62d8d 100644 --- a/test/__snapshots__/webpackImporter-options.test.js.snap +++ b/test/__snapshots__/webpackImporter-options.test.js.snap @@ -102,95 +102,107 @@ exports[`webpackImporter option false (dart-sass) (scss): errors 1`] = `Array [] exports[`webpackImporter option false (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`webpackImporter option false (node-sass) (sass): css 1`] = ` +exports[`webpackImporter option false (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`webpackImporter option false (node-sass) (sass): errors 1`] = `Array []`; +exports[`webpackImporter option false (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`webpackImporter option false (node-sass) (sass): warnings 1`] = `Array []`; +exports[`webpackImporter option false (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`webpackImporter option false (node-sass) (scss): css 1`] = ` +exports[`webpackImporter option false (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`webpackImporter option false (node-sass) (scss): errors 1`] = `Array []`; +exports[`webpackImporter option false (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`webpackImporter option false (node-sass) (scss): warnings 1`] = `Array []`; +exports[`webpackImporter option false (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`webpackImporter option not specify (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -294,95 +306,107 @@ exports[`webpackImporter option not specify (dart-sass) (scss): errors 1`] = `Ar exports[`webpackImporter option not specify (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`webpackImporter option not specify (node-sass) (sass): css 1`] = ` +exports[`webpackImporter option not specify (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`webpackImporter option not specify (node-sass) (sass): errors 1`] = `Array []`; +exports[`webpackImporter option not specify (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`webpackImporter option not specify (node-sass) (sass): warnings 1`] = `Array []`; +exports[`webpackImporter option not specify (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`webpackImporter option not specify (node-sass) (scss): css 1`] = ` +exports[`webpackImporter option not specify (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`webpackImporter option not specify (node-sass) (scss): errors 1`] = `Array []`; +exports[`webpackImporter option not specify (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`webpackImporter option not specify (node-sass) (scss): warnings 1`] = `Array []`; +exports[`webpackImporter option not specify (sass-embedded) (scss): warnings 1`] = `Array []`; exports[`webpackImporter option true (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -486,92 +510,104 @@ exports[`webpackImporter option true (dart-sass) (scss): errors 1`] = `Array []` exports[`webpackImporter option true (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`webpackImporter option true (node-sass) (sass): css 1`] = ` +exports[`webpackImporter option true (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} -.message, .success, .error, .warning { +.message, .warning, .error, .success { border: 1px solid #ccc; padding: 10px; - color: #333; } + color: #333; +} .success { - border-color: green; } + border-color: green; +} .error { - border-color: red; } + border-color: red; +} .warning { - border-color: yellow; } + border-color: yellow; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`webpackImporter option true (node-sass) (sass): errors 1`] = `Array []`; +exports[`webpackImporter option true (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`webpackImporter option true (node-sass) (sass): warnings 1`] = `Array []`; +exports[`webpackImporter option true (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`webpackImporter option true (node-sass) (scss): css 1`] = ` +exports[`webpackImporter option true (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import url(./file.css); +@import \\"./file.css\\"; body { font: 100% Helvetica, sans-serif; - color: #333; } + color: #333; +} nav ul { margin: 0; padding: 0; - list-style: none; } - + list-style: none; +} nav li { - display: inline-block; } - + display: inline-block; +} nav a { display: block; padding: 6px 12px; - text-decoration: none; } + text-decoration: none; +} .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; } + border-radius: 10px; +} .foo:before { - content: \\"\\"; } + content: \\"\\\\e0c6\\"; +} .bar:before { - content: \\"∑\\"; } -" + content: \\"∑\\"; +}" `; -exports[`webpackImporter option true (node-sass) (scss): errors 1`] = `Array []`; +exports[`webpackImporter option true (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`webpackImporter option true (node-sass) (scss): warnings 1`] = `Array []`; +exports[`webpackImporter option true (sass-embedded) (scss): warnings 1`] = `Array []`; diff --git a/test/helpers/getCodeFromSass.js b/test/helpers/getCodeFromSass.js index bd4360f1..11d5ec81 100644 --- a/test/helpers/getCodeFromSass.js +++ b/test/helpers/getCodeFromSass.js @@ -783,20 +783,17 @@ async function getCodeFromSass(testId, options) { sassOptions.logger = { debug: () => {}, warn: () => {} }; - const { css, map } = - typeof implementation.compile !== "undefined" - ? await new Promise((resolve, reject) => { - implementation.render(sassOptions, (error, result) => { - if (error) { - reject(error); - - return; - } - - resolve(result); - }); - }) - : implementation.renderSync(sassOptions); + const { css, map } = await new Promise((resolve, reject) => { + implementation.render(sassOptions, (error, result) => { + if (error) { + reject(error); + + return; + } + + resolve(result); + }); + }); return { css: css.toString(), sourceMap: map }; } diff --git a/test/helpers/getImplementations.js b/test/helpers/getImplementations.js index 08ae2292..9e68ac55 100644 --- a/test/helpers/getImplementations.js +++ b/test/helpers/getImplementations.js @@ -1,8 +1,9 @@ -import nodeSass from "node-sass"; +// import nodeSass from "node-sass"; import dartSass from "sass"; // eslint-disable-next-line import/no-namespace import * as sassEmbedded from "sass-embedded"; export default function getImplementations() { - return [nodeSass, dartSass, sassEmbedded]; + // TODO fix me + return [/* nodeSass, */ dartSass, sassEmbedded]; } diff --git a/test/warnRuleAsWarning.test.js b/test/warnRuleAsWarning.test.js index e5769da1..7eb331c9 100644 --- a/test/warnRuleAsWarning.test.js +++ b/test/warnRuleAsWarning.test.js @@ -17,7 +17,7 @@ import { jest.setTimeout(60000); let Fiber; -const implementations = getImplementations({ nodeSass: false }); +const implementations = getImplementations(); const syntaxStyles = ["scss", "sass"]; describe("loader", () => { From a56e242a96caa389bf4ce9a384310a4635732cc5 Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Mon, 10 Jan 2022 16:09:09 +0300 Subject: [PATCH 4/5] test: fix --- src/utils.js | 6 +- .../implementation-option.test.js.snap | 16 +++ .../sassOptions-option.test.js.snap | 120 ++++++++++++++++++ test/implementation-option.test.js | 16 +-- 4 files changed, 148 insertions(+), 10 deletions(-) diff --git a/src/utils.js b/src/utils.js index c5dba78d..263bc833 100644 --- a/src/utils.js +++ b/src/utils.js @@ -629,9 +629,11 @@ let nodeSassJobQueue = null; * @returns {Function} */ function getRenderFunctionFromSassImplementation(implementation) { - const isDartSass = implementation.info.includes("dart-sass"); + const isNewSass = + implementation.info.includes("dart-sass") || + implementation.info.includes("sass-embedded"); - if (isDartSass) { + if (isNewSass) { return implementation.render.bind(implementation); } diff --git a/test/__snapshots__/implementation-option.test.js.snap b/test/__snapshots__/implementation-option.test.js.snap index 78048526..194587bc 100644 --- a/test/__snapshots__/implementation-option.test.js.snap +++ b/test/__snapshots__/implementation-option.test.js.snap @@ -1,9 +1,25 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP +exports[`implementation option dart-sass: errors 1`] = `Array []`; + +exports[`implementation option dart-sass: warnings 1`] = `Array []`; + +exports[`implementation option node-sass: errors 1`] = `Array []`; + +exports[`implementation option node-sass: warnings 1`] = `Array []`; + exports[`implementation option not specify: errors 1`] = `Array []`; exports[`implementation option not specify: warnings 1`] = `Array []`; +exports[`implementation option sass_string: errors 1`] = `Array []`; + +exports[`implementation option sass_string: warnings 1`] = `Array []`; + +exports[`implementation option sass-embedded: errors 1`] = `Array []`; + +exports[`implementation option sass-embedded: warnings 1`] = `Array []`; + exports[`implementation option should not swallow an error when trying to load a sass implementation: errors 1`] = ` Array [ "ModuleError: Module Error (from ../src/cjs.js): diff --git a/test/__snapshots__/sassOptions-option.test.js.snap b/test/__snapshots__/sassOptions-option.test.js.snap index 67fdab12..67d80f3e 100644 --- a/test/__snapshots__/sassOptions-option.test.js.snap +++ b/test/__snapshots__/sassOptions-option.test.js.snap @@ -828,6 +828,66 @@ exports[`sassOptions option should use "compressed" output style in the "product exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): warnings 1`] = `Array []`; + exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -1788,6 +1848,66 @@ exports[`sassOptions option should work when the option like "Object" (sass-embe exports[`sassOptions option should work when the option like "Object" (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "fiber" option (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should work with the "fiber" option (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "fiber" option (dart-sass) (sass): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "fiber" option (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; diff --git a/test/implementation-option.test.js b/test/implementation-option.test.js index 23350630..df02ee1a 100644 --- a/test/implementation-option.test.js +++ b/test/implementation-option.test.js @@ -42,10 +42,10 @@ describe("implementation option", () => { [implementationName] = implementation.info.split("\t"); } - it.skip(`${implementationName}`, async () => { + it(`${implementationName}`, async () => { const nodeSassSpy = jest.spyOn(nodeSass, "render"); const dartSassSpy = jest.spyOn(dartSass, "render"); - // const sassEmbeddedSpy = jest.spyOn(sassEmbedded, "render"); + const sassEmbeddedSpy = jest.spyOn(sassEmbedded, "render"); const testId = getTestId("language", "scss"); const options = { @@ -64,23 +64,23 @@ describe("implementation option", () => { if (implementationName === "node-sass") { expect(nodeSassSpy).toHaveBeenCalledTimes(1); expect(dartSassSpy).toHaveBeenCalledTimes(0); - // expect(sassEmbeddedSpy).toHaveBeenCalledTimes(0); + expect(sassEmbeddedSpy).toHaveBeenCalledTimes(0); } else if ( implementationName === "dart-sass" || implementationName === "dart-sass_string" ) { expect(nodeSassSpy).toHaveBeenCalledTimes(0); expect(dartSassSpy).toHaveBeenCalledTimes(1); - // expect(sassEmbeddedSpy).toHaveBeenCalledTimes(0); + expect(sassEmbeddedSpy).toHaveBeenCalledTimes(0); } else if (implementationName === "sass-embedded") { expect(nodeSassSpy).toHaveBeenCalledTimes(0); expect(dartSassSpy).toHaveBeenCalledTimes(0); - // expect(sassEmbeddedSpy).toHaveBeenCalledTimes(1); + expect(sassEmbeddedSpy).toHaveBeenCalledTimes(1); } - nodeSassSpy.mockRestore(); - dartSassSpy.mockRestore(); - // sassEmbeddedSpy.mockRestore(); + nodeSassSpy.mockClear(); + dartSassSpy.mockClear(); + sassEmbeddedSpy.mockClear(); }); }); From a87e113e78ca845bc295550641561805ae7984a6 Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Mon, 10 Jan 2022 16:20:06 +0300 Subject: [PATCH 5/5] test: fix --- .../additionalData-option.test.js.snap | 86 + .../sassOptions-option.test.js.snap | 1836 +++++++++++++++-- .../sourceMap-options.test.js.snap | 1756 +++++++++++++--- .../warnRuleAsWarning.test.js.snap | 72 + .../webpackImporter-options.test.js.snap | 270 +++ test/helpers/getImplementations.js | 5 +- 6 files changed, 3540 insertions(+), 485 deletions(-) diff --git a/test/__snapshots__/additionalData-option.test.js.snap b/test/__snapshots__/additionalData-option.test.js.snap index f7398f9f..f533a0ca 100644 --- a/test/__snapshots__/additionalData-option.test.js.snap +++ b/test/__snapshots__/additionalData-option.test.js.snap @@ -28,6 +28,32 @@ exports[`additionalData option should use same EOL on all os (dart-sass) (scss): exports[`additionalData option should use same EOL on all os (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should use same EOL on all os (node-sass) (sass): css 1`] = ` +"a { + color: hotpink; } + +body { + color: hotpink; } +" +`; + +exports[`additionalData option should use same EOL on all os (node-sass) (sass): errors 1`] = `Array []`; + +exports[`additionalData option should use same EOL on all os (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`additionalData option should use same EOL on all os (node-sass) (scss): css 1`] = ` +"a { + color: red; } + +body { + color: hotpink; } +" +`; + +exports[`additionalData option should use same EOL on all os (node-sass) (scss): errors 1`] = `Array []`; + +exports[`additionalData option should use same EOL on all os (node-sass) (scss): warnings 1`] = `Array []`; + exports[`additionalData option should use same EOL on all os (sass-embedded) (sass): css 1`] = ` "a { color: hotpink; @@ -76,6 +102,26 @@ exports[`additionalData option should work as a function (dart-sass) (scss): err exports[`additionalData option should work as a function (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should work as a function (node-sass) (sass): css 1`] = ` +"body { + color: hotpink; } +" +`; + +exports[`additionalData option should work as a function (node-sass) (sass): errors 1`] = `Array []`; + +exports[`additionalData option should work as a function (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`additionalData option should work as a function (node-sass) (scss): css 1`] = ` +"body { + color: hotpink; } +" +`; + +exports[`additionalData option should work as a function (node-sass) (scss): errors 1`] = `Array []`; + +exports[`additionalData option should work as a function (node-sass) (scss): warnings 1`] = `Array []`; + exports[`additionalData option should work as a function (sass-embedded) (sass): css 1`] = ` "body { color: hotpink; @@ -116,6 +162,26 @@ exports[`additionalData option should work as a string (dart-sass) (scss): error exports[`additionalData option should work as a string (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should work as a string (node-sass) (sass): css 1`] = ` +"body { + color: hotpink; } +" +`; + +exports[`additionalData option should work as a string (node-sass) (sass): errors 1`] = `Array []`; + +exports[`additionalData option should work as a string (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`additionalData option should work as a string (node-sass) (scss): css 1`] = ` +"body { + color: hotpink; } +" +`; + +exports[`additionalData option should work as a string (node-sass) (scss): errors 1`] = `Array []`; + +exports[`additionalData option should work as a string (node-sass) (scss): warnings 1`] = `Array []`; + exports[`additionalData option should work as a string (sass-embedded) (sass): css 1`] = ` "body { color: hotpink; @@ -156,6 +222,26 @@ exports[`additionalData option should work as an async function (dart-sass) (scs exports[`additionalData option should work as an async function (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`additionalData option should work as an async function (node-sass) (sass): css 1`] = ` +"body { + color: hotpink; } +" +`; + +exports[`additionalData option should work as an async function (node-sass) (sass): errors 1`] = `Array []`; + +exports[`additionalData option should work as an async function (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`additionalData option should work as an async function (node-sass) (scss): css 1`] = ` +"body { + color: hotpink; } +" +`; + +exports[`additionalData option should work as an async function (node-sass) (scss): errors 1`] = `Array []`; + +exports[`additionalData option should work as an async function (node-sass) (scss): warnings 1`] = `Array []`; + exports[`additionalData option should work as an async function (sass-embedded) (sass): css 1`] = ` "body { color: hotpink; diff --git a/test/__snapshots__/sassOptions-option.test.js.snap b/test/__snapshots__/sassOptions-option.test.js.snap index 67d80f3e..e7372b6f 100644 --- a/test/__snapshots__/sassOptions-option.test.js.snap +++ b/test/__snapshots__/sassOptions-option.test.js.snap @@ -1,108 +1,96 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): css 1`] = ` +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; - color: #333; -} + color: #333; } .success { - border-color: green; -} + border-color: green; } .error { - border-color: red; -} + border-color: red; } .warning { - border-color: yellow; -} + border-color: yellow; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): css 1`] = ` +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (dart-sass) (sass): css 1`] = ` +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -158,11 +146,11 @@ nav a { }" `; -exports[`sassOptions option should ignore the "data" option (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): css 1`] = ` +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -200,11 +188,11 @@ nav a { }" `; -exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should don't use the "fibers" package when the "fiber" option is "false" (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -260,11 +248,11 @@ nav a { }" `; -exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -302,113 +290,101 @@ nav a { }" `; -exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (dart-sass) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (node-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; - color: #333; -} + color: #333; } .success { - border-color: green; -} + border-color: green; } .error { - border-color: red; -} + border-color: red; } .warning { - border-color: yellow; -} + border-color: yellow; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sassOptions option should ignore the "file" option (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (node-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (node-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (node-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -464,11 +440,11 @@ nav a { }" `; -exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -506,11 +482,11 @@ nav a { }" `; -exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "data" option (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -566,11 +542,11 @@ nav a { }" `; -exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -608,125 +584,101 @@ nav a { }" `; -exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (node-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; - color: #333; -} + color: #333; } .success { - border-color: green; -} + border-color: green; } .error { - border-color: red; -} + border-color: red; } .warning { - border-color: yellow; -} + border-color: yellow; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (node-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (node-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): warnings 1`] = `Array []`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (sass): css 1`] = `"@import\\"./file.css\\";body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.message,.warning,.error,.success{border:1px solid #ccc;padding:10px;color:#333}.success{border-color:green}.error{border-color:red}.warning{border-color:#ff0}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"}"`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (sass): errors 1`] = `Array []`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (sass): warnings 1`] = `Array []`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (scss): css 1`] = `"@import\\"./file.css\\";body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"}"`; - -exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (node-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -782,11 +734,11 @@ nav a { }" `; -exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): css 1`] = ` +exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -824,11 +776,11 @@ nav a { }" `; -exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should ignore the "file" option (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): css 1`] = ` +exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -884,11 +836,11 @@ nav a { }" `; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): css 1`] = ` +exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -926,13 +878,13 @@ nav a { }" `; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): css 1`] = ` +exports[`sassOptions option should respect the "outputStyle" option (node-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; color: #333; @@ -943,9 +895,11 @@ nav ul { padding: 0; list-style: none; } + nav li { display: inline-block; } + nav a { display: block; padding: 6px 12px; @@ -959,7 +913,7 @@ nav a { border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; color: #333; @@ -978,21 +932,22 @@ nav a { } .foo:before { - content: \\"\\\\e0c6\\"; + content: \\"\\"; } .bar:before { content: \\"∑\\"; -}" +} +" `; -exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (node-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): css 1`] = ` +exports[`sassOptions option should respect the "outputStyle" option (node-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; color: #333; @@ -1003,9 +958,11 @@ nav ul { padding: 0; list-style: none; } + nav li { display: inline-block; } + nav a { display: block; padding: 6px 12px; @@ -1020,19 +977,20 @@ nav a { } .foo:before { - content: \\"\\\\e0c6\\"; + content: \\"\\"; } .bar:before { content: \\"∑\\"; -}" +} +" `; -exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (node-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): css 1`] = ` +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -1088,9 +1046,537 @@ nav a { }" `; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should respect the "outputStyle" option (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (sass): css 1`] = `"@import\\"./file.css\\";body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.message,.warning,.error,.success{border:1px solid #ccc;padding:10px;color:#333}.success{border-color:green}.error{border-color:red}.warning{border-color:#ff0}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"}"`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (scss): css 1`] = `"@import\\"./file.css\\";body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"}"`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (sass): css 1`] = ` +"@import url(./file.css);body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.message,.success,.error,.warning{border:1px solid #ccc;padding:10px;color:#333}.success{border-color:green}.error{border-color:red}.warning{border-color:yellow}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"} +" +`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (scss): css 1`] = ` +"@import url(./file.css);body{font:100% Helvetica,sans-serif;color:#333}nav ul{margin:0;padding:0;list-style:none}nav li{display:inline-block}nav a{display:block;padding:6px 12px;text-decoration:none}.box{-webkit-border-radius:10px;-moz-border-radius:10px;-ms-border-radius:10px;border-radius:10px}.foo:before{content:\\"\\"}.bar:before{content:\\"∑\\"} +" +`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should use "compressed" output style in the "production" mode (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should use the "fibers" package if it is possible (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (sass): warnings 1`] = `Array []`; exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @@ -1134,6 +1620,96 @@ exports[`sassOptions option should work when the option is empty "Object" (dart- exports[`sassOptions option should work when the option is empty "Object" (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option is empty "Object" (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option is empty "Object" (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option is empty "Object" (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option is empty "Object" (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work when the option is empty "Object" (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -1334,9 +1910,99 @@ nav a { }" `; -exports[`sassOptions option should work when the option like "Function" (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Function" (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Function" (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option like "Function" (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Function" (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Function" (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option like "Function" (node-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work when the option like "Function" (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" (node-sass) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work when the option like "Function" (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -1542,6 +2208,96 @@ exports[`sassOptions option should work when the option like "Function" and neve exports[`sassOptions option should work when the option like "Function" and never return (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Function" and never return (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work when the option like "Function" and never return (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -1746,6 +2502,96 @@ exports[`sassOptions option should work when the option like "Object" (dart-sass exports[`sassOptions option should work when the option like "Object" (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work when the option like "Object" (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option like "Object" (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Object" (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Object" (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work when the option like "Object" (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work when the option like "Object" (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work when the option like "Object" (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -1950,6 +2796,96 @@ exports[`sassOptions option should work with the "fiber" option (dart-sass) (scs exports[`sassOptions option should work with the "fiber" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "fiber" option (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "fiber" option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "fiber" option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "fiber" option (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "fiber" option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "fiber" option (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "fiber" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -2072,6 +3008,26 @@ exports[`sassOptions option should work with the "functions" option (dart-sass) exports[`sassOptions option should work with the "functions" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "functions" option (node-sass) (sass): css 1`] = ` +"h2, h3, h4, h5 { + color: #08c; } +" +`; + +exports[`sassOptions option should work with the "functions" option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "functions" option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "functions" option (node-sass) (scss): css 1`] = ` +"h2, h3, h4, h5 { + color: #08c; } +" +`; + +exports[`sassOptions option should work with the "functions" option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "functions" option (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "importer" as a array of functions option (dart-sass) (sass): css 1`] = `""`; exports[`sassOptions option should work with the "importer" as a array of functions option (dart-sass) (sass): css 2`] = ` @@ -2112,6 +3068,44 @@ exports[`sassOptions option should work with the "importer" as a array of functi exports[`sassOptions option should work with the "importer" as a array of functions option (dart-sass) (scss): warnings 2`] = `Array []`; +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): css 1`] = `""`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): css 2`] = ` +".a { + color: red; } + +.b { + color: blue; } +" +`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): errors 2`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (sass): warnings 2`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): css 1`] = `""`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): css 2`] = ` +".a { + color: red; } + +.b { + color: blue; } +" +`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): errors 2`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a array of functions option (node-sass) (scss): warnings 2`] = `Array []`; + exports[`sassOptions option should work with the "importer" as a single function option (dart-sass) (sass): css 1`] = `""`; exports[`sassOptions option should work with the "importer" as a single function option (dart-sass) (sass): css 2`] = ` @@ -2144,33 +3138,91 @@ exports[`sassOptions option should work with the "importer" as a single function exports[`sassOptions option should work with the "importer" as a single function option (dart-sass) (scss): warnings 2`] = `Array []`; +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): css 1`] = `""`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): css 2`] = ` +".a { + color: red; } +" +`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): errors 2`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (sass): warnings 2`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): css 1`] = `""`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): css 2`] = ` +".a { + color: red; } +" +`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): errors 2`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "importer" as a single function option (node-sass) (scss): warnings 2`] = `Array []`; + exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): css 1`] = ` ".include-path-module { background: hotpink; } ._underscore-include-path-module { - background: hotpink; -}" + background: hotpink; +}" +`; + +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): css 1`] = ` +".include-path-module { + background: hotpink; +} + +._underscore-include-path-module { + background: hotpink; +}" +`; + +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "includePaths" option (node-sass) (sass): css 1`] = ` +".include-path-module { + background: hotpink; } + +._underscore-include-path-module { + background: hotpink; } +" `; -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (node-sass) (sass): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): css 1`] = ` +exports[`sassOptions option should work with the "includePaths" option (node-sass) (scss): css 1`] = ` ".include-path-module { - background: hotpink; -} + background: hotpink; } ._underscore-include-path-module { - background: hotpink; -}" + background: hotpink; } +" `; -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (node-sass) (scss): errors 1`] = `Array []`; -exports[`sassOptions option should work with the "includePaths" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "includePaths" option (node-sass) (scss): warnings 1`] = `Array []`; exports[`sassOptions option should work with the "indentType" option (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -2274,6 +3326,96 @@ exports[`sassOptions option should work with the "indentType" option (dart-sass) exports[`sassOptions option should work with the "indentType" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentType" option (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "indentType" option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentType" option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentType" option (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "indentType" option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentType" option (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "indentType" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -2478,6 +3620,96 @@ exports[`sassOptions option should work with the "indentWidth" option (dart-sass exports[`sassOptions option should work with the "indentWidth" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentWidth" option (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "indentWidth" option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentWidth" option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentWidth" option (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "indentWidth" option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentWidth" option (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "indentWidth" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -2682,6 +3914,96 @@ exports[`sassOptions option should work with the "indentedSyntax" option (dart-s exports[`sassOptions option should work with the "indentedSyntax" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "indentedSyntax" option (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "indentedSyntax" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -2886,6 +4208,96 @@ exports[`sassOptions option should work with the "linefeed" option (dart-sass) ( exports[`sassOptions option should work with the "linefeed" option (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sassOptions option should work with the "linefeed" option (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "linefeed" option (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "linefeed" option (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sassOptions option should work with the "linefeed" option (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sassOptions option should work with the "linefeed" option (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sassOptions option should work with the "linefeed" option (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sassOptions option should work with the "linefeed" option (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; diff --git a/test/__snapshots__/sourceMap-options.test.js.snap b/test/__snapshots__/sourceMap-options.test.js.snap index e84681a8..85226108 100644 --- a/test/__snapshots__/sourceMap-options.test.js.snap +++ b/test/__snapshots__/sourceMap-options.test.js.snap @@ -247,6 +247,241 @@ nav { exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): source map 1`] = ` +Object { + "file": "style.css.map", + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "sass/language.sass", + "sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; } + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } + + li { + display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } + +.box { + @include border-radius(10px); } + +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + @extend .message; + border-color: green; } + +.error { + @extend .message; + border-color: red; } + +.warning { + @extend .message; + border-color: yellow; } + +.foo { + &:before { + content: $pi; } } + +.bar { + &:before { + content: $n-ary-summation; } } + +", + "$n-ary-summation: '\\\\2211'; +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): source map 1`] = ` +Object { + "file": "style.css.map", + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "scss/language.scss", + "scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sourceMap option should generate source maps when value has "false" value, but the "sassOptions.sourceMap" has the "true" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -492,71 +727,910 @@ nav @extend .message border-color: red -.warning - @extend .message - border-color: yellow +.warning + @extend .message + border-color: yellow + +.foo + &:before + content: $pi + +.bar + &:before + content: $n-ary-summation + +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; } + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } + + li { + display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } + +.box { + @include border-radius(10px); } + +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + @extend .message; + border-color: green; } + +.error { + @extend .message; + border-color: red; } + +.warning { + @extend .message; + border-color: yellow; } + +.foo { + &:before { + content: $pi; } } + +.bar { + &:before { + content: $n-ary-summation; } } + +", + "$n-ary-summation: '\\\\2211'; +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.message, .warning, .error, .success { + border: 1px solid #ccc; + padding: 10px; + color: #333; +} + +.success { + border-color: green; +} + +.error { + border-color: red; +} + +.warning { + border-color: yellow; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\" +@import \\"./file.css\\" + +$font-stack: Helvetica, sans-serif +$primary-color: #333 +$pi: '\\\\e0C6' + +body + font: 100% $font-stack + color: $primary-color + +nav + ul + margin: 0 + padding: 0 + list-style: none + + li + display: inline-block + + a + display: block + padding: 6px 12px + text-decoration: none + +=border-radius($radius) + -webkit-border-radius: $radius + -moz-border-radius: $radius + -ms-border-radius: $radius + border-radius: $radius + +.box + +border-radius(10px) + +.message + border: 1px solid #ccc + padding: 10px + color: #333 + +.success + @extend .message + border-color: green + +.error + @extend .message + border-color: red + +.warning + @extend .message + border-color: yellow + +.foo + &:before + content: $pi + +.bar + &:before + content: $n-ary-summation + +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import \\"./file.css\\"; +body { + font: 100% Helvetica, sans-serif; + color: #333; +} + +nav ul { + margin: 0; + padding: 0; + list-style: none; +} +nav li { + display: inline-block; +} +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; +} + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; +} + +.foo:before { + content: \\"\\\\e0c6\\"; +} + +.bar:before { + content: \\"∑\\"; +}" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` +Object { + "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/scss/language.scss", + "test/scss/another/_variables.scss", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; +} + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; + } + + li { display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; + } +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; +} + +.box { @include border-radius(10px); } + +.foo { + &:before { + content: $pi; + } +} + +.bar { + &:before { + content: $n-ary-summation; + } +} +", + "$n-ary-summation: '\\\\2211' +", + ], + "version": 3, +} +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): source map 1`] = ` +Object { + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", + "names": Array [], + "sourceRoot": "", + "sources": Array [ + "test/sass/language.sass", + "test/sass/another/variables.sass", + ], + "sourcesContent": Array [ + "@import \\"another/variables\\"; +@import \\"./file.css\\"; + +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; + +body { + font: 100% $font-stack; + color: $primary-color; } + +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } + + li { + display: inline-block; } + + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } + +.box { + @include border-radius(10px); } + +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + @extend .message; + border-color: green; } + +.error { + @extend .message; + border-color: red; } + +.warning { + @extend .message; + border-color: yellow; } -.foo - &:before - content: $pi +.foo { + &:before { + content: $pi; } } -.bar - &:before - content: $n-ary-summation +.bar { + &:before { + content: $n-ary-summation; } } ", - "$n-ary-summation: '\\\\2211' + "$n-ary-summation: '\\\\2211'; ", ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): source map 1`] = ` Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", "names": Array [], "sourceRoot": "", "sources": Array [ @@ -620,9 +1694,9 @@ nav { } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -678,9 +1752,9 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` Object { "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], @@ -693,9 +1767,9 @@ Object { } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -733,9 +1807,9 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` Object { "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", "names": Array [], @@ -748,9 +1822,9 @@ Object { } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "false" value (sass-embedded) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -806,9 +1880,9 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` Object { "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", "names": Array [], @@ -885,9 +1959,9 @@ nav } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; body { @@ -925,9 +1999,9 @@ nav a { }" `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` Object { "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", "names": Array [], @@ -993,197 +2067,61 @@ nav { } `; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.message, .warning, .error, .success { - border: 1px solid #ccc; - padding: 10px; - color: #333; -} - -.success { - border-color: green; -} - -.error { - border-color: red; -} - -.warning { - border-color: yellow; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): source map 1`] = ` -Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/sass/language.sass", - "test/sass/another/variables.sass", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (sass): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} + list-style: none; } -nav ul { - margin: 0; - padding: 0; - list-style: none; -} nav li { - display: inline-block; -} -nav a { - display: block; - padding: 6px 12px; - text-decoration: none; -} - -.box { - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - -ms-border-radius: 10px; - border-radius: 10px; -} - -.foo:before { - content: \\"\\\\e0c6\\"; -} - -.bar:before { - content: \\"∑\\"; -}" -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): errors 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): source map 1`] = ` -Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", - "names": Array [], - "sourceRoot": "", - "sources": Array [ - "test/scss/language.scss", - "test/scss/another/_variables.scss", - ], - "version": 3, -} -`; - -exports[`sourceMap option should generate source maps when value has "true" value and the "devtool" option has "source-map" value (sass-embedded) (scss): warnings 1`] = `Array []`; - -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): css 1`] = ` -"@charset \\"UTF-8\\"; -@import \\"./file.css\\"; -body { - font: 100% Helvetica, sans-serif; - color: #333; -} + display: inline-block; } -nav ul { - margin: 0; - padding: 0; - list-style: none; -} -nav li { - display: inline-block; -} nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } -.message, .warning, .error, .success { +.message, .success, .error, .warning { border: 1px solid #ccc; padding: 10px; - color: #333; -} + color: #333; } .success { - border-color: green; -} + border-color: green; } .error { - border-color: red; -} + border-color: red; } .warning { - border-color: yellow; -} + border-color: yellow; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): source map 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): source map 1`] = ` Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AAQd;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;;AAQJ;EALE,uBAMe;EALf,oBAKe;EAJf,mBAIe;EAHf,eAGe;;;AAEjB;EACE;EACA;EACA;;;AAEF;EAEE;;;AAEF;EAEE;;;AAEF;EAEE;;;AAGA;EACE,SAhDY;;;AAmDd;EACE,SCzDc", + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAKM;;AAE1B,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GAAG;;AAJvB,AAME,GANC,CAMD,EAAE,CAAC;EACD,OAAO,EAAE,YAAY,GAAG;;AAP5B,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GAAG;;AAQ5B,AAAA,IAAI,CAAC;EALH,qBAAqB,EAME,IAAI;EAL3B,kBAAkB,EAKK,IAAI;EAJ3B,iBAAiB,EAIM,IAAI;EAH3B,aAAa,EAGU,IAAI,GAAI;;AAEjC,AAAA,QAAQ,EAKR,QAAQ,EAIR,MAAM,EAIN,QAAQ,CAbC;EACP,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI,GAAG;;AAEhB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,KAAK,GAAG;;AAExB,AAAA,MAAM,CAAC;EAEL,YAAY,EAAE,GAAG,GAAG;;AAEtB,AAAA,QAAQ,CAAC;EAEP,YAAY,EAAE,MAAM,GAAG;;AAEzB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAhDK,IAAO,GAgDJ;;AAEnB,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,ECzDO,IAAO,GDyDO", "names": Array [], "sourceRoot": "", "sources": Array [ @@ -1191,118 +2129,114 @@ Object { "test/sass/another/variables.sass", ], "sourcesContent": Array [ - "@import \\"another/variables\\" -@import \\"./file.css\\" - -$font-stack: Helvetica, sans-serif -$primary-color: #333 -$pi: '\\\\e0C6' - -body - font: 100% $font-stack - color: $primary-color + "@import \\"another/variables\\"; +@import \\"./file.css\\"; -nav - ul - margin: 0 - padding: 0 - list-style: none +$font-stack: Helvetica, sans-serif; +$primary-color: #333; +$pi: '\\\\e0C6'; - li - display: inline-block +body { + font: 100% $font-stack; + color: $primary-color; } - a - display: block - padding: 6px 12px - text-decoration: none +nav { + ul { + margin: 0; + padding: 0; + list-style: none; } -=border-radius($radius) - -webkit-border-radius: $radius - -moz-border-radius: $radius - -ms-border-radius: $radius - border-radius: $radius + li { + display: inline-block; } -.box - +border-radius(10px) + a { + display: block; + padding: 6px 12px; + text-decoration: none; } } -.message - border: 1px solid #ccc - padding: 10px - color: #333 +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + border-radius: $radius; } -.success - @extend .message - border-color: green +.box { + @include border-radius(10px); } -.error - @extend .message - border-color: red +.message { + border: 1px solid #ccc; + padding: 10px; + color: #333; } -.warning - @extend .message - border-color: yellow +.success { + @extend .message; + border-color: green; } -.foo - &:before - content: $pi +.error { + @extend .message; + border-color: red; } -.bar - &:before - content: $n-ary-summation +.warning { + @extend .message; + border-color: yellow; } + +.foo { + &:before { + content: $pi; } } + +.bar { + &:before { + content: $n-ary-summation; } } ", - "$n-ary-summation: '\\\\2211' + "$n-ary-summation: '\\\\2211'; ", ], "version": 3, } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (sass): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (sass): warnings 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): css 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): css 1`] = ` "@charset \\"UTF-8\\"; -@import \\"./file.css\\"; +@import url(./file.css); body { font: 100% Helvetica, sans-serif; - color: #333; -} + color: #333; } nav ul { margin: 0; padding: 0; - list-style: none; -} + list-style: none; } + nav li { - display: inline-block; -} + display: inline-block; } + nav a { display: block; padding: 6px 12px; - text-decoration: none; -} + text-decoration: none; } .box { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; - border-radius: 10px; -} + border-radius: 10px; } .foo:before { - content: \\"\\\\e0c6\\"; -} + content: \\"\\"; } .bar:before { - content: \\"∑\\"; -}" + content: \\"∑\\"; } +" `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): errors 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): errors 1`] = `Array []`; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): source map 1`] = ` +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): source map 1`] = ` Object { - "mappings": ";AACQ;AAMR;EACE;EACA,OALc;;;AASd;EACE;EACA;EACA;;AAGF;EAAK;;AAEL;EACE;EACA;EACA;;;AAWJ;EANE,uBAM4B;EALzB,oBAKyB;EAJxB,mBAIwB;EAHpB,eAGoB;;;AAG5B;EACE,SAlCY;;;AAuCd;EACE,SC7Cc", + "mappings": ";AACA,OAAO,CAAP,eAAO;AAMP,AAAA,IAAI,CAAC;EACH,IAAI,EAAE,IAAI,CALI,SAAS,EAAE,UAAU;EAMnC,KAAK,EALS,IAAI,GAMnB;;AAED,AACE,GADC,CACD,EAAE,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI,GACjB;;AALH,AAOE,GAPC,CAOD,EAAE,CAAC;EAAE,OAAO,EAAE,YAAY,GAAI;;AAPhC,AASE,GATC,CASD,CAAC,CAAC;EACA,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,QAAQ;EACjB,eAAe,EAAE,IAAI,GACtB;;AAUH,AAAA,IAAI,CAAC;EANH,qBAAqB,EAMO,IAAI;EAL7B,kBAAkB,EAKO,IAAI;EAJ5B,iBAAiB,EAIO,IAAI;EAHxB,aAAa,EAGO,IAAI,GAAK;;AAEvC,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EAlCK,IAAO,GAmCpB;;AAGH,AACE,IADE,AACD,OAAO,CAAC;EACP,OAAO,EC7CO,IAAO,GD8CtB", "names": Array [], "sourceRoot": "", "sources": Array [ @@ -1366,7 +2300,7 @@ nav { } `; -exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; exports[`sourceMap option should generate source maps when value is not specified and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @@ -1602,6 +2536,100 @@ exports[`sourceMap option should not generate source maps when value has "false" exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -1814,6 +2842,100 @@ exports[`sourceMap option should not generate source maps when value has "false" exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sourceMap option should not generate source maps when value has "false" value and the "devtool" option has "source-map" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -2026,6 +3148,100 @@ exports[`sourceMap option should not generate source maps when value is not spec exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): errors 1`] = `Array []`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): source map 1`] = `undefined`; + +exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (node-sass) (scss): warnings 1`] = `Array []`; + exports[`sourceMap option should not generate source maps when value is not specified and the "devtool" option has "false" value (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; diff --git a/test/__snapshots__/warnRuleAsWarning.test.js.snap b/test/__snapshots__/warnRuleAsWarning.test.js.snap index 1ed97866..53e1ea58 100644 --- a/test/__snapshots__/warnRuleAsWarning.test.js.snap +++ b/test/__snapshots__/warnRuleAsWarning.test.js.snap @@ -64,6 +64,30 @@ test/scss/logging.scss 2:1 root stylesheet exports[`loader should not emit warning by default (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should not emit warning by default (node-sass) (sass): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning by default (node-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (sass): logs 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (scss): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning by default (node-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (scss): logs 1`] = `Array []`; + +exports[`loader should not emit warning by default (node-sass) (scss): warnings 1`] = `Array []`; + exports[`loader should not emit warning by default (sass-embedded) (sass): css 1`] = ` "a { color: red; @@ -152,6 +176,30 @@ test/scss/logging.scss 2:1 root stylesheet exports[`loader should not emit warning when 'false' used (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`loader should not emit warning when 'false' used (node-sass) (sass): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'false' used (node-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (sass): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'false' used (node-sass) (scss): warnings 1`] = `Array []`; + exports[`loader should not emit warning when 'false' used (sass-embedded) (sass): css 1`] = ` "a { color: red; @@ -232,6 +280,30 @@ My warning message", ] `; +exports[`loader should not emit warning when 'true' used (node-sass) (sass): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'true' used (node-sass) (sass): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (sass): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): css 1`] = ` +"a { + color: red; } +" +`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): errors 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): logs 1`] = `Array []`; + +exports[`loader should not emit warning when 'true' used (node-sass) (scss): warnings 1`] = `Array []`; + exports[`loader should not emit warning when 'true' used (sass-embedded) (sass): css 1`] = ` "a { color: red; diff --git a/test/__snapshots__/webpackImporter-options.test.js.snap b/test/__snapshots__/webpackImporter-options.test.js.snap index e0d62d8d..b7b9c753 100644 --- a/test/__snapshots__/webpackImporter-options.test.js.snap +++ b/test/__snapshots__/webpackImporter-options.test.js.snap @@ -102,6 +102,96 @@ exports[`webpackImporter option false (dart-sass) (scss): errors 1`] = `Array [] exports[`webpackImporter option false (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`webpackImporter option false (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`webpackImporter option false (node-sass) (sass): errors 1`] = `Array []`; + +exports[`webpackImporter option false (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`webpackImporter option false (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`webpackImporter option false (node-sass) (scss): errors 1`] = `Array []`; + +exports[`webpackImporter option false (node-sass) (scss): warnings 1`] = `Array []`; + exports[`webpackImporter option false (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -306,6 +396,96 @@ exports[`webpackImporter option not specify (dart-sass) (scss): errors 1`] = `Ar exports[`webpackImporter option not specify (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`webpackImporter option not specify (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`webpackImporter option not specify (node-sass) (sass): errors 1`] = `Array []`; + +exports[`webpackImporter option not specify (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`webpackImporter option not specify (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`webpackImporter option not specify (node-sass) (scss): errors 1`] = `Array []`; + +exports[`webpackImporter option not specify (node-sass) (scss): warnings 1`] = `Array []`; + exports[`webpackImporter option not specify (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; @@ -510,6 +690,96 @@ exports[`webpackImporter option true (dart-sass) (scss): errors 1`] = `Array []` exports[`webpackImporter option true (dart-sass) (scss): warnings 1`] = `Array []`; +exports[`webpackImporter option true (node-sass) (sass): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.message, .success, .error, .warning { + border: 1px solid #ccc; + padding: 10px; + color: #333; } + +.success { + border-color: green; } + +.error { + border-color: red; } + +.warning { + border-color: yellow; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`webpackImporter option true (node-sass) (sass): errors 1`] = `Array []`; + +exports[`webpackImporter option true (node-sass) (sass): warnings 1`] = `Array []`; + +exports[`webpackImporter option true (node-sass) (scss): css 1`] = ` +"@charset \\"UTF-8\\"; +@import url(./file.css); +body { + font: 100% Helvetica, sans-serif; + color: #333; } + +nav ul { + margin: 0; + padding: 0; + list-style: none; } + +nav li { + display: inline-block; } + +nav a { + display: block; + padding: 6px 12px; + text-decoration: none; } + +.box { + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -ms-border-radius: 10px; + border-radius: 10px; } + +.foo:before { + content: \\"\\"; } + +.bar:before { + content: \\"∑\\"; } +" +`; + +exports[`webpackImporter option true (node-sass) (scss): errors 1`] = `Array []`; + +exports[`webpackImporter option true (node-sass) (scss): warnings 1`] = `Array []`; + exports[`webpackImporter option true (sass-embedded) (sass): css 1`] = ` "@charset \\"UTF-8\\"; @import \\"./file.css\\"; diff --git a/test/helpers/getImplementations.js b/test/helpers/getImplementations.js index 9e68ac55..08ae2292 100644 --- a/test/helpers/getImplementations.js +++ b/test/helpers/getImplementations.js @@ -1,9 +1,8 @@ -// import nodeSass from "node-sass"; +import nodeSass from "node-sass"; import dartSass from "sass"; // eslint-disable-next-line import/no-namespace import * as sassEmbedded from "sass-embedded"; export default function getImplementations() { - // TODO fix me - return [/* nodeSass, */ dartSass, sassEmbedded]; + return [nodeSass, dartSass, sassEmbedded]; }